Skip to content

Commit 7ac6ff7

Browse files
committed
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).
1 parent a469023 commit 7ac6ff7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

libraries/EEPROM/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sentence=Enables reading and writing to the permanent board storage.
66
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.
77
category=Data Storage
88
url=http://www.arduino.cc/en/Reference/EEPROM
9-
architectures=avr
9+
architectures=megaavr
1010

libraries/HID/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sentence=Module for PluggableUSB infrastructure. Exposes an API for devices like
66
paragraph=
77
category=Communication
88
url=http://www.arduino.cc/en/Reference/HID
9-
architectures=avr
9+
architectures=megaavr

libraries/SPI/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sentence=Enables the communication with devices that use the Serial Peripheral I
66
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.
77
category=Communication
88
url=http://www.arduino.cc/en/Reference/SPI
9-
architectures=avr
9+
architectures=megaavr
1010

libraries/SoftwareSerial/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sentence=Enables serial communication on any digital pin.
66
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.
77
category=Communication
88
url=http://www.arduino.cc/en/Reference/SoftwareSerial
9-
architectures=avr
9+
architectures=megaavr
1010

libraries/Wire/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sentence=This library allows you to communicate with I2C and Two Wire Interface
66
paragraph=It allows the communication with I2C devices like temperature sensors, realtime clocks and many others using SDA (Data Line) and SCL (Clock Line).
77
category=Communication
88
url=http://www.arduino.cc/en/Reference/Wire
9-
architectures=avr
9+
architectures=megaavr
1010

0 commit comments

Comments
 (0)