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

added mdc1200 side tone/beeps

This commit is contained in:
OneOfEleven
2023-11-05 23:16:19 +00:00
parent 465d7333e3
commit 352d529b86
18 changed files with 460 additions and 440 deletions

View File

@ -386,9 +386,9 @@ static void cmd_0527(void)
memset(&reply, 0, sizeof(reply));
reply.Header.ID = 0x0528;
reply.Header.Size = sizeof(reply.Data);
reply.Data.RSSI = BK4819_ReadRegister(0x67) & 0x01FF;
reply.Data.ExNoiseIndicator = BK4819_ReadRegister(0x65) & 0x007F;
reply.Data.GlitchIndicator = BK4819_ReadRegister(0x63);
reply.Data.RSSI = BK4819_read_reg(0x67) & 0x01FF;
reply.Data.ExNoiseIndicator = BK4819_read_reg(0x65) & 0x007F;
reply.Data.GlitchIndicator = BK4819_read_reg(0x63);
SendReply(&reply, sizeof(reply));
}