Skip to content

Commit

Permalink
New boards with bin signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
pascallanger committed Oct 4, 2019
1 parent 747fa19 commit d8acc6a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Multiprotocol/AFHDS2A_Rx_a7105.ino
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ uint16_t AFHDS2A_Rx_callback()
// packets per second
if (millis() - pps_timer >= 1000) {
pps_timer = millis();
debugln("%ld pps", pps_counter);
debugln("%d pps", pps_counter);
RX_LQI = pps_counter / 2;
pps_counter = 0;
}
Expand Down
2 changes: 1 addition & 1 deletion Multiprotocol/FrSkyX_Rx_cc2500.ino
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ uint16_t FrSkyX_Rx_callback()
// packets per second
if (millis() - pps_timer >= 1000) {
pps_timer = millis();
debugln("%ld pps", pps_counter);
debugln("%d pps", pps_counter);
RX_LQI = pps_counter;
pps_counter = 0;
}
Expand Down
2 changes: 1 addition & 1 deletion Multiprotocol/Multiprotocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_REVISION 1
#define VERSION_PATCH_LEVEL 84
#define VERSION_PATCH_LEVEL 85

//******************
// Protocols
Expand Down
6 changes: 3 additions & 3 deletions Multiprotocol/Validate.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#endif

// Check for minimum board file definition version for DIY multi-module boards
#define MIN_AVR_BOARD 109
#define MIN_ORX_BOARD 109
#define MIN_STM32_BOARD 116
#define MIN_AVR_BOARD 110
#define MIN_ORX_BOARD 110
#define MIN_STM32_BOARD 117
//AVR
#if (defined(ARDUINO_MULTI_NO_BOOT) && ARDUINO_MULTI_NO_BOOT < MIN_AVR_BOARD) || (defined(ARDUINO_MULTI_FLASH_FROM_TX) && ARDUINO_MULTI_FLASH_FROM_TX < MIN_AVR_BOARD)
#error You need to update your Multi 4-in-1 board definition. Open Boards Manager and update to the latest version of the Multi 4-in-1 AVR Boards.
Expand Down

0 comments on commit d8acc6a

Please sign in to comment.