aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/boards/ST_NUCLEO144_L4R5ZI
diff options
context:
space:
mode:
authorgdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-10-27 09:22:21 +0000
committergdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-10-27 09:22:21 +0000
commit79ca268b490e6285d823ca1dd3d82987d30bdd1d (patch)
tree28dc4b8983cc729b91d92d805eb354c17b71285c /os/hal/boards/ST_NUCLEO144_L4R5ZI
parentb49a2f34fda633f90cffaecdc487e4e6c64b9058 (diff)
downloadChibiOS-79ca268b490e6285d823ca1dd3d82987d30bdd1d.tar.gz
ChibiOS-79ca268b490e6285d823ca1dd3d82987d30bdd1d.tar.bz2
ChibiOS-79ca268b490e6285d823ca1dd3d82987d30bdd1d.zip
Added demo for STM32F4R9I-Discovery board.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12392 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/boards/ST_NUCLEO144_L4R5ZI')
-rw-r--r--os/hal/boards/ST_NUCLEO144_L4R5ZI/board.h52
-rw-r--r--os/hal/boards/ST_NUCLEO144_L4R5ZI/cfg/board.chcfg1945
2 files changed, 1505 insertions, 492 deletions
diff --git a/os/hal/boards/ST_NUCLEO144_L4R5ZI/board.h b/os/hal/boards/ST_NUCLEO144_L4R5ZI/board.h
index a1a963557..464399327 100644
--- a/os/hal/boards/ST_NUCLEO144_L4R5ZI/board.h
+++ b/os/hal/boards/ST_NUCLEO144_L4R5ZI/board.h
@@ -1334,37 +1334,37 @@
*
* PH0 - PIN0 (analog).
* PH1 - PIN1 (analog).
- * PH2 - PIN2 (input floating).
+ * PH2 - PIN2 (analog).
* PH3 - PIN3 (input floating).
- * PH4 - PIN4 (input floating).
- * PH5 - PIN5 (input floating).
- * PH6 - PIN6 (input floating).
- * PH7 - PIN7 (input floating).
- * PH8 - PIN8 (input floating).
- * PH9 - PIN9 (input floating).
- * PH10 - PIN10 (input floating).
- * PH11 - PIN11 (input floating).
- * PH12 - PIN12 (input floating).
- * PH13 - PIN13 (input floating).
- * PH14 - PIN14 (input floating).
- * PH15 - PIN15 (input floating).
+ * PH4 - PIN4 (analog).
+ * PH5 - PIN5 (analog).
+ * PH6 - PIN6 (analog).
+ * PH7 - PIN7 (analog).
+ * PH8 - PIN8 (analog).
+ * PH9 - PIN9 (analog).
+ * PH10 - PIN10 (analog).
+ * PH11 - PIN11 (analog).
+ * PH12 - PIN12 (analog).
+ * PH13 - PIN13 (analog).
+ * PH14 - PIN14 (analog).
+ * PH15 - PIN15 (analog).
*/
#define VAL_GPIOH_MODER (PIN_MODE_ANALOG(GPIOH_PIN0) | \
PIN_MODE_ANALOG(GPIOH_PIN1) | \
- PIN_MODE_INPUT(GPIOH_PIN2) | \
+ PIN_MODE_ANALOG(GPIOH_PIN2) | \
PIN_MODE_INPUT(GPIOH_PIN3) | \
- PIN_MODE_INPUT(GPIOH_PIN4) | \
- PIN_MODE_INPUT(GPIOH_PIN5) | \
- PIN_MODE_INPUT(GPIOH_PIN6) | \
- PIN_MODE_INPUT(GPIOH_PIN7) | \
- PIN_MODE_INPUT(GPIOH_PIN8) | \
- PIN_MODE_INPUT(GPIOH_PIN9) | \
- PIN_MODE_INPUT(GPIOH_PIN10) | \
- PIN_MODE_INPUT(GPIOH_PIN11) | \
- PIN_MODE_INPUT(GPIOH_PIN12) | \
- PIN_MODE_INPUT(GPIOH_PIN13) | \
- PIN_MODE_INPUT(GPIOH_PIN14) | \
- PIN_MODE_INPUT(GPIOH_PIN15))
+ PIN_MODE_ANALOG(GPIOH_PIN4) | \
+ PIN_MODE_ANALOG(GPIOH_PIN5) | \
+ PIN_MODE_ANALOG(GPIOH_PIN6) | \
+ PIN_MODE_ANALOG(GPIOH_PIN7) | \
+ PIN_MODE_ANALOG(GPIOH_PIN8) | \
+ PIN_MODE_ANALOG(GPIOH_PIN9) | \
+ PIN_MODE_ANALOG(GPIOH_PIN10) | \
+ PIN_MODE_ANALOG(GPIOH_PIN11) | \
+ PIN_MODE_ANALOG(GPIOH_PIN12) | \
+ PIN_MODE_ANALOG(GPIOH_PIN13) | \
+ PIN_MODE_ANALOG(GPIOH_PIN14) | \
+ PIN_MODE_ANALOG(GPIOH_PIN15))
#define VAL_GPIOH_OTYPER (PIN_OTYPE_PUSHPULL(GPIOH_PIN0) | \
PIN_OTYPE_PUSHPULL(GPIOH_PIN1) | \
PIN_OTYPE_PUSHPULL(GPIOH_PIN2) | \
diff --git a/os/hal/boards/ST_NUCLEO144_L4R5ZI/cfg/board.chcfg b/os/hal/boards/ST_NUCLEO144_L4R5ZI/cfg/board.chcfg
index 2103534bc..2c506d1e5 100644
--- a/os/hal/boards/ST_NUCLEO144_L4R5ZI/cfg/board.chcfg
+++ b/os/hal/boards/ST_NUCLEO144_L4R5ZI/cfg/board.chcfg
@@ -1,470 +1,1483 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- STM32F4xx board Template -->
<board
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://www.chibios.org/xml/schema/boards/stm32l4xx_board.xsd">
- <configuration_settings>
- <templates_path>resources/gencfg/processors/boards/stm32l4xx/templates</templates_path>
- <output_path>..</output_path>
- <hal_version>5.0.x</hal_version>
- </configuration_settings>
- <board_name>STMicroelectronics STM32 Nucleo144-L4R5ZI</board_name>
- <board_id>ST_NUCLEO144_L4R5ZI</board_id>
- <board_functions></board_functions>
- <headers></headers>
- <subtype>STM32L4R5xx</subtype>
- <clocks HSEFrequency="0" HSEBypass="false" LSEFrequency="0"
- LSEBypass="false" LSEDrive="3 High Drive (default)" VDD="300" />
- <ports>
- <GPIOA>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin8 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="10" ID="USB_SOF" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="USB_VBUS" Resistor="PullUp"
- Mode="Input" Level="Low" />
- <pin10 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="10" ID="USB_ID" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin11 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="10" ID="USB_DM" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin12 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="10" ID="USB_DP" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin13 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="SWDIO" Resistor="PullDown"
- Mode="Alternate" Level="Low" />
- <pin14 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="SWCLK" Resistor="PullUp"
- Mode="Alternate" Level="Low" ></pin14>
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOA>
- <GPIOB>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="SWO" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="LED2 LED_BLUE" Resistor="Floating"
- Mode="Output" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="LED3 LED_RED" Resistor="Floating"
- Mode="Output" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOB>
- <GPIOC>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="LED1 LED_GREEN" Resistor="Floating"
- Mode="Output" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="BUTTON" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOC>
- <GPIOD>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOD>
- <GPIOE>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOE>
- <GPIOF>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOF>
- <GPIOG>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="USB_OVER_CURRENT" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin6 Type="PushPull" Speed="Maximum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="USB_POWER_SWITCH_ON" Resistor="Floating"
- Mode="Output" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="8" ID="LPUART1_TX" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="8" ID="LPUART1_RX" Resistor="Floating"
- Mode="Alternate" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOG>
- <GPIOH>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Input" Level="Low" />
- </GPIOH>
- <GPIOI>
- <pin0 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin1 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin2 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin3 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin4 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin5 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin6 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin7 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin8 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin9 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin10 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin11 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin12 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin13 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin14 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- <pin15 Type="PushPull" Speed="Minimum" AnalogSwitch="Disabled"
- PinLock="Disabled" Alternate="0" ID="" Resistor="Floating"
- Mode="Analog" Level="Low" />
- </GPIOI>
- </ports>
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="http://www.chibios.org/xml/schema/boards/stm32l4xx_board.xsd">
+ <configuration_settings>
+ <templates_path>resources/gencfg/processors/boards/stm32l4xx/templates</templates_path>
+ <output_path>..</output_path>
+ <hal_version>5.0.x</hal_version>
+ </configuration_settings>
+ <board_name>STMicroelectronics STM32 Nucleo144-L4R5ZI</board_name>
+ <board_id>ST_NUCLEO144_L4R5ZI</board_id>
+ <board_functions></board_functions>
+ <headers></headers>
+ <subtype>STM32L4R5xx</subtype>
+ <clocks
+ HSEFrequency="0"
+ HSEBypass="false"
+ LSEFrequency="0"
+ LSEBypass="false"
+ LSEDrive="3 High Drive (default)"
+ VDD="300" />
+ <ports>
+ <GPIOA>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="10"
+ ID="USB_SOF"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="USB_VBUS"
+ Resistor="PullUp"
+ Mode="Input"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="10"
+ ID="USB_ID"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="10"
+ ID="USB_DM"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="10"
+ ID="USB_DP"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="SWDIO"
+ Resistor="PullDown"
+ Mode="Alternate"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="SWCLK"
+ Resistor="PullUp"
+ Mode="Alternate"
+ Level="Low"></pin14>
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOA>
+ <GPIOB>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="SWO"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="LED2 LED_BLUE"
+ Resistor="Floating"
+ Mode="Output"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="LED3 LED_RED"
+ Resistor="Floating"
+ Mode="Output"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOB>
+ <GPIOC>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="LED1 LED_GREEN"
+ Resistor="Floating"
+ Mode="Output"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="BUTTON"
+ Resistor="Floating"
+ Mode="Input"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOC>
+ <GPIOD>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOD>
+ <GPIOE>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOE>
+ <GPIOF>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOF>
+ <GPIOG>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="USB_OVER_CURRENT"
+ Resistor="Floating"
+ Mode="Input"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Maximum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID="USB_POWER_SWITCH_ON"
+ Resistor="Floating"
+ Mode="Output"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="8"
+ ID="LPUART1_TX"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="8"
+ ID="LPUART1_RX"
+ Resistor="Floating"
+ Mode="Alternate"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOG>
+ <GPIOH>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Input"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOH>
+ <GPIOI>
+ <pin0
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin1
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin2
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin3
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin4
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin5
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin6
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin7
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin8
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin9
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin10
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin11
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin12
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin13
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin14
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ <pin15
+ Type="PushPull"
+ Speed="Minimum"
+ AnalogSwitch="Disabled"
+ PinLock="Disabled"
+ Alternate="0"
+ ID=""
+ Resistor="Floating"
+ Mode="Analog"
+ Level="Low" />
+ </GPIOI>
+ </ports>
</board>