MT99xx missing break

This commit is contained in:
Pascal Langer 2021-02-23 09:52:46 +01:00
parent 37e2b5f41c
commit 59c541d013
2 changed files with 2 additions and 2 deletions

View File

@ -209,10 +209,10 @@ static void __attribute__((unused)) MT99XX_send_packet()
packet[7] = DRAGON_seq[seq_num]; // seq: 20 80 20 60 20 80 20 60... 80 changes to 80+batt from telem packet[7] = DRAGON_seq[seq_num]; // seq: 20 80 20 60 20 80 20 60... 80 changes to 80+batt from telem
if(seq_num==3) if(seq_num==3)
packet[7] |= v_lipo1; packet[7] |= v_lipo1;
break;
#else #else
packet[7] = 0x20; packet[7] = 0x20;
#endif #endif
break;
} }
uint8_t result=crc8; uint8_t result=crc8;
for(uint8_t i=0; i<8; i++) for(uint8_t i=0; i<8; i++)

View File

@ -19,7 +19,7 @@
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 3 #define VERSION_MINOR 3
#define VERSION_REVISION 2 #define VERSION_REVISION 2
#define VERSION_PATCH_LEVEL 48 #define VERSION_PATCH_LEVEL 49
//****************** //******************
// Protocols // Protocols