mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-07-02 02:37:52 +00:00
New boards with bin signatures
This commit is contained in:
parent
747fa19259
commit
d8acc6a5e8
@ -182,7 +182,7 @@ uint16_t AFHDS2A_Rx_callback()
|
|||||||
// packets per second
|
// packets per second
|
||||||
if (millis() - pps_timer >= 1000) {
|
if (millis() - pps_timer >= 1000) {
|
||||||
pps_timer = millis();
|
pps_timer = millis();
|
||||||
debugln("%ld pps", pps_counter);
|
debugln("%d pps", pps_counter);
|
||||||
RX_LQI = pps_counter / 2;
|
RX_LQI = pps_counter / 2;
|
||||||
pps_counter = 0;
|
pps_counter = 0;
|
||||||
}
|
}
|
||||||
|
@ -351,7 +351,7 @@ uint16_t FrSkyX_Rx_callback()
|
|||||||
// packets per second
|
// packets per second
|
||||||
if (millis() - pps_timer >= 1000) {
|
if (millis() - pps_timer >= 1000) {
|
||||||
pps_timer = millis();
|
pps_timer = millis();
|
||||||
debugln("%ld pps", pps_counter);
|
debugln("%d pps", pps_counter);
|
||||||
RX_LQI = pps_counter;
|
RX_LQI = pps_counter;
|
||||||
pps_counter = 0;
|
pps_counter = 0;
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#define VERSION_MAJOR 1
|
#define VERSION_MAJOR 1
|
||||||
#define VERSION_MINOR 2
|
#define VERSION_MINOR 2
|
||||||
#define VERSION_REVISION 1
|
#define VERSION_REVISION 1
|
||||||
#define VERSION_PATCH_LEVEL 84
|
#define VERSION_PATCH_LEVEL 85
|
||||||
|
|
||||||
//******************
|
//******************
|
||||||
// Protocols
|
// Protocols
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Check for minimum board file definition version for DIY multi-module boards
|
// Check for minimum board file definition version for DIY multi-module boards
|
||||||
#define MIN_AVR_BOARD 109
|
#define MIN_AVR_BOARD 110
|
||||||
#define MIN_ORX_BOARD 109
|
#define MIN_ORX_BOARD 110
|
||||||
#define MIN_STM32_BOARD 116
|
#define MIN_STM32_BOARD 117
|
||||||
//AVR
|
//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)
|
#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.
|
#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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user