Skip to content

Commit

Permalink
Change I and II
Browse files Browse the repository at this point in the history
  • Loading branch information
armel committed May 4, 2024
1 parent 014f946 commit fb00ac8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
22 changes: 12 additions & 10 deletions bitmaps.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,24 +168,26 @@ const uint8_t BITMAP_VFO_NotDefault[8] =
0b00001000
};

const uint8_t BITMAP_ScanList1[6] =
const uint8_t BITMAP_ScanList1[7] =
{ // 'I' symbol
0b00000000,
0b00000000,
0b01000001,
0b01111111,
0b01111111,
0b01111011,
0b01000001,
0b00000000
0b01111111,
0b01111111,
0b01111111,
};

const uint8_t BITMAP_ScanList2[6] =
const uint8_t BITMAP_ScanList2[7] =
{ // 'II' symbol
0b00000000,
0b01000001,
0b01111111,
0b01000001,
0b01111111,
0b01000001
0b01001101,
0b01010101,
0b01011011,
0b01111111,
0b01111111,
};

const uint8_t BITMAP_compand[6] =
Expand Down
4 changes: 2 additions & 2 deletions bitmaps.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ extern const uint8_t BITMAP_USB_C[9];
extern const uint8_t BITMAP_Antenna[5];
extern const uint8_t BITMAP_VFO_Default[8];
extern const uint8_t BITMAP_VFO_NotDefault[8];
extern const uint8_t BITMAP_ScanList1[6];
extern const uint8_t BITMAP_ScanList2[6];
extern const uint8_t BITMAP_ScanList1[7];
extern const uint8_t BITMAP_ScanList2[7];
extern const uint8_t BITMAP_compand[6];

#ifndef ENABLE_CUSTOM_MENU_LAYOUT
Expand Down

0 comments on commit fb00ac8

Please sign in to comment.