Skip to content

Commit

Permalink
Merge pull request meshtastic#10 from android606/log-tx-failure
Browse files Browse the repository at this point in the history
Add CriticalErrorCode_TransmitFailed to protobufs
  • Loading branch information
geeksville authored Jan 27, 2021
2 parents 4514741 + f954959 commit b4c8494
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}
1 change: 1 addition & 0 deletions docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |



Expand Down
5 changes: 5 additions & 0 deletions mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;

}

/*
Expand Down

0 comments on commit b4c8494

Please sign in to comment.