ArduinoCore-avr icon indicating copy to clipboard operation
ArduinoCore-avr copied to clipboard

The Official Arduino AVR core

Results 127 ArduinoCore-avr issues
Sort by recently updated
recently updated
newest added
trafficstars

These patches should be enough to use `magic_enum` library and `std::string`. For using CTRE other patches are needed, but they don't belong to this repo.

enhancement

In the [Atmega32u4 Pin Mapping](https://www.arduino.cc/en/Hacking/PinMapping32u4) PE2 is documented as HWB so the expected behavior would be the user to be able to use it as a digital pin. In the...

enhancement

This "patch" will result in the suppression of a number of warnings that are the result of unused parameters. In particular the following warnings are removed. ```txt .../.arduino15/packages/arduino/hardware/avr/1.8.5/cores/arduino/new.cpp: In function...

bug

could we finally have sprintf for floats on Arduino Mega? enabled perhaps by a #include or by a #pragma config

enhancement

Today, I ran into some problem, which turned out to be caused by the compiler happily passing an `int` to a function that expected a pointer. Closer investigation showed that...

enhancement

This originated on MCUdude/MiniCore#245 Since `twi_readFrom()` and `twi_writeTo()` are both blocking functions, there is no need to allocate a special `twi_masterBuffer`. Doing so wastes valuable RAM, uses extra time to...

After some investigation, I was able to narrow down my code to the minimum that reproduces the bug, then I added some code that helps me locate where it is....

This is a follow up to the following issues: https://github.com/arduino/ArduinoCore-avr/issues/458 https://github.com/arduino/ArduinoCore-avr/issues/518 I'll immediately close my issue after this one is created and if the signatures are in place, #458 can...

prevent `long int` overflow when too many digits. This change will only return the most significant digits. Issue #468

Hello, there is an error in the USART define links. A bit definition called **U3Xn** does not exist. This is surely a typo and must be **U2Xn**. n stands for...

bug