(solved) using VS Code, build can't find uart.h
Posted: Mon Sep 27, 2021 5:02 pm
Hi all -
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:
I only get an error on uart.h. Is there something special about the drivers directories that requires me to do something extra for this file to be found?
Thanks...
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...