Per Tillisch
Per Tillisch
The [Arduino library specification](https://arduino.github.io/arduino-cli/latest/library-specification/#libraryproperties-file-format) allows library authors to specify compatibility with any board architecture by using the `*` value in the `architectures` field of the `library.properties` metadata file. The "Arduino...
Arduino now provides a dedicated web page with the indexer logs for each library. From https://github.com/arduino/library-registry/blob/main/FAQ.md#can-i-check-on-library-releases-being-added-to-library-manager > There is a dedicated web page for each library that shows the logs...
Specifying the library dependencies in the `depends` field of library.properties causes the Arduino Library Manager (Arduino IDE 1.8.10 and newer) to offer to install any missing dependencies during installation of...
command: ``` make MCU_TARGET=atmega1280 BOOT_ADR=0x1F000 F_CPU=8000000 SD_CS_PORT=PORTH SD_CS_DDR=DDRH SD_CS_BIT=5 USE_LED=0 USE_UART=0 ADDED_CFLAGS="-Wextra -Wno-strict-aliasing" TARGET=$(MCU_TARGET)_cs8_$(F_CPU)L ``` avr-gcc 6.0.1 error message: ``` asmfunc.S: Assembler messages: asmfunc.S:86: Error: operand out of range: 225...
Specifying the library dependencies in the `depends` field of library.properties causes the Arduino Library Manager (Arduino IDE 1.8.10 and newer) to offer to install any missing dependencies during installation of...
- Use correct field separator - Fix keyword definitions
https://github.com/pmjdebruijn/Arduino-Entropy-Library/commit/aadd30945e98a96d171a554ddf7708998da37782 broke support for the Arduino Due by removing the `#include` directive for Arduino.h: ``` E:\arduino\libraries\Arduino-Entropy-Library\Entropy.cpp: In member function 'void EntropyClass::initialize()': E:\arduino\libraries\Arduino-Entropy-Library\Entropy.cpp:62:32: error: 'pmc_enable_periph_clk' was not declared in this scope...
Specifying the library dependencies in the `depends` field of library.properties causes the Arduino Library Manager (Arduino IDE 1.8.10 and newer) to offer to install any missing dependencies during installation of...
Specifying the library dependencies in the `depends` field of library.properties causes the Arduino Library Manager (Arduino IDE 1.8.10 and newer) to offer to install the dependencies during installation of this...
The original author of this code is Paul Grayson. They published it as part of the pololu/libpololu-avr repository: https://github.com/pololu/libpololu-avr/blob/master/src/OrangutanResources/OrangutanResources.cpp Although that file has a Creative Commons BY-SA 3.0 license, Paul...