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

Fixed CTCSS int overflow bug

This commit is contained in:
OneOfEleven
2023-10-02 01:19:14 +01:00
parent aea80cb046
commit bbf8a7061e
5 changed files with 3 additions and 3 deletions

2
dcs.h
View File

@ -39,7 +39,7 @@ extern const uint16_t DCS_Options[104];
uint32_t DCS_GetGolayCodeWord(DCS_CodeType_t CodeType, uint8_t Option);
uint8_t DCS_GetCdcssCode(uint32_t Code);
uint8_t DCS_GetCtcssCode(uint16_t Code);
uint8_t DCS_GetCtcssCode(int Code);
#endif