Explains how to draw a bitmap to the LCD with the CARME-M4 kit.
#include <stm32f4xx.h>
#include <carme.h>
#include <ff.h>
#include <rtc.h>
FATFS main_fs;
int main(void) {
if (f_mount(&main_fs, "0:", 1) != FR_OK) {
return 1;
}
for (;;) {
}
return 0;
}