kopia lustrzana https://github.com/meshtastic/protobufs
Merge pull request #10 from android606/log-tx-failure
Add CriticalErrorCode_TransmitFailed to protobufspull/11/head
commit
b4c8494e07
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"cmake.configureOnOpen": false
|
||||||
|
}
|
|
@ -569,6 +569,7 @@ post on the meshtastic.discourse.group and we'll try to help.
|
||||||
| UBloxInitFailed | 5 | We failed while configuring a UBlox GPS |
|
| 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 |
|
| 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. |
|
| InvalidRadioSetting | 7 | The channel tried to set a radio setting which is not supported by this chipset, radio comms settings are now undefined. |
|
||||||
|
| TransmitFailed | 8 | Radio transmit hardware failure. We sent data to the radio chip, but it didn't reply with an interrupt. |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -958,6 +958,11 @@ enum CriticalErrorCode {
|
||||||
* radio comms settings are now undefined.
|
* radio comms settings are now undefined.
|
||||||
*/
|
*/
|
||||||
InvalidRadioSetting = 7;
|
InvalidRadioSetting = 7;
|
||||||
|
|
||||||
|
// Radio transmit hardware failure. We sent data to the radio chip, but it didn't
|
||||||
|
// reply with an interrupt.
|
||||||
|
TransmitFailed = 8;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Ładowanie…
Reference in New Issue