Maximilian Gerhardt
Maximilian Gerhardt
This core is uncompilable even in the latest stable 0.1.4 version in Arduino IDE 1.8.19 beyond that error -- the simplest possible "Empty" example gives an error on `CDC_TX_PACKET_SIZE` not...
For completeness: The new toolchain version was indeed meant to be used with a modified platform ([here](https://github.com/maxgerhardt/platform-timsp430)), but I also provided that with https://github.com/maxgerhardt/pio-timsp430-new-toolchain-example. It contains critical ``` -mlarge -mcode-region=either...
For anyone reading, here's a short summary of the topic: * allowing firmwares to use the "high" memory starting at 0x10000 requires 1. turning on a compiler option for "large-model...
> '/usr/local/Cellar/libusb/1.0.27/lib/libusb-1.0.0.dylib' not valid for use in process: mapped file has no cdhash, completely unsigned? Code has to be at least ad-hoc signed Ok then sign it https://stackoverflow.com/a/73844905
:( I don't have a Mac so I'm not sure what else to do besides googling and giving suggestions. This Mac stuff haunts me. Why are they enforcing code signatures...
First of all, I'm amazed that someone was able to look through this mess of a script and pin system I made and still make sensible additions to it. Woah....
No, they were broken with a SPL update in the Arduino core in which they just removed support for gd32f170,190 chips (but fixed bugs for other f1x0 series chips). That...
Well technically for Arduino blinky to have the same behavior you would have ```cpp #define LED PB9 void setup(){ pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, LOW); delay(500); digitalWrite(LED, HIGH);...
What exact board are you running on? Custom made? Does it have a quartz crystal for HSE?
Hm okay that should still be fine because the Arduino system code configures the clock to be sourced from the internal RC 8MHz oscillator. https://github.com/CommunityGD32Cores/ArduinoCore-GD32/blob/41f3c2b3524a51e698ef03186a4243bb89e8ad88/system/GD32F1x0_firmware/CMSIS/GD/GD32F1x0/Source/system_gd32f1x0.c#L45-L49 Can you test this exact...