mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2024-11-27 08:59:52 +08:00
20 lines
341 B
C
20 lines
341 B
C
#ifndef DCS_H
|
|
#define DCS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
enum {
|
|
CODE_TYPE_OFF = 0x00U,
|
|
CODE_TYPE_CONTINUOUS_TONE = 0x01U,
|
|
CODE_TYPE_DIGITAL = 0x02U,
|
|
CODE_TYPE_REVERSE_DIGITAL = 0x03U,
|
|
};
|
|
|
|
extern const uint16_t CTCSS_Options[50];
|
|
extern const uint16_t DCS_Options[104];
|
|
|
|
uint32_t DCS_GetGolayCodeWord(uint8_t CodeType, uint8_t Option);
|
|
|
|
#endif
|
|
|