diff --git a/src/common.h b/src/common.h index 0860744..1276cd8 100644 --- a/src/common.h +++ b/src/common.h @@ -71,6 +71,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 5f23614..957c700 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) { @@ -535,8 +537,9 @@ void Init_HW() { LED_TC3587_Init(); #endif - if (check_uart_loopback()) - reset_config(); +#ifdef RESET_CONFIG + reset_config(); +#endif GetVtxParameter(); Get_EEP_LifeTime(); @@ -1704,7 +1707,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; @@ -1728,4 +1731,5 @@ uint8_t check_uart_loopback() { } else { return 0; } -} \ No newline at end of file +} +#endif \ No newline at end of file