From ab8d8f845f461562d6a7d176e127053fe3b8e875 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Thu, 29 Dec 2022 10:34:49 +0100 Subject: [PATCH] Drop official support for AVR for this library. This is imho necessary since even one of our own examples does not link anymore, due to the required memory exceeding the available ressources of the ATMEGA328P based Arduino Nano. --- .github/workflows/compile-examples.yml | 6 ------ library.properties | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 73efe26..e557383 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -39,12 +39,6 @@ jobs: matrix: board: - - fqbn: arduino:avr:nano - ethernet: true - nina: false - - fqbn: arduino:avr:leonardo - ethernet: true - nina: false - fqbn: arduino:megaavr:uno2018:mode=off ethernet: true nina: true diff --git a/library.properties b/library.properties index fe06616..40eebe3 100644 --- a/library.properties +++ b/library.properties @@ -6,6 +6,6 @@ sentence=Use Modbus equipment with your Arduino. paragraph=Using TCP or RS485 shields, like the MKR 485 Shield. This library depends on the ArduinoRS485 library. category=Communication url=https://www.arduino.cc/en/ArduinoModbus/ArduinoModbus -architectures=avr,megaavr,samd,mbed_nano,mbed_portenta +architectures=megaavr,samd,mbed_nano,mbed_portenta includes=ArduinoModbus.h depends=ArduinoRS485