void app_func_ext1(void *data) { /*This function can be called before Task running ,configure the GPIO,uart and etc. Only these api can be used: eat_uart_set_debug: set debug port eat_pin_set_mode: set GPIO mode eat_uart_set_at_port: set AT port */ eat_uart_set_debug(EAT_UART_2); eat_uart_set_at_port(EAT_UART_1);// UART1 is as AT PORT }
/*************************************************************************** * Local Functions ***************************************************************************/ static void app_func_ext1(void *data) { #ifdef EAT_DEBUG_STRING_INFO_MODE EatUartConfig_st cfg = { EAT_UART_BAUD_115200, EAT_UART_DATA_BITS_8, EAT_UART_STOP_BITS_1, EAT_UART_PARITY_NONE }; #endif eat_uart_set_debug(eat_uart_debug); //set debug string info to debug port #ifdef EAT_DEBUG_STRING_INFO_MODE eat_uart_set_debug_config(EAT_UART_DEBUG_MODE_UART, &cfg); #endif eat_uart_set_at_port(eat_uart_at); }
void app_func_ext1(void *data) { /*This function can be called before Task running ,configure the GPIO,uart and etc. Only these api can be used: eat_uart_set_debug: set debug port eat_pin_set_mode: set GPIO mode eat_uart_set_at_port: set AT port */ EatUartConfig_st cfg = { EAT_UART_BAUD_115200, EAT_UART_DATA_BITS_8, EAT_UART_STOP_BITS_1, EAT_UART_PARITY_NONE }; eat_uart_set_at_port(EAT_UART_USB);// UART1 is as AT PORT eat_uart_set_debug(EAT_UART_1); eat_uart_set_debug_config(EAT_UART_DEBUG_MODE_UART, &cfg); }