0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 22:58:04 +03:00
This commit is contained in:
OneOfEleven
2023-11-08 11:27:26 +00:00
parent b64e684cf4
commit c958962b44
12 changed files with 196 additions and 123 deletions

View File

@ -134,13 +134,13 @@ void FUNCTION_Select(function_type_t Function)
case FUNCTION_NEW_RECEIVE:
#if defined(ENABLE_UART) && defined(ENABLE_UART_DEBUG)
UART_SendText("func new receive\r\n");
UART_printf("func new receive %u\r\n", g_rx_vfo->freq_config_rx.frequency);
#endif
break;
case FUNCTION_RECEIVE:
#if defined(ENABLE_UART) && defined(ENABLE_UART_DEBUG)
UART_SendText("func receive\r\n");
UART_printf("func receive %u\r\n", g_rx_vfo->freq_config_rx.frequency);
#endif
break;
@ -172,7 +172,7 @@ void FUNCTION_Select(function_type_t Function)
case FUNCTION_TRANSMIT:
#if defined(ENABLE_UART) && defined(ENABLE_UART_DEBUG)
UART_SendText("func transmit\r\n");
UART_printf("func transmit %u\r\n", g_tx_vfo->freq_config_tx.frequency);
#endif
g_tx_timer_tick_500ms = 0;