24 lines
433 B
C
Executable File
24 lines
433 B
C
Executable File
#include "stm32f4xx_hal.h"
|
|
|
|
#ifndef Fonts
|
|
#define Fonts
|
|
|
|
//
|
|
// Structure om font te definieren
|
|
//
|
|
typedef struct {
|
|
const uint8_t FontWidth; /*!< Font width in pixels */
|
|
uint8_t FontHeight; /*!< Font height in pixels */
|
|
const uint16_t *data; /*!< Pointer to data font data array */
|
|
} FontDef;
|
|
|
|
|
|
//
|
|
// De 3 fonts
|
|
//
|
|
extern FontDef Font_7x10;
|
|
extern FontDef Font_11x18;
|
|
extern FontDef Font_16x26;
|
|
|
|
#endif
|