Replies: 6 comments 6 replies
-
|
Beta Was this translation helpful? Give feedback.
-
With which minimal |
Beta Was this translation helpful? Give feedback.
-
I think I also have this problem. I don't know when it started.
[env:rpipico]
platform = raspberrypi
board = rpipico
framework = arduino it stays the same when I change platformio.ini to: [env:rpipico]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipico
framework = arduino In one of my current projects (that uses the Arduino-Audio-Tools library, git cloned to /lib, and
and a few more like that. It compiles fine |
Beta Was this translation helpful? Give feedback.
-
I cannot reproduce this on my Windows system, but I think I have a hunch of where this is coming from. Number 1: The original "check if PIO target is build" has failed arduino-pico/tools/platformio-build.py Lines 54 to 56 in 4fd8e41 It's not called "compilerArgs": [
"-march=armv6-m",
"-mcpu=cortex-m0plus",
"-mthumb",
"-iprefixC:/Users/Max/.platformio/packages/framework-arduinopico",
"@C:/Users/Max/.platformio/packages/framework-arduinopico/lib/platform_inc.txt",
""
] On some systems, the We can fix that with Unix path normalization just like platformio/platform-renesas-ra@a727d32 did. However, I really want to have the old Intellisense behavior again with the expanded out paths for the sake of other IDEs that can't process (or don't even know about) the |
Beta Was this translation helpful? Give feedback.
-
Thank you, I just do the update and will try it out. In the meanwhile, fyi, this is my c_cpp_properties.json
|
Beta Was this translation helpful? Give feedback.
-
it seems not to work for me :( did that update
but c_cpp_properties.json looks the same ( I even deleted it to be 100% sure it was regenerated)
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I got following error messages in my pio project with earle core.
#include-Fehler erkannt. Aktualisieren Sie Ihren includePath. Wellenlinien sind für diese Übersetzungseinheit (D:\Data\Eigene Dokumente\Projekte\EIB\OpenKNX\OpenKNX-Repos_SEN-UP1-8xTH\SEN-UP1-8xTH\src\main.cpp) deaktiviert.
Die Datei "Quelle" kann nicht geöffnet werden: "lwip/init.h". (dependency of "OpenKNX.h")
Die Datei "Quelle" kann nicht geöffnet werden: "lwip/init.h". (dependency of "OpenKNX.h")
and some more. All from pico-sdk.
This is intelisense only, building goes through without errors.
how can I fix this?
Beta Was this translation helpful? Give feedback.
All reactions