custom-uv-k5-firmware/fm.h
2023-08-10 17:51:57 +01:00

18 lines
314 B
C
Executable File

#ifndef FM_H
#define FM_H
#include <stdbool.h>
#include <stdint.h>
#define FM_CHANNEL_UP 0x01
#define FM_CHANNEL_DOWN 0xFF
extern uint16_t gFM_Channels[20];
bool FM_CheckValidChannel(uint8_t Channel);
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction);
int FM_ConfigureChannelState(void);
#endif