I'm still working my way through the nuances of using the VS Code IDE. I tried adding an include to uart.h to a header file, and it gives an error that the file isn't found.
The build works without error using idf.py.
All the other ESP-IDF header files are found:
Code: Select all
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "esp_crt_bundle.h"
#include "lwip/ip_addr.h"
#include "esp_wifi_types.h"
#include "esp_http_server.h"
#include "uart.h"
Thanks...