File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
#if defined(ARDUINO_SAMD_ZERO ) || defined(ARDUINO_MINIMA ) || defined(ARDUINO_UNOWIFIR4 ) || defined(ARDUINO_AVR_UNO_WIFI_REV2 ) || defined(ARDUINO_GIGA )
35
35
/* Those are all boards with the Arduino Uno form factor for the T1S shield. */
36
36
static int const CS_PIN = 9 ;
37
- static int const RESET_PIN = 4 ;
37
+ static int const RESET_PIN = 6 ;
38
38
static int const IRQ_PIN = 2 ;
39
39
#elif defined(ARDUINO_PORTENTA_H7_M7 ) || defined(ARDUINO_PORTENTA_H7_M4 )
40
40
/* Pro Demo kit on MID carrier, UNO form factor */
41
41
#include "pinDefinitions.h"
42
42
static int const CS_PIN = PinNameToIndex (PH_6 );
43
- static int const RESET_PIN = PinNameToIndex (PJ_11 );
43
+ static int const RESET_PIN = PinNameToIndex (PH_15 ); /* D6 (Uno form factor) -> PWM6 (Mid carrier headers) = PH15 (Portenta H7 high-density connectors) */
44
44
static int const IRQ_PIN = PinNameToIndex (PC_7 );
45
45
#elif defined(ARDUINO_PORTENTA_C33 )
46
46
/* Pro Demo kit on MID carrier, UNO form factor */
47
47
static int const CS_PIN = 25 ;
48
- static int const RESET_PIN = 4 ;
48
+ static int const RESET_PIN = 6 ; /* D6 (Uno form factor) -> PWM6 (Mid carrier headers) = P601 (Portenta C33 high-density connectors) = D6 */
49
49
static int const IRQ_PIN = 2 ;
50
50
#else
51
51
# error "No pins defined for your board"
You can’t perform that action at this time.
0 commit comments