File tree Expand file tree Collapse file tree 3 files changed +18
-136
lines changed
TESTS/mbed_hal_fpga_ci_test_shield/analogout
targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso Expand file tree Collapse file tree 3 files changed +18
-136
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1818#include "fsl_emc.h"
1919#include "fsl_power.h"
2020#include "fsl_flashiap.h"
21+ #include "hal/pinmap.h"
2122
2223#define CRC16
2324#include "crc.h"
@@ -186,3 +187,17 @@ uint32_t qspi_get_freq(void)
186187 return CLOCK_GetFroHfFreq ();
187188}
188189
190+ const PinList * pinmap_restricted_pins ()
191+ {
192+ /* D6 pin is used by the LCD
193+ A4 pin is used by the accelerometer */
194+ static const PinName pins [] = {
195+ D6 , A4
196+ };
197+ static const PinList pin_list = {
198+ sizeof (pins ) / sizeof (pins [0 ]),
199+ pins
200+ };
201+ return & pin_list ;
202+ }
203+
Original file line number Diff line number Diff line change 3535 },
3636 "linux": {
3737 "MIMode": "gdb",
38- "MIDebuggerPath": "/usr/bin/ arm-none-eabi-gdb",
38+ "MIDebuggerPath": "arm-none-eabi-gdb",
3939 "debugServerPath": "pyocd-gdbserver"
4040 },
4141 "osx": {
4242 "MIMode": "gdb",
43- "MIDebuggerPath": "/usr/local/bin/ arm-none-eabi-gdb",
43+ "MIDebuggerPath": "arm-none-eabi-gdb",
4444 "debugServerPath": "pyocd-gdbserver"
4545 },
4646 "windows": {
4747 "preLaunchTask": "make.exe",
4848 "MIMode": "gdb",
49- "MIDebuggerPath": "C:\\Program Files (x86)\\GNU Tools ARM Embedded\\6 2017-q1-update\\bin\\ arm-none-eabi-gdb.exe",
49+ "MIDebuggerPath": "arm-none-eabi-gdb.exe",
5050 "debugServerPath": "pyocd-gdbserver.exe",
5151 "setupCommands": [
5252 { "text": "-environment-cd ${workspaceRoot}\\BUILD" },
You can’t perform that action at this time.
0 commit comments