0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 06:39:49 +03:00

Added brickies editings, fixed a couple of warnings.

This commit is contained in:
OneOfEleven
2023-10-09 23:13:34 +01:00
parent c76891be6d
commit 44f90a20b4
9 changed files with 27 additions and 11 deletions

View File

@ -21,7 +21,7 @@
enum function_type_e
{
FUNCTION_FOREGROUND = 0, // ???
FUNCTION_FOREGROUND = 0, // idle (not in power save)
FUNCTION_TRANSMIT, // transmitting
FUNCTION_MONITOR, // receiving with squelch forced open
FUNCTION_INCOMING, // receiving a signal (squelch is open)
@ -31,7 +31,7 @@ enum function_type_e
};
typedef enum function_type_e function_type_t;
extern function_type_t g_current_function;
extern function_type_t g_current_function;
void FUNCTION_Init(void);
void FUNCTION_Select(function_type_t Function);