platform-atmelavr icon indicating copy to clipboard operation
platform-atmelavr copied to clipboard

Atmel AVR: development platform for PlatformIO

Results 128 platform-atmelavr issues
Sort by recently updated
recently updated
newest added

I was not able to get my Atmega32u4 sketches to upload, at all, even though the exact same avrdude/com port settings worked (albeit only about 50% of the time) in...

help wanted

Can you add support for A-Star 328PB? I recently bought the 5V 20MHz version to shrink my projects it would be nice to have option to program in PlatformIO What...

I have tried to bake my Atmega 328P with USBasp (8A) by a sketch, but got an error that I run out of memory. I have tried the same code...

help wanted

Hi, Guys! I compile the simplest example for Arduino Uno within VSC Platformio on W10 Pro. With the following errors. I need your friendly assistance to solve my problem. I...

- [ ] **PlatformIO Core**. If you’ve found a bug, please provide an information below. ### Configuration Ubuntu 20.04 **PlatformIO Version** (`platformio --version`): PlatformIO, version 5.0.1 ### Description of problem...

``` [env:digispark-tiny] platform = atmelavr board = digispark-tiny framework = arduino ``` src/keyboard.cpp: ``` #include "DigiKeyboard.h" void setup() { DigiKeyboard.update(); } void loop() { delay(1000); DigiKeyboard.update(); delay(100); DigiKeyboard.print("hello"); DigiKeyboard.println("world"); delay(5000);...

issue #237. Method: following chip datasheets, set unused 2 most significant bits to 1. Tested OK with PIO core 5.1.0, home 3.3.3, framework-arduino-avr 5.0.0, tool-avrdude 6.3.0, toolchain-atmelavr 5.4.0

Hi guys! When compiling for a digispark, I get a lot of warning noise. I do not know how important this is but it makes me at least nervous every...

https://github.com/platformio/platform-atmelavr/blob/dec3edd5f16c79a62bcc91fed7d04618b04721fe/builder/bootloader.py#L81-L82 Refer to thread https://community.platformio.org/t/avrdude-warning-on-burn-bootloader-with-pio-standard-setting/19227 Solution: modify script this way, please. lock_bits = board.get("bootloader.lock_bits", "0xCF") unlock_bits = board.get("bootloader.unlock_bits", "0xEF")