Skip to content

Commit

Permalink
enabling GPIOD clock for 96-chan sync out
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Oct 3, 2023
1 parent b12a69a commit e0d54f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pipettes/firmware/utility_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ static void enable_gpio_port(void* port) {
__HAL_RCC_GPIOB_CLK_ENABLE();
} else if (port == GPIOC) {
__HAL_RCC_GPIOC_CLK_ENABLE();
} else if (port == GPIOD) {
__HAL_RCC_GPIOD_CLK_ENABLE();
}
}

Expand Down

0 comments on commit e0d54f1

Please sign in to comment.