-
-
Notifications
You must be signed in to change notification settings - Fork 624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for sparkfun esp32-s3 thing plus board #1463
Comments
@valeros I started doing the work and have written the json file, the entry in the boards.txt and the variant folder for the arduino framework. It all compiles and uploads but the code does not run. Any clue how to debug this. My arduino framework additions work with the arduino ide 2.0 (I can compile, upload and execute). |
Hi @Vigeant, share here your board manifest. What code do you use to verify the board is working? |
hi @valeros I am using a simple blink demo /*
* Blink
* Turns on an LED on for one second,
* then off for one second, repeatedly.
*/
#include <Arduino.h>
// Set LED_BUILTIN if it is not defined by Arduino framework
#ifndef LED_BUILTIN
#define LED_BUILTIN 46
#endif
#define LED_BUILTIN 0
void setup()
{
// initialize LED digital pin as an output.
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(115200);
}
void loop()
{
// turn the LED on (HIGH is the voltage level)
digitalWrite(LED_BUILTIN, HIGH);
Serial.println("LED on");
// wait for a second
delay(1000);
// turn the LED off by making the voltage LOW
digitalWrite(LED_BUILTIN, LOW);
Serial.println("LED off");
// wait for a second
delay(1000);
} the json file refers to the arduino board I wrote. I did a pull request for it but will take a while for it to propagate. Is there a way to refer to something local instead of the arduino stuff? |
I see you've used |
hi @valeros thats correct, I wrote my own based on the generic esp32-s3 dev board and yes I had the demos working. Yesterday I tried pointing my platformio.ini to the github repo since my pull request was merged in the arduino master recently but still having trouble. Here is my platformio.ini
I get the following error when trying to compile
|
not sure how to go about officially adding a board and use platformio. I guess I could fork the last 2.0 build and add my board and point to my fork. Is there a timeline for platformIO to move to core V3.x? |
I'm afraid I cannot help you here with third-party implementations. As for support for v3.x, see #1225. |
@Vigeant Your platform_packages is wrong use
to use core 3.0.5 |
Good day, still exploring how to do this myself but though I would mention it here.
Please add support for the sparkfun esp32-s3 thing plus board. I noticed that you have many esp32-s3 boards already so should be a quick addition.
The text was updated successfully, but these errors were encountered: