Skip to content

Commit 66b4aac

Browse files
committed
Merge branch 'master' of github.com:arduino/ARM
2 parents 914c538 + 114c9f5 commit 66b4aac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/src/processing/app/debug/TargetPlatform.java

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public TargetPlatform(String _name, File _folder) {
4545
name = _name;
4646
folder = _folder;
4747
boards = new HashMap<String, PreferencesMap>();
48+
boardsOrder = new ArrayList<String>();
4849
programmers = new HashMap<String, PreferencesMap>();
4950
preferences = new PreferencesMap();
5051

hardware/arduino/sam/variants/arduino_due_x/variant.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,13 @@ static const uint8_t SCK = PIN_SPI_SCK ;
119119
#define PIN_WIRE_SCL (21u)
120120
#define WIRE_INTERFACE TWI1
121121
#define WIRE_INTERFACE_ID ID_TWI1
122-
#define WIRE_ISR_HANDLER TWI1_IrqHandler
122+
#define WIRE_ISR_HANDLER TWI1_Handler
123123

124124
#define PIN_WIRE1_SDA (70u)
125125
#define PIN_WIRE1_SCL (71u)
126126
#define WIRE1_INTERFACE TWI0
127127
#define WIRE1_INTERFACE_ID ID_TWI0
128-
#define WIRE1_ISR_HANDLER TWI0_IrqHandler
128+
#define WIRE1_ISR_HANDLER TWI0_Handler
129129

130130
/*
131131
* UART/USART Interfaces

0 commit comments

Comments
 (0)