add InvalidRadioSetting critical fault

in support of https://github.com/meshtastic/Meshtastic-device/issues/577
This commit is contained in:
Kevin Hester 2020-12-27 13:07:46 +08:00
parent 9a7d8a03cb
commit 323b814f43
2 changed files with 11 additions and 6 deletions

View file

@ -506,6 +506,7 @@ post on the meshtastic.discourse.group and we'll try to help.
| Unspecified | 4 | Not normally used |
| UBloxInitFailed | 5 | We failed while configuring a UBlox GPS |
| NoAXP192 | 6 | This board was expected to have a power management chip and it is missing or broken |
| InvalidRadioSetting | 7 | The channel tried to set a radio setting which is not supported by this chipset, radio comms settings are now undefined. |

View file

@ -689,23 +689,27 @@ message NodeInfo {
enum CriticalErrorCode {
None = 0;
/// A software bug was detected while trying to send lora
// A software bug was detected while trying to send lora
TxWatchdog = 1;
/// A software bug was detected on entry to sleep
// A software bug was detected on entry to sleep
SleepEnterWait = 2;
/// No Lora radio hardware could be found
// No Lora radio hardware could be found
NoRadio = 3;
/// Not normally used
// Not normally used
Unspecified = 4;
/// We failed while configuring a UBlox GPS
// We failed while configuring a UBlox GPS
UBloxInitFailed = 5;
/// This board was expected to have a power management chip and it is missing or broken
// This board was expected to have a power management chip and it is missing or broken
NoAXP192 = 6;
// The channel tried to set a radio setting which is not supported by this chipset,
// radio comms settings are now undefined.
InvalidRadioSetting = 7;
}
/**