Changes for C++ support, Add gitigore
- extern C around libraries and main function - Include common libraries - Create gitignore
This commit is contained in:
parent
ffb415fb11
commit
37e9048daa
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# ESP-IDF default build directory
|
||||||
|
build
|
||||||
|
sdkconfig
|
||||||
|
|
||||||
|
# VIM files
|
||||||
|
*.swp
|
||||||
|
*.swo
|
@ -1,2 +1,2 @@
|
|||||||
idf_component_register(SRCS "armchair.c"
|
idf_component_register(SRCS "main.cpp"
|
||||||
INCLUDE_DIRS ".")
|
INCLUDE_DIRS ".")
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
void app_main(void)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
18
main/main.cpp
Normal file
18
main/main.cpp
Normal 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)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user