mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
* companion: new CMD_GET_CUSTOM_VARS, CMD_SET_CUSTOM_VAR * T1000e: now supports "gps" custom setting (value "0" or "1")
21 lines
No EOL
395 B
C++
21 lines
No EOL
395 B
C++
#ifndef NODE_PREFS_H
|
|
#define NODE_PREFS_H
|
|
|
|
#include <cstdint> // For uint8_t, uint32_t
|
|
|
|
struct NodePrefs { // persisted to file
|
|
float airtime_factor;
|
|
char node_name[32];
|
|
float freq;
|
|
uint8_t sf;
|
|
uint8_t cr;
|
|
uint8_t reserved1;
|
|
uint8_t manual_add_contacts;
|
|
float bw;
|
|
uint8_t tx_power_dbm;
|
|
uint8_t unused[3];
|
|
float rx_delay_base;
|
|
uint32_t ble_pin;
|
|
};
|
|
|
|
#endif // NODE_PREFS_H
|