Files
fdskey/FdsKey_bootloader/Core/Inc/images/imagedata.h
2023-07-22 14:52:39 +04:00

16 lines
358 B
C

#include "cogs.h"
#include "medium_cursor.h"
#include "../images.h"
const DotMatrixImage IMAGE_COGS = {
.width = IMAGE_COGS_WIDTH,
.height = IMAGE_COGS_HEIGHT,
.image_data = image_cogs
};
const DotMatrixImage IMAGE_MEDIUM_CURSOR = {
.width = IMAGE_MEDIUM_CURSOR_WIDTH,
.height = IMAGE_MEDIUM_CURSOR_HEIGHT,
.image_data = image_medium_cursor
};