20 lines
406 B
C++
20 lines
406 B
C++
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "blk_box.h"
|
|
#include "blk_box_drivers/char_lcd.hpp"
|
|
#include "blk_box_drivers/helpers.hpp"
|
|
#include <lvgl.h>
|
|
|
|
const static char TAG[] = "main";
|
|
|
|
extern "C" void app_main(void) {
|
|
BlkBoxInitConfig blk_box_cfg = {};
|
|
init_blk_box(blk_box_cfg);
|
|
|
|
LCDController::set_backlight(true);
|
|
|
|
lcd_do_splash();
|
|
|
|
// TODO: impl P001DM
|
|
}
|