Skip to content

Commit

Permalink
pulldown , bootloader delay
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmiriuta committed Oct 28, 2020
1 parent b6083d2 commit 2f52704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/system/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ void systemGpioInit(void) {

GPIO_InitStruct.Pin = INPUT_PIN;
GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
LL_GPIO_Init(INPUT_GPIO, &GPIO_InitStruct);
}

0 comments on commit 2f52704

Please sign in to comment.