Does this board has to be installed
Martin Michael
Does this board has to be installed
Martin Michael
Nope⊠that board was added 2 years ago in version 6.10.0:
Maybe youâre using an outdated platform version? Which one do you use / have installed?
(This question gives me a feeling of déjà vu.
)
Thx sivar2311 But I canât upgrade my platformIO
Youâre up-to-date!
PlatformIO 6.1.19 is currently the newest version available.
die HI tells me
Itâs not a ânew featureâ
If itâs been around since 6.10.0, then anything still missing or broken around it isnât a matter of ânot implemented yet,â but more likely:
an oversight thatâs been lingering for multiple releases
a regression introduced later
or simply something the developers never fully wired up despite adding the board itself
It also means documentation or changelogs might be misleading
Sometimes a feature appears in the codebase or UI long before itâs officially documented or supported. If the board was added in 6.10.0 but only mentioned later, that would explain the confusion.
And if someone claimed it was added recently, theyâre definitely mistaken
Two years is a long time in version cycles â so your correction is spotâon.
If you want, tell me which software or component weâre talking about, and I can help you dig into when the board became functional, what changed around it, or why it still behaves oddly.
You are confusing PlatformIO version and the espressif32 platform version!
The board manifest is part of the espressif32 platform and was introduced in 6.10.0.
OK but now I get
.pio/libdeps/freenove_esp32_s3_wroom/lvgl/src/widgets/property/../keyboard/../buttonmatrix/../../core/../misc/../font/../draw/../misc/../stdlib/lv_mem.h:16:10: fatal error: ../lv_conf_internal.h: No such file or directory
#include â../lv_conf_internal.hâ
^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
*** [.pio\build\freenove_esp32_s3_wroom\libf10\lvgl\widgets\property\lv_keyboard_properties.c.o] Error 1
==================================================================================================================================== [FAILED] Took 103.56 seconds =======
same code
Indexing .pio\build\esp32s3\libFrameworkArduino.a
Linking .pio\build\esp32s3\firmware.elf
Retrieving maximum program size .pio\build\esp32s3\firmware.elf
Checking size .pio\build\esp32s3\firmware.elf
Advanced Memory Usage is available via âPlatformIO Home > Project Inspectâ
RAM: [==== ] 36.8% (used 120500 bytes from 327680 bytes)
Flash: [====== ] 55.1% (used 1731913 bytes from 3145728 bytes)
Building .pio\build\esp32s3\firmware.bin
esptool.py v4.9.0
Creating esp32s3 imageâŠ
Merged 2 ELF sections
Successfully created esp32s3 image.
=================================================================================================================================== [SUCCESS] Took 131.70 seconds ===================================================================================================================================
[env:esp32s3]
platform = espressif32
board = esp32-s3-devkitc-1-n8r8v
framework = arduino
You need to be more preceise. What did you change between both builds? (I donât know your project and what you have changed).
Nothing same big project
That doesnât help much ![]()
WARNING: This command is deprecated and will be removed in the next releases.Please use pio pkg list instead.
Platformsâââ espressif32 @ 6.12.0 (required: platformio/espressif32)
[env:freenove_esp32_s3_wroom]
platform = espressif32
oard = freenove_esp32_s3_wroom
Warning! Ignore unknown configuration option oard in section [env:freenove_esp32_s3_wroom]Processing freenove_esp32_s3_wroom (platform: espressif32; framework: arduino)
Verbose mode can be enabled via -v, --verbose optionError: BoardConfig: Board is not defined============================================================================================================== [FAILED] Took 0.91 seconds ==============================================================================================================
- The terminal process âC:\Users\ats37.platformio\penv\Scripts\platformio.exe ârunâ, ââenvironmentâ, âfreenove_esp32_s3_wroomââ terminated with exit code: 1.
- Terminal will be reused by tasks, press any key to close it.
in this case a simple project
The log doesnât make much sense because of the wrong formatting. Please use preformatted text when posting code or log.
It seems there is a typo in you platformio.ini: âoard = freenove_esp32_s3_wroomâ should be âboard = freenove_esp32_s3_wroomâ
The platformio.ini looks minimalistic (simple) but I donât know your project (source codeâŠ) â So it is still a âblack boxâ
Thx I got canât remember how but Thx
Bonjour , jâai une carte ESP32 Wroom 32U.
Je peux utiliser Upesy ESP32 Wroom DEvKit ou autre.
Merci
â board = esp32dev
this is working for me
[env:esp32s3]
platform = espressif32
board = esp32-s3-devkitc-1-n8r8v
framework = arduino
[env:esp32s3]
platform = espressif32
board = esp32-s3-devkitc-1-n16r8v
framework = arduino
Oh sorry I canât upload esp32-s3-devkitc-1-n16r8v
Go to claude.au this AI will help you
Same problem here:
[env:freenove_esp32_s3_wroom]
platform = espressif32
board = freenove_esp32_s3_wroom
framework = arduino
Error:
Resolving freenove_esp32_s3_wroom dependencies...
UnknownBoard: Unknown board ID 'freenove_esp32_s3_wroom'
Youâre up-to-date!
PlatformIO 6.1.19 is currently the newest version available.
Followed this page:
The PlatformIO version is (nearly) irrelevant.
platform = espressif32
But the espressif32 platform version is relevant.
You did not specify a version, so whatever version is installed on your computer will be used.
Since the board was added in 6.10.0, I guess your version installed must be older than hat.
The latest available version is 7.0.0. To use this version in your project, change your platform setting to:
platform = espressif32 @ 7.0.0
Works, thanks!
Out of curiosity: is, say
platform = espressif32 @ latest
a thing?
Or, how to get the latest version automatically?