Files
tide-display/ePaper-ESP-IDF/main/main.cpp
Peter Siegmund 53d4bf2c5b split into more components
Signed-off-by: Peter Siegmund <peter@rdkr.com>
2024-06-08 08:39:57 +02:00

14 lines
265 B
C++

#include <stdio.h>
#include "esp_task.h"
#include "freertos/task.h"
#include "mapView.h"
#include "splash_screen.h"
extern "C" void app_main(void) {
splash_screen();
xTaskCreatePinnedToCore(mapView, "mapView", 4096, NULL, 5, NULL, 1);
vTaskDelete(NULL);
}