Search found 3 matches
- Fri Nov 15, 2024 9:37 pm
- Forum: ESP-IDF
- Topic: Configuring of I2C fails
- Replies: 1
- Views: 349
Configuring of I2C fails
Hi, I use ESP-IDF and the Espressif-IDE (Eclipse plugin). I succesfully compiled and ran the i2c_tools example. Now I am trying to develop my own application. I have a component MPU9250 with a source file MPU9250_fckx.cpp. Parts of my code: #include "driver/i2c_master.h" #include "esp_err.h" #includ...
- Sun Aug 29, 2021 3:26 pm
- Forum: ESP-IDF
- Topic: Compiler does not recognize special character
- Replies: 2
- Views: 1927
Re: Compiler does not recognize special character
Thanks for your reply.
Actually the issue is SOLVED. The < was in my code instead of the required < .
The error was in the blogpost from which I copied the code.
Thanks
Fred
Actually the issue is SOLVED. The < was in my code instead of the required < .
The error was in the blogpost from which I copied the code.
Thanks
Fred
- Sat Aug 28, 2021 1:44 pm
- Forum: ESP-IDF
- Topic: Compiler does not recognize special character
- Replies: 2
- Views: 1927
Compiler does not recognize special character
Hi, this is probably something that happens often with beginners..... I have a code where I use: #include <stdio.h> After giving idf.py build, Ninja complains that it does not accept < It obviously does not recognize the less-than sign. I use Notepad++ as my editor. Any suggestions how to solve this...