EU1KY AA
sdigits.h
Go to the documentation of this file.
1 #ifndef sdigitsH
2 #define sdigitsH
3 
4 #ifndef SMfgTypes
5 #define SMfgTypes
6 
7 /*======= binary input =======*/
8 #define b2b(b7u,b6u,b5u,b4u,b3u,b2u,b1u,b0u) ((uint8_t)((b7u)*128u + (b6u)*64u + (b5u)*32u + (b4u)*16u + (b3u)*8u + (b2u)*4u + (b1u)*2u + (b0u)))
9 
10 #include <stdint.h>
11 
12 #define TCDATA const uint8_t
13 #endif
14 
15 extern const uint8_t* const sdigits[256];
16 extern const uint8_t sdigits_height;
17 extern const uint8_t sdigits_spacing;
18 #endif
const uint8_t sdigits_height
Definition: sdigits.c:10
const uint8_t sdigits_spacing
Definition: sdigits.c:11
const uint8_t *const sdigits[256]
Definition: sdigits.c:247