Skip to content

Remove Arduino Nano 33 IoT as supported target. #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:

matrix:
board:
- fqbn: arduino:samd:nano_33_iot
platforms: |
- name: arduino:samd
- fqbn: arduino:samd:arduino_zero_native
platforms: |
- name: arduino:samd
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Sync Labels status](https://github.com/bcmi-labs/Arduino_10BASE_T1S/actions/workflows/sync-labels.yml/badge.svg)](https://github.com/bcmi-labs/Arduino_10BASE_T1S/actions/workflows/sync-labels.yml)
[![Arduino Lint](https://github.com/bcmi-labs/Arduino_10BASE_T1S/workflows/Arduino%20Lint/badge.svg)](https://github.com/bcmi-labs/Arduino_10BASE_T1S/actions?workflow=Arduino+Lint)

**Note**: This library works for Arduino [Nano 33 IoT](https://store.arduino.cc/products/arduino-nano-33-iot), Arduino [Zero](https://store.arduino.cc/products/arduino-zero), Arduino [R4 WiFi](https://store.arduino.cc/products/uno-r4-wifi) and Arduino [R4 Minima](https://store.arduino.cc/products/uno-r4-minima).
**Note**: This library works for Arduino [Zero](https://store.arduino.cc/products/arduino-zero), Arduino [R4 WiFi](https://store.arduino.cc/products/uno-r4-wifi) and Arduino [R4 Minima](https://store.arduino.cc/products/uno-r4-minima).

### How-to-compile/upload
```bash
Expand Down
4 changes: 2 additions & 2 deletions examples/iperf-client/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
:floppy_disk: `iperf-client`
=============================

This example sketch can be used to measure 10BASE-T1S network performance using this software stack. The required hardware is a Arduino [Nano 33 IoT](https://store.arduino.cc/products/arduino-nano-33-iot) and a Mikroe [2-Wire ETH](https://www.mikroe.com/two-wire-eth-click) click board.
This example sketch can be used to measure 10BASE-T1S network performance using this software stack.

### How-to-compile/upload
```bash
arduino-cli compile -b arduino:renesas_uno:unor4wifi -v examples/iperf-client -u -p /dev/ttyACM0
arduino-cli compile -b arduino:renesas_uno:minima -v examples/iperf-client -u -p /dev/ttyACM0
```

### How-to-`iperf`
Expand Down
4 changes: 1 addition & 3 deletions examples/iperf-client/iperf-client.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*
* This example has been tested with Arduino Nano 33 IoT and with
* Mikroe Two-Wire ETH Click board (MicroChip LAN8651). For further
* information take a look at the README.
* This example has been tested with the Arduino 10BASE-T1S (T1TOS) shield.
*
* Author:
* Alexander Entinger
Expand Down
77 changes: 0 additions & 77 deletions examples/tools/AT24MAC402-Read-MAC/AT24MAC402-Read-MAC.ino

This file was deleted.

3 changes: 1 addition & 2 deletions examples/tools/Generate-MAC/Generate-MAC.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/*
* This example has been tested with Arduino Uno WiFi R4 and Arduino Nano 33 IoT.
* - arduino-cli compile -b arduino:samd:nano_33_iot -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
* This example has been tested with Arduino Uno Minima / WiFi R4.
* - arduino-cli compile -b arduino:renesas_uno:unor4wifi -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
* - arduino-cli compile -b arduino:renesas_uno:minima -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
*/
Expand Down
6 changes: 1 addition & 5 deletions src/Arduino_10BASE_T1S.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
* CONSTANTS
**************************************************************************************/

#if defined(ARDUINO_SAMD_NANO_33_IOT)
static int const CS_PIN = 10;
static int const RESET_PIN = 9;
static int const IRQ_PIN = 2;
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_GIGA)
#if defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_GIGA)
/* Those are all boards with the Arduino Uno form factor for the T1S shield. */
static int const CS_PIN = 9;
static int const RESET_PIN = 4;
Expand Down