From 7ac6ff7aae21812967da8352f6a2ca61629914af Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 12 Nov 2018 22:19:33 -0800 Subject: [PATCH] Use correct library.properties architectures value The previous avr architectures value in the library.properties metadata files of the bundled libraries causes warnings to be displayed during compilation: WARNING: library SPI claims to run on (avr) architecture(s) and may be incompatible with your current board which runs on (megaavr) architecture(s). --- libraries/EEPROM/library.properties | 2 +- libraries/HID/library.properties | 2 +- libraries/SPI/library.properties | 2 +- libraries/SoftwareSerial/library.properties | 2 +- libraries/Wire/library.properties | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/EEPROM/library.properties b/libraries/EEPROM/library.properties index 3b200326..2bd55521 100644 --- a/libraries/EEPROM/library.properties +++ b/libraries/EEPROM/library.properties @@ -6,5 +6,5 @@ sentence=Enables reading and writing to the permanent board storage. paragraph=This library allows to read and write data in a memory type, the EEPROM, that keeps its content also when the board is powered off. The amount of EEPROM available depends on the microcontroller type. category=Data Storage url=http://www.arduino.cc/en/Reference/EEPROM -architectures=avr +architectures=megaavr diff --git a/libraries/HID/library.properties b/libraries/HID/library.properties index 9075bd87..499286d4 100644 --- a/libraries/HID/library.properties +++ b/libraries/HID/library.properties @@ -6,4 +6,4 @@ sentence=Module for PluggableUSB infrastructure. Exposes an API for devices like paragraph= category=Communication url=http://www.arduino.cc/en/Reference/HID -architectures=avr +architectures=megaavr diff --git a/libraries/SPI/library.properties b/libraries/SPI/library.properties index 4ed8db90..34a1b624 100644 --- a/libraries/SPI/library.properties +++ b/libraries/SPI/library.properties @@ -6,5 +6,5 @@ sentence=Enables the communication with devices that use the Serial Peripheral I paragraph=SPI is a synchronous serial data protocol used by microcontrollers for communicating with one or more peripheral devices quickly over short distances. It uses three lines common to all devices (MISO, MOSI and SCK) and one specific for each device. category=Communication url=http://www.arduino.cc/en/Reference/SPI -architectures=avr +architectures=megaavr diff --git a/libraries/SoftwareSerial/library.properties b/libraries/SoftwareSerial/library.properties index 6d20a49c..245c2f33 100644 --- a/libraries/SoftwareSerial/library.properties +++ b/libraries/SoftwareSerial/library.properties @@ -6,5 +6,5 @@ sentence=Enables serial communication on any digital pin. paragraph=The SoftwareSerial library has been developed to allow serial communication on any digital pin of the board, using software to replicate the functionality of the hardware UART. It is possible to have multiple software serial ports with speeds up to 115200 bps. category=Communication url=http://www.arduino.cc/en/Reference/SoftwareSerial -architectures=avr +architectures=megaavr diff --git a/libraries/Wire/library.properties b/libraries/Wire/library.properties index e19526e8..d8ba8691 100644 --- a/libraries/Wire/library.properties +++ b/libraries/Wire/library.properties @@ -6,5 +6,5 @@ sentence=This library allows you to communicate with I2C and Two Wire Interface paragraph=It allows the communication with I2C devices like temperature sensors, realtime clocks and many others using SDA (Data Line) and SCL (Clock Line). category=Communication url=http://www.arduino.cc/en/Reference/Wire -architectures=avr +architectures=megaavr