Skip to content

Commit c1a39f4

Browse files
committed
change reset pin for portenta c33 to 0
1 parent 1f5ca5a commit c1a39f4

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ The procedure:
3535
* `Arduino GIGA R1 WiFi`: short the pin 7 to GND until the led turns off
3636
* `Arduino Nano RP2040 Connect`: short the pin 2 to 3.3V until the led turns off
3737
* `Arduino Portenta H7`: short the pin 0 to GND until the led turns off
38+
* `Arduino Portenta C33`: short the pin 0 to GND until the led turns off
3839
* Other boards: short the pin 2 to GND until the led turns off
3940
* `Portenta Machine Control`: currently the reset procedure is not available
4041

examples/NetworkConfiguratorDemo/NetworkConfiguratorDemo.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* - Arduino GIGA R1 WiFi: short the pin 7 to GND until the led turns off
2323
* - Arduino Nano RP2040 Connect: short the pin 2 to 3.3V until the led turns off
2424
* - Portenta H7: short the pin 0 to GND until the led turns off
25+
* - Portenta C33: short the pin 0 to GND until the led turns off
2526
* - Portenta Machine Control: the reset is not available
2627
* - Other boards: short the pin 2 to GND until the led turns off
2728
*

src/ANetworkConfigurator_Config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
#if defined(ARDUINO_PORTENTA_C33)
111111
#define NETWORK_CONFIGURATOR_COMPATIBLE 1
112112
#define ZERO_TOUCH_ENABLED 1
113-
#define PIN_RECONFIGURE 2
113+
#define PIN_RECONFIGURE 0
114114
#define LED_RECONFIGURE LEDG
115115
#define BOARD_HAS_RGB
116116
#define GREEN_LED LEDG

src/Arduino_NetworkConfigurator.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ NetworkConfiguratorStates NetworkConfiguratorClass::update() {
123123
* - Arduino GIGA R1 WiFi: short the pin 7 to GND until the led turns off
124124
* - Arduino Nano RP2040 Connect: short the pin 2 to 3.3V until the led turns off
125125
* - Portenta H7: short the pin 0 to GND until the led turns off
126+
* - Portenta C33: short the pin 0 to GND until the led turns off
126127
* - Portenta Machine Control: the reset is not available
127128
* - Other boards: short the pin 2 to GND until the led turns off
128129
*/

src/Arduino_NetworkConfigurator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ enum class NetworkConfiguratorStates { ZERO_TOUCH_CONFIG,
5959
* - Arduino GIGA R1 WiFi: short the pin 7 to GND until the led turns off
6060
* - Arduino Nano RP2040 Connect: short the pin 2 to 3.3V until the led turns off
6161
* - Portenta H7: short the pin 0 to GND until the led turns off
62+
* - Portenta C33: short the pin 0 to GND until the led turns off
6263
* - Portenta Machine Control: the reset is not available
6364
* - Other boards: short the pin 2 to GND until the led turns off
6465
*

0 commit comments

Comments
 (0)