You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4.**Auto-Power Configuration**: Parse manufacturer string, match against `device-models.json`, set power level
93
+
4.**Device Identification**: Parse manufacturer string, match against `device-models.json` (does NOT modify radio settings)
94
94
5.**Time Sync**: `sendTime()` syncs device clock
95
95
6.**API Slot Acquisition**: POST to `/capacitycheck.php` to reserve API slot
96
96
7.**Channel Setup**: Create or use existing `#wardriving` channel
97
97
8.**GPS Init**: Acquire GPS lock
98
98
9.**Start Unified RX Handler**: Begin processing ALL incoming packets
99
99
10.**Connected State**: Ready for wardriving
100
100
101
-
**Critical Power Safety**: PA amplifier devices (30dBm, 33dBm) require specific input power levels. Incorrect values can damage hardware. Auto-power selection from device-models.json is MANDATORY for these devices.
101
+
**Important**: The app does NOT modify the radio's TX power settings. It only identifies the device model to determine what power level to report in API calls. Users configure their radio's actual TX power through the device firmware.
102
102
103
103
### Unified RX Handler Architecture
104
104
@@ -282,7 +282,7 @@ Contains 30+ MeshCore device variants with manufacturer strings, TX power levels
PA amplifier devices require specific power values:
160
-
- 33dBm models: txPower=9, power=2.0
161
-
- 30dBm models: txPower=20, power=1.0
162
-
- Standard: txPower=22, power=0.3
158
+
### Power Level Reporting
159
+
The app identifies device models to determine what power level to report in API calls:
160
+
- 33dBm models: 2.0W
161
+
- 30dBm models: 1.0W
162
+
- Standard (22dBm): 0.3W
163
163
164
-
**WARNING**: Incorrect power settings can damage PA amplifier hardware.
164
+
**Important**: The app does NOT modify the radio's TX power settings. It only reads device information and reports the appropriate power level to the API. Users configure their radio's actual TX power through the device firmware.
0 commit comments