diff --git a/src/common.h b/src/common.h index dde8e6d..ba1f46a 100644 --- a/src/common.h +++ b/src/common.h @@ -76,6 +76,7 @@ // #define REV_UART // #define VIDEO_PAT // #define FIX_EEP +// #define RESET_CONFIG #ifndef _RF_CALIB // #define _DEBUG_MODE diff --git a/src/hardware.c b/src/hardware.c index 81165f5..c8efcc2 100644 --- a/src/hardware.c +++ b/src/hardware.c @@ -145,7 +145,9 @@ uint8_t timer_cnt = 0; uint8_t led_timer_cnt = 0; void LED_Init(); +#if (0) uint8_t check_uart_loopback(); +#endif void reset_config(); void Set_720P50(uint8_t page) { @@ -559,8 +561,9 @@ void Init_HW() { LED_TC3587_Init(); #endif - if (check_uart_loopback()) - reset_config(); +#ifdef RESET_CONFIG + reset_config(); +#endif GetVtxParameter(); Get_EEP_LifeTime(); @@ -1740,7 +1743,7 @@ void reset_config() { I2C_Write8_Wait(10, ADDR_EEPROM, EEP_ADDR_CAM_TYPE, 0); } - +#if (0) uint8_t check_uart_loopback() { uint8_t rdat[4]; uint8_t i = 0; @@ -1764,4 +1767,5 @@ uint8_t check_uart_loopback() { } else { return 0; } -} \ No newline at end of file +} +#endif \ No newline at end of file