Changes for C++ support, Add gitigore

- extern C around libraries and main function
- Include common libraries
- Create gitignore
This commit is contained in:
jonny_ji7 2022-06-03 10:03:25 +02:00
parent ffb415fb11
commit 37e9048daa
4 changed files with 26 additions and 7 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# ESP-IDF default build directory
build
sdkconfig
# VIM files
*.swp
*.swo

View File

@ -1,2 +1,2 @@
idf_component_register(SRCS "armchair.c"
idf_component_register(SRCS "main.cpp"
INCLUDE_DIRS ".")

View File

@ -1,6 +0,0 @@
#include <stdio.h>
void app_main(void)
{
}

18
main/main.cpp Normal file
View File

@ -0,0 +1,18 @@
extern "C"
{
#include <stdio.h>
#include <esp_system.h>
#include <esp_event.h>
#include <nvs_flash.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "sdkconfig.h"
}
extern "C" void app_main(void)
{
}