Files
fdskey/FdsKey_bootloader/Core/Inc/images.h
Alexey 'Cluster' Avdyukhin e6e3ac01ff Bootloader!
2023-03-24 22:25:23 +04:00

15 lines
251 B
C

#ifndef INC_IMAGES_H_
#define INC_IMAGES_H_
#include <stdint.h>
typedef struct DotMatrixImage {
const uint8_t width;
const uint8_t height;
const uint8_t *image_data;
} DotMatrixImage;
#include "images/imageexterns.h"
#endif /* INC_IMAGES_H_ */