Files
tide-display/ePaper-ESP-IDF/main/main.cpp
Peter Siegmund 7774417a35 latest code
Signed-off-by: Peter Siegmund <peter@rdkr.com>
2024-09-06 16:29:56 +02:00

14 lines
271 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);
}