Maximilian Gerhardt
Maximilian Gerhardt
Comment from [here](https://community.platformio.org/t/uploading-to-micro-leonardo/10935/20?u=maxgerhardt): >I don’t know why exactly, but on SOME pcs it just waits far too long (until the Arduino goes out of the bootloader) and only THEN tries...
I just brought out my ProMicro (ATMega32U4, 3.3V version, 8MHz clock) and I'm having zero problems. ```ini [env:sparkfun_promicro8] platform = atmelavr board = sparkfun_promicro8 framework = arduino ``` with code...
An Arduino Nano has an ATMega328 (typically), not the USB-enabled ATMega32u4.
PlatformIO uses the core versions that are available for the board, they've not written that themselves. To my knowledge the core is at https://github.com/digistump/DigistumpArduino/. You would need to ask them...
Mainly work has to be done in this repository (platform-atmelavr) to add the board defnitions (in JSON format, `boards/`) that the core uses (if any new ones are in there),...
Okay so it's actually much easier than expected to test it. Just use a `platform_packages` directive ([docs](https://docs.platformio.org/en/latest/projectconf/section_env_platform.html#platform-packages)) to overwrite the `framework-arduino-avr-digistump` package from a zip package that already exists in...
>But what's about the new micronucleus binaries for the different OS? > How are they upgraded? For that you would have to create a package (see above links with `pio...
It's using semver / semantic versioning. Here's [an example and explanation](https://community.platformio.org/t/find-the-mbed-version-which-was-used-before-a-backup/16159/4?u=maxgerhardt). For version 2.5 i'd encode it as `1.205.4` or `1.20500.4` (2.5.0). The last field is pretty much always used...
>Is there an autoexec for the old install.exe or so? Or is the user aware that there is an install.exe he must execute? The drivers are not auto-installed, they are...
>Unrecognized option: -c Ah, that doesn't work anymore with `-c`? The current code does https://github.com/platformio/platform-atmelavr/blob/dec3edd5f16c79a62bcc91fed7d04618b04721fe/builder/main.py#L184-L192 So to fix that there are two options: 1. Correct the code to use the...