1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef NRF_FONT_H__
- #define NRF_FONT_H__
- #include "stdint.h"
- typedef struct
- {
- uint8_t widthBits;
- uint16_t offset;
- }FONT_CHAR_INFO;
- typedef struct
- {
- uint8_t height;
- uint8_t startChar;
- uint8_t endChar;
- uint8_t spacePixels;
- const FONT_CHAR_INFO * charInfo;
- const uint8_t * data;
- }FONT_INFO;
- #endif
|