Skip to content

Commit

Permalink
fix(pl18): USB detect pin can be uninitialized in bootloader (#4891)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardclli authored and pfeerick committed Apr 22, 2024
1 parent bb1d76c commit 6d68b62
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
14 changes: 14 additions & 0 deletions radio/src/targets/pl18/board.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include "stm32_adc.h"

#include "stm32_gpio_driver.h"
#include "stm32_ws2812.h"
#include "boards/generic_stm32/rgb_leds.h"

Expand Down Expand Up @@ -98,6 +99,19 @@ void ledStripOff()
ws2812_update(&_led_timer);
}

void boardBootloaderInit()
{
// USB charger status pins
stm32_gpio_enable_clock(UCHARGER_GPIO);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_InitStructure.GPIO_Pin = UCHARGER_GPIO_PIN;
GPIO_Init(UCHARGER_GPIO, &GPIO_InitStructure);
}

void boardInit()
{
#if defined(SEMIHOSTING)
Expand Down
4 changes: 4 additions & 0 deletions radio/src/targets/pl18/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ extern uint16_t sessionTimer;

#define SLAVE_MODE() (g_model.trainerData.mode == TRAINER_MODE_SLAVE)

// Initilizes the board for the bootloader
#define HAVE_BOARD_BOOTLOADER_INIT 1
void boardBootloaderInit();

// Board driver
void boardInit();
void boardOff();
Expand Down

0 comments on commit 6d68b62

Please sign in to comment.