Merge pull request #10 from android606/log-tx-failure

Add CriticalErrorCode_TransmitFailed to protobufs
pull/11/head
Kevin Hester 2021-01-27 18:06:28 +08:00 zatwierdzone przez GitHub
commit b4c8494e07
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 9 dodań i 0 usunięć

3
.vscode/settings.json vendored 100644
Wyświetl plik

@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}

Wyświetl plik

@ -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 |
| 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. |
| TransmitFailed | 8 | Radio transmit hardware failure. We sent data to the radio chip, but it didn't reply with an interrupt. |

Wyświetl plik

@ -958,6 +958,11 @@ enum CriticalErrorCode {
* radio comms settings are now undefined.
*/
InvalidRadioSetting = 7;
// Radio transmit hardware failure. We sent data to the radio chip, but it didn't
// reply with an interrupt.
TransmitFailed = 8;
}
/*