platform-gd32
platform-gd32 copied to clipboard
PlatformIO platform for ARM-based GD32{F,E,L,W} chips. Work in Progress!
I am afresher of platformio for gd32. I am trying upload the blink demo to my board, which has a usb to serial ic (CH340N)。 the .ini is: `[env] platform...
This change is to allow you to feed in an old boards.txt with hand-written additions at the top, separated from the automated content by "## Auto-generated content here", and also...
Hello @maxgerhardt ! I've made some changes to add support for f103, but with only moderate success. - added the datasheet quirks - added more "A" family distinguishing features, such...
Hello! I would like to develop GD32F303ZET6 using Arduino. Unfortunately, in PlatformIO, I noticed that only the standard peripheral library seems to be supported. I was wondering if there is...
even simple gpio ``` #define LED PB9 void setup(){ pinMode(LED, OUTPUT); digitalWrite(LED, LOW); delay(500); digitalWrite(LED, HIGH); delay(500); Serial1.begin(57600); } ``` spl code work well ``` #include "gd32f1x0.h" #define LEDPORT GPIOB...
Hiya, am getting an issue where i can't seem to get opencd to work on a gd32e505re. This is the error message: ``` Building in release mode Checking size .pio\build\genericGD32E505RE\firmware.elf...
Hello, I'm trying to flash my Sideboard that is equipped with a GD32F130-C8T6. After I realized that the programmig pins are in a different order than in the description I...
Hi! I'm just dropping a note to say that we over at `MarlinFirmware` maintain a keen interest in all the goings-on here in CommunityGD32Cores, with hope that we can support...
I can contribute, need somebody give me some ideas where to start. I already PlatformIO projects works for GD32VF series. Just want to unified to a single opensource and active...
upstream `ststm32` platform supports this - seems like adding the build script is possible?