Fix delay constants for interrupt counter test mode

This commit is contained in:
Andy CA6JAU 2018-11-04 16:10:27 -03:00
parent 1aab7ec355
commit 6add9c540d

12
IO.h
View file

@ -48,9 +48,17 @@
#define SCAN_PAUSE 20000
#if defined(DUPLEX)
#define CAL_DLY_LOOP 96100U
#if defined(STM32_USB_HOST)
#define CAL_DLY_LOOP 98950U
#else
#define CAL_DLY_LOOP 106000U
#define CAL_DLY_LOOP 105100U
#endif
#else
#if defined(STM32_USB_HOST)
#define CAL_DLY_LOOP 110850U
#else
#define CAL_DLY_LOOP 114350U
#endif
#endif
extern uint32_t m_frequency_rx;