Reformatting code

Cette révision appartient à :
hank
2025-06-01 09:25:17 -07:00
Parent 5bf5812755
révision f7f96ad372
7 fichiers modifiés avec 919 ajouts et 1039 suppressions
+6 -10
Voir le fichier
@@ -1,13 +1,11 @@
#ifndef NODE_PREFS_H
#define NODE_PREFS_H
#pragma once
#include <cstdint> // For uint8_t, uint32_t
#define TELEM_MODE_DENY 0
#define TELEM_MODE_ALLOW_FLAGS 1 // use contact.flags
#define TELEM_MODE_ALLOW_ALL 2
#define TELEM_MODE_DENY 0
#define TELEM_MODE_ALLOW_FLAGS 1 // use contact.flags
#define TELEM_MODE_ALLOW_ALL 2
struct NodePrefs { // persisted to file
struct NodePrefs { // persisted to file
float airtime_factor;
char node_name[32];
float freq;
@@ -22,6 +20,4 @@ struct NodePrefs { // persisted to file
uint8_t telemetry_mode_env;
float rx_delay_base;
uint32_t ble_pin;
};
#endif // NODE_PREFS_H
};