Skip to content

Commit

Permalink
FIX icons data type
Browse files Browse the repository at this point in the history
  • Loading branch information
petrkr committed May 26, 2019
1 parent 3e1d6ac commit c77e60e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fw/src/imgs/icons.h
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

#define ack_width 9
#define ack_height 9
static char ack_bits[] PROGMEM = {
static uint8_t ack_bits[] PROGMEM = {
0xFE, 0x00, 0xFF, 0x01, 0x7F, 0x01, 0xBF, 0x01, 0xDD, 0x01, 0xEB, 0x01,
0xF7, 0x01, 0xFF, 0x01, 0xFE, 0x00, };

#define downlink_width 9
#define downlink_height 9
static char downlink_bits[] PROGMEM = {
static uint8_t downlink_bits[] PROGMEM = {
0xFE, 0x00, 0xBB, 0x01, 0x1B, 0x01, 0xBB, 0x01, 0xBB, 0x01, 0xBB, 0x01,
0xB1, 0x01, 0xBB, 0x01, 0xFE, 0x00, };

#define uplink_width 9
#define uplink_height 9
static char uplink_bits[] PROGMEM = {
static uint8_t uplink_bits[] PROGMEM = {
0xFE, 0x00, 0xEF, 0x01, 0xC7, 0x01, 0xEF, 0x01, 0xEF, 0x01, 0xEF, 0x01,
0xEF, 0x01, 0xEF, 0x01, 0xFE, 0x00, };

Expand Down

0 comments on commit c77e60e

Please sign in to comment.