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

Compander setting now saved into each channel

This commit is contained in:
OneOfEleven
2023-09-19 17:30:12 +01:00
parent 30d6f3b371
commit 737e5ac8e2
12 changed files with 89 additions and 43 deletions

View File

@ -539,7 +539,7 @@ const uint8_t BITMAP_ScanList[6] =
};
*/
const uint8_t BITMAP_ScanList1[6] =
{ // 1 symbol
{ // 'I' symbol
0b00000000,
0b00000000,
0b01000010,
@ -549,7 +549,7 @@ const uint8_t BITMAP_ScanList1[6] =
};
const uint8_t BITMAP_ScanList2[6] =
{ // 2 symbol
{ // 'II' symbol
0b00000000,
0b01000010,
0b01111110,
@ -557,3 +557,15 @@ const uint8_t BITMAP_ScanList2[6] =
0b01111110,
0b01000010
};
#ifdef ENABLE_COMPANDER
const uint8_t BITMAP_compand[6] =
{
0b00000000,
0b00111100,
0b01000010,
0b01000010,
0b01000010,
0b00100100
};
#endif