Skip to content

Commit

Permalink
Configure SDRAM CLK IO with pull-down. (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihuanhuan authored Aug 14, 2024
1 parent e4271a2 commit 198d122
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/embed/trezorhal/sdram.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ int sdram_gpio_reinit(void) {
HAL_GPIO_Init(GPIOI, &gpio_init_structure);

gpio_init_structure.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
gpio_init_structure.Pull = GPIO_PULLDOWN;
gpio_init_structure.Pin = GPIO_PIN_8;

HAL_GPIO_Init(GPIOG, &gpio_init_structure);
Expand Down

0 comments on commit 198d122

Please sign in to comment.