1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Changed MSP command name to 'MSP_SET_ARMING_DISABLED' to make it consistent.

This commit is contained in:
mikeller 2017-11-18 18:34:25 +13:00
parent 75632daf6b
commit 60a8f3a5b9
2 changed files with 2 additions and 2 deletions

View file

@ -1712,7 +1712,7 @@ static mspResult_e mspProcessInCommand(uint8_t cmdMSP, sbuf_t *src)
break; break;
#endif #endif
case MSP_ARMING_DISABLE: case MSP_SET_ARMING_DISABLED:
{ {
const uint8_t command = sbufReadU8(src); const uint8_t command = sbufReadU8(src);
if (command) { if (command) {

View file

@ -214,7 +214,7 @@
#define MSP_CAMERA_CONTROL 98 #define MSP_CAMERA_CONTROL 98
#define MSP_ARMING_DISABLE 99 #define MSP_SET_ARMING_DISABLED 99
// //
// OSD specific // OSD specific