diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/boards/ST_STM32L4R9I_DISCOVERY/board.h | 6 | ||||
-rw-r--r-- | os/hal/boards/ST_STM32L4R9I_DISCOVERY/cfg/board.chcfg | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/os/hal/boards/ST_STM32L4R9I_DISCOVERY/board.h b/os/hal/boards/ST_STM32L4R9I_DISCOVERY/board.h index a37faf8dd..07a5d09bd 100644 --- a/os/hal/boards/ST_STM32L4R9I_DISCOVERY/board.h +++ b/os/hal/boards/ST_STM32L4R9I_DISCOVERY/board.h @@ -1347,7 +1347,7 @@ * PH1 - OSC_OUT (analog).
* PH2 - PIN2 (analog).
* PH3 - BOOT0 (input floating).
- * PH4 - LED LED_GREEN (output pushpull minimum).
+ * PH4 - LED LED_GREEN (output pushpull maximum).
* PH5 - PIN5 (analog).
* PH6 - PIN6 (analog).
* PH7 - PIN7 (analog).
@@ -1396,7 +1396,7 @@ PIN_OSPEED_VERYLOW(GPIOH_OSC_OUT) | \
PIN_OSPEED_VERYLOW(GPIOH_PIN2) | \
PIN_OSPEED_VERYLOW(GPIOH_BOOT0) | \
- PIN_OSPEED_VERYLOW(GPIOH_LED) | \
+ PIN_OSPEED_HIGH(GPIOH_LED) | \
PIN_OSPEED_VERYLOW(GPIOH_PIN5) | \
PIN_OSPEED_VERYLOW(GPIOH_PIN6) | \
PIN_OSPEED_VERYLOW(GPIOH_PIN7) | \
@@ -1428,7 +1428,7 @@ PIN_ODR_LOW(GPIOH_OSC_OUT) | \
PIN_ODR_LOW(GPIOH_PIN2) | \
PIN_ODR_LOW(GPIOH_BOOT0) | \
- PIN_ODR_LOW(GPIOH_LED) | \
+ PIN_ODR_HIGH(GPIOH_LED) | \
PIN_ODR_LOW(GPIOH_PIN5) | \
PIN_ODR_LOW(GPIOH_PIN6) | \
PIN_ODR_LOW(GPIOH_PIN7) | \
diff --git a/os/hal/boards/ST_STM32L4R9I_DISCOVERY/cfg/board.chcfg b/os/hal/boards/ST_STM32L4R9I_DISCOVERY/cfg/board.chcfg index 9befa853e..716a19662 100644 --- a/os/hal/boards/ST_STM32L4R9I_DISCOVERY/cfg/board.chcfg +++ b/os/hal/boards/ST_STM32L4R9I_DISCOVERY/cfg/board.chcfg @@ -1198,14 +1198,14 @@ Level="Low" ></pin3>
<pin4
Type="PushPull"
- Speed="Minimum"
+ Speed="Maximum"
AnalogSwitch="Disabled"
PinLock="Disabled"
Alternate="0"
ID="LED LED_GREEN"
Resistor="Floating"
Mode="Output"
- Level="Low" />
+ Level="High" />
<pin5
Type="PushPull"
Speed="Minimum"
|