Skip to content

Commit cf06dce

Browse files
authored
Merge pull request #15 from bcmi-labs/doc-remove-nano33-iot
Remove Arduino Nano 33 IoT as supported target.
2 parents 32d1f95 + 901803b commit cf06dce

File tree

7 files changed

+6
-93
lines changed

7 files changed

+6
-93
lines changed

Diff for: .github/workflows/compile-examples.yml

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727

2828
matrix:
2929
board:
30-
- fqbn: arduino:samd:nano_33_iot
31-
platforms: |
32-
- name: arduino:samd
3330
- fqbn: arduino:samd:arduino_zero_native
3431
platforms: |
3532
- name: arduino:samd

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![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)
66
[![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)
77

8-
**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).
8+
**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).
99

1010
### How-to-compile/upload
1111
```bash

Diff for: examples/iperf-client/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
:floppy_disk: `iperf-client`
22
=============================
33

4-
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.
4+
This example sketch can be used to measure 10BASE-T1S network performance using this software stack.
55

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

1111
### How-to-`iperf`

Diff for: examples/iperf-client/iperf-client.ino

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/*
2-
* This example has been tested with Arduino Nano 33 IoT and with
3-
* Mikroe Two-Wire ETH Click board (MicroChip LAN8651). For further
4-
* information take a look at the README.
2+
* This example has been tested with the Arduino 10BASE-T1S (T1TOS) shield.
53
*
64
* Author:
75
* Alexander Entinger

Diff for: examples/tools/AT24MAC402-Read-MAC/AT24MAC402-Read-MAC.ino

-77
This file was deleted.

Diff for: examples/tools/Generate-MAC/Generate-MAC.ino

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
* This example has been tested with Arduino Uno WiFi R4 and Arduino Nano 33 IoT.
3-
* - arduino-cli compile -b arduino:samd:nano_33_iot -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
2+
* This example has been tested with Arduino Uno Minima / WiFi R4.
43
* - arduino-cli compile -b arduino:renesas_uno:unor4wifi -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
54
* - arduino-cli compile -b arduino:renesas_uno:minima -v examples/tools/Generate-MAC -u -p /dev/ttyACM0
65
*/

Diff for: src/Arduino_10BASE_T1S.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@
3131
* CONSTANTS
3232
**************************************************************************************/
3333

34-
#if defined(ARDUINO_SAMD_NANO_33_IOT)
35-
static int const CS_PIN = 10;
36-
static int const RESET_PIN = 9;
37-
static int const IRQ_PIN = 2;
38-
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_GIGA)
34+
#if defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_MINIMA) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_GIGA)
3935
/* Those are all boards with the Arduino Uno form factor for the T1S shield. */
4036
static int const CS_PIN = 9;
4137
static int const RESET_PIN = 4;

0 commit comments

Comments
 (0)