I've already attempted this, yet clangd persists in reporting 'printf function not found'.Try adding #include <stdio.h>.
Search found 4 matches
- Thu Sep 25, 2025 8:58 am
- Forum: ESP-IDF
- Topic: Help needed: clangd in VSCode with ESP-IDF reports printf function not found error
- Replies: 2
- Views: 422
Re: Help needed: clangd in VSCode with ESP-IDF reports printf function not found error
- Wed Sep 24, 2025 3:43 am
- Forum: ESP-IDF
- Topic: Help needed: clangd in VSCode with ESP-IDF reports printf function not found error
- Replies: 2
- Views: 422
Help needed: clangd in VSCode with ESP-IDF reports printf function not found error
The following is the complete source code, which compiles successfully but triggers errors in clangd.
#include "driver/gpio.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#define OUT_GPIO GPIO_NUM_15
#define OUT_MASK (1ULL<<OUT_GPIO)
void app_main(void)
{
gpio_config_t io_conf={OUT ...
#include "driver/gpio.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#define OUT_GPIO GPIO_NUM_15
#define OUT_MASK (1ULL<<OUT_GPIO)
void app_main(void)
{
gpio_config_t io_conf={OUT ...
- Mon Sep 22, 2025 10:41 am
- Forum: ESP-IDF 中文讨论版
- Topic: espidf是否可以脱离freertos的情况下使用?
- Replies: 0
- Views: 3219
espidf是否可以脱离freertos的情况下使用?
我想尝试自己在esp32s3上面手搓一个简单的操作系统,但是目前我找不到能脱离freertos开发esp32s3的办法
- Wed Nov 22, 2023 1:25 am
- Forum: ESP-IDF 中文讨论版
- Topic: 关于 rust编译的问题
- Replies: 0
- Views: 22778
关于 rust编译的问题
rust编译的时候要从github上拉去esp-idf的东西,有无办法可以从别的地方下载然后导入到环境中,让cargo编译的时候从本地拿而不是去github上拿