2424//* LMB= lower middle bars(lower middle section of the '8')
2525
2626
27- uint8_t BF_fontShapes [] PROGMEM = {
27+ const uint8_t BF_fontShapes [] PROGMEM = {
2828//* LT[8] =
2929 B00111 ,
3030 B01111 ,
@@ -103,7 +103,7 @@ uint8_t BF_fontShapes[] PROGMEM = {
103103 * array for the character width that the data starts. 3 bits for
104104 * width and 5 bits for the index. index 0 of this table is for
105105 * ASCII 0x20 (space) */
106- uint8_t BF_characters [] PROGMEM = {
106+ const uint8_t BF_characters [] PROGMEM = {
107107 (BF_WIDTH1_TABLE << 5 ) | 0 , // 0x20 (space)
108108 (BF_WIDTH1_TABLE << 5 ) | 1 , // 0x21 !
109109 (BF_WIDTH3_SYMBOLS_TABLE << 5 ) | 0 , // 0x22 "
@@ -165,7 +165,7 @@ uint8_t BF_characters[] PROGMEM = {
165165 (BF_WIDTH3_TABLE << 5 ) | 29 // 0x5A Z
166166};
167167
168- uint8_t BF_width1 [] PROGMEM = {
168+ const uint8_t BF_width1 [] PROGMEM = {
169169 0x20 , 0x20 , // 0x20 space
170170 0x00 , 0x04 , // 0x21 !
171171 0x05 , 0x20 , // 0x27 '
@@ -177,12 +177,12 @@ uint8_t BF_width1[] PROGMEM = {
177177 0x01 , 0x05 // 0x3B ;
178178};
179179
180- uint8_t BF_width2 [] PROGMEM = {
180+ const uint8_t BF_width2 [] PROGMEM = {
181181 0x04 , 0x04 , 0x20 , 0x20 , // 0x2D -
182182 0x04 , 0x04 , 0x07 , 0x07 // 0x3D =
183183};
184184
185- uint8_t BF_width3 [] PROGMEM = {
185+ const uint8_t BF_width3 [] PROGMEM = {
186186 0x00 , 0x01 , 0x02 , 0x03 , 0x04 , 0x05 , // 0x30 0, 0x4F O
187187 0x01 , 0x02 , 0x20 , 0x04 , 0xFF , 0x04 , // 0x31 1
188188 0x06 , 0x06 , 0x02 , 0x03 , 0x04 , 0x04 , // 0x32 2
@@ -215,19 +215,19 @@ uint8_t BF_width3[] PROGMEM = {
215215 0x01 , 0x06 , 0x05 , 0x00 , 0x07 , 0x04 // 0x5A Z
216216};
217217
218- uint8_t BF_width3Symbols [] PROGMEM = {
218+ const uint8_t BF_width3Symbols [] PROGMEM = {
219219 0x05 , 0x20 , 0x05 , 0x20 , 0x20 , 0x20 , // 0x22 "
220220 0x04 , 0xFF , 0x04 , 0x01 , 0xFF , 0x01 , // 0x2B +
221221 0x01 , 0x06 , 0x02 , 0x20 , 0x07 , 0x20 // 0x3F ?
222222};
223223
224- uint8_t BF_width4 [] PROGMEM = {
224+ const uint8_t BF_width4 [] PROGMEM = {
225225 0x00 , 0x03 , 0x20 , 0x02 , 0x03 , 0x20 , 0x02 , 0x05 , // 0x4E N
226226 0x00 , 0x01 , 0x02 , 0x20 , 0x03 , 0x04 , 0x03 , 0x04 , // 0x51 Q
227227 0x03 , 0x20 , 0x20 , 0x05 , 0x20 , 0x03 , 0x05 , 0x20 // 0x56 V
228228};
229229
230- uint8_t BF_width5 [] PROGMEM = {
230+ const uint8_t BF_width5 [] PROGMEM = {
231231 0x00 , 0x01 , 0x03 , 0x01 , 0x02 , 0x03 , 0x20 , 0x20 , 0x20 , 0x05 , // 0x4D M
232232 0x00 , 0x20 , 0x20 , 0x20 , 0x02 , 0x03 , 0x04 , 0x00 , 0x04 , 0x05 // 0x57 W
233233};
0 commit comments