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

Fixed 200ms TX tail bug.

This commit is contained in:
OneOfEleven
2023-09-10 17:57:12 +01:00
parent 37afeb0414
commit 50a55e34ab
11 changed files with 112 additions and 80 deletions

11
dcs.h
View File

@ -19,11 +19,12 @@
#include <stdint.h>
enum DCS_CodeType_t {
CODE_TYPE_OFF = 0x00U,
CODE_TYPE_CONTINUOUS_TONE = 0x01U,
CODE_TYPE_DIGITAL = 0x02U,
CODE_TYPE_REVERSE_DIGITAL = 0x03U,
enum DCS_CodeType_t
{
CODE_TYPE_OFF = 0,
CODE_TYPE_CONTINUOUS_TONE,
CODE_TYPE_DIGITAL,
CODE_TYPE_REVERSE_DIGITAL
};
typedef enum DCS_CodeType_t DCS_CodeType_t;