Page 3 of 3
Re: VSC installation BUG
Posted: Sun Dec 11, 2022 11:48 pm
by chegewara
AND, i dont understand this yet:
-- Component directory C:/esp32-Proj/WSS_SERVER_AND_UI_INTEGRATION_S3_16-05-2022/components/communication does not contain a CMakeLists.txt file. No component will be added
-- Component directory C:/esp32-Proj/WSS_SERVER_AND_UI_INTEGRATION_S3_16-05-2022/components/ui does not contain a CMakeLists.txt file. No component will be added
You dont have to worry about it. Cmake is looking for CMakeLists.txt in every subfolder in components, but your components are 1 level down in communication and ui, thus you dont have it there. Its just more info, in case we forgot to add CMakeLists.txt, because in normal case that component wont get build.
Re: VSC installation BUG
Posted: Wed Dec 21, 2022 11:34 pm
by roachslayer
I just wanted to add, I tried using the espressif extension in VSC today, TOTAL disaster. I can't follow half the stuff in this thread (nor should I need to know how the extension or IDF was written or works on my system), but I can tell you that this is totally broken and unusable.
I cannot open menuconfig due to missing files (re: cmakelists.txt), and trying to hack around this is to no avail.
Re: VSC installation BUG
Posted: Mon Dec 26, 2022 4:27 pm
by yehuda
I upgrade from sdk4.4 to sdk5.0 and I get:
warning: ignoring attribute 'section (".iram1.3" ' because it conflicts with previous 'section (".iram1.2")' [-Wattributes]
on function:
static void IRAM_ATTR start_lf_pwm()
I assume that there something with attribute IRAM_ATTR that changed at SDK5.0
Can someone help?
Re: VSC installation BUG
Posted: Mon Jan 09, 2023 7:49 pm
by guilherme_pp
Hello,
I'am facing the similar problem with migration to sdk5.0.
I'am using IRAM_ATTR twice in my code, so i get two warnings from Eclipse IDE:
ignoring attribute 'section (".iram1.2")' because it conflicts with previous 'section (".iram1.0")' [-Wattributes]
ignoring attribute 'section (".iram1.3")' because it conflicts with previous 'section (".iram1.1")' [-Wattributes]
Can someone help?
Thanks!
Re: VSC installation BUG
Posted: Thu Feb 09, 2023 12:36 pm
by guilherme_pp
I removed the IRAM_ATTR from function prototype and kept in the function only. The warning was resolved.
Re: VSC installation BUG
Posted: Thu Apr 13, 2023 12:42 pm
by vidaljuanp
Have yo found the solution to this IRAM_ATTR issue?