File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT105x Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,9 @@ typedef enum {
209
209
// MIMXRT EVKs do not have a usable LED, because the LED shares important pins with the
210
210
// debugging interface, so trying to use the LED can interrupt flashing and debugging code!
211
211
212
+ // User button is connected to the WAKEUP pin
213
+ #define BUTTON1 WAKEUP
214
+
212
215
typedef enum {
213
216
PullNone = 0 ,
214
217
PullDown = 1 ,
Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ SECTIONS
126
126
*(.boot_hdr.dcd_data)
127
127
}
128
128
129
- /* Interrupts go at the start of flash */
130
- #define INTERRUPT_TABLE_ADDR MBED_ROM_BANK_EXT_FLASH_START
129
+ /* Interrupts go at the start of configured flash area */
130
+ #define INTERRUPT_TABLE_ADDR MBED_CONFIGURED_ROM_BANK_EXT_FLASH_START
131
131
#endif
132
132
133
133
/* Now we have the ISR vector */
Original file line number Diff line number Diff line change 13
13
14
14
# General config parameters
15
15
# -------------------------------------------------------------
16
- set (UPLOAD_METHOD_DEFAULT JLINK )
16
+ set (UPLOAD_METHOD_DEFAULT PYOCD )
17
17
18
18
# Config options for JLINK
19
19
# -------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments