Answers for "esp idf c++"

C++
1

esp idf c++

#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"

extern "C" {
    void app_main(void);
}

void app_main()
{
    printf("Hello PlatformIO!\n");
}
Posted by: Guest on July-01-2021

Browse Popular Code Answers by Language