forked from OneOfEleven/uv-k5-firmware-custom
-
Notifications
You must be signed in to change notification settings - Fork 26
/
bitmaps.h
63 lines (43 loc) · 1.34 KB
/
bitmaps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef BITMAP_H
#define BITMAP_H
#include <stdint.h>
extern const uint8_t BITMAP_POWERSAVE[8];
extern const uint8_t BITMAP_TX[8];
extern const uint8_t BITMAP_RX[8];
extern const uint8_t BITMAP_BATTERY_LEVEL[17];
extern const uint8_t BITMAP_USB_C[9];
extern const uint8_t BITMAP_KEYLOCK[6];
extern const uint8_t BITMAP_F_KEY[6];
#ifdef ENABLE_VOX
extern const uint8_t BITMAP_VOX[18];
#endif
#if 0
extern const uint8_t BITMAP_WX[12];
#else
extern const uint8_t BITMAP_XB[12];
#endif
extern const uint8_t BITMAP_TDR1[12];
extern const uint8_t BITMAP_TDR2[12];
#ifdef ENABLE_VOICE
extern const uint8_t BITMAP_VOICE_PROMPT[9];
#endif
#ifdef ENABLE_FMRADIO
extern const uint8_t BITMAP_FM[12];
#endif
#ifdef ENABLE_NOAA
extern const uint8_t BITMAP_NOAA[12];
#endif
extern const uint8_t BITMAP_ANTENNA[5];
extern const uint8_t BITMAP_ANTENNA_LEVEL1[3];
extern const uint8_t BITMAP_ANTENNA_LEVEL2[3];
extern const uint8_t BITMAP_ANTENNA_LEVEL3[3];
extern const uint8_t BITMAP_ANTENNA_LEVEL4[3];
extern const uint8_t BITMAP_ANTENNA_LEVEL5[3];
extern const uint8_t BITMAP_ANTENNA_LEVEL6[3];
extern const uint8_t BITMAP_MARKER[8];
extern const uint8_t BITMAP_VFO_DEFAULT[8];
extern const uint8_t BITMAP_VFO_NOT_DEFAULT[8];
extern const uint8_t BITMAP_SCANLIST1[6];
extern const uint8_t BITMAP_SCANLIST2[6];
extern const uint8_t BITMAP_COMPAND[6];
#endif