Skip to content

Commit

Permalink
Fix unit test build under aarch64 Linux (betaflight#13336)
Browse files Browse the repository at this point in the history
Fix rcData[] type
  • Loading branch information
SteveCEvans authored Jan 29, 2024
1 parent 2cd24cf commit a4b21d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/unit/cms_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ CMS_Menu cmsx_menuMain = {
};
uint8_t armingFlags;
int16_t debug[4];
int16_t rcData[18];
float rcData[18];
void delay(uint32_t) {}
uint32_t micros(void) { return 0; }
uint32_t millis(void) { return 0; }
Expand Down

0 comments on commit a4b21d6

Please sign in to comment.