3
0
Fork 0
xnode/lib/xnode-shared/XnodeSatelliteConfig.h
2022-11-13 01:46:38 +01:00

15 lines
382 B
C

#ifndef XnodeSatelliteConfig_h
#define XnodeSatelliteConfig_h
// Config data
typedef struct {
uint16_t eeprom_struct_size; // Config size changes it data defaults to zeros
byte rf_key[RF_KEY_SIZE]; // rf key to encrypt radio
byte node_id; // this node id to transmit to base
unsigned long sys_boot; // boot counter
} xnode_satellite_config_t;
#endif