Add CriticalError_TransmitFailed to protobufs

This commit is contained in:
Andrew Mark 2021-01-20 10:34:36 -08:00
parent c28a4e8494
commit f95495987f
2 changed files with 8 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View file

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

View file

@ -777,6 +777,11 @@ enum CriticalErrorCode {
// The channel tried to set a radio setting which is not supported by this chipset,
// 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;
}
/**