Feature Request: Arduino IDE Tools Menu Info Dump for v3 #9026
Replies: 2 comments 2 replies
-
but we do already have that :) here is wat get's printed out if you set the core debug level to "debug" or "verbose". FQBN gives you the selected options:
|
Beta Was this translation helpful? Give feedback.
-
+1 for this as a callable feature. I was basically building the guts of "yes, I know you have an ESP32 but I need to know which of the zillion that REALLY means" support feature whe I stumbled upon chip-debug-report.{cc,h} Getting our users on correctly configured PSRAM configurations from arbitrary cheap development boards has been a challenge. If they have plentiful, functional OSPI PSRAM, we'd make different buffering/dma strategy than if we're suffering without PSRAM at all. I'm trying to build a debug screen to help them get USE_PSRAM/BOARD_HAS_PSRAM correct without them copy-pasting build flags and slurping -mfix-esp32-psram-cache-issue into an S3 and such. |
Beta Was this translation helpful? Give feedback.
-
Feature request for the upcoming arduino-esp32 core v3.
It'd be great if we could programmatically grab all the info from the Arduino IDE (v2 & greater) Tools menu into an array or structure.
Be very good to have this for documenting and debugging a sketch so that we could, for example add a few
Serial.println( );
statements and get something like:It would be a huge benefit when asking for help on this and other forums.
It would be good to modify this so that if a custom partition scheme is used, that would be noted with the file name of that scheme available too.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions