Skip to content

Commit

Permalink
board/novacustom/v5*: set GPA1 pin to alt fn
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Kopeć <[email protected]>
  • Loading branch information
mkopec committed Sep 12, 2024
1 parent 8ed4199 commit d3744e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/board/novacustom/v540tnx/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void gpio_init(void) {
// EC_PWM_LEDKB_P
GPCRA0 = GPIO_ALT;
// KBC_BEEP
GPCRA1 = GPIO_IN;
GPCRA1 = GPIO_ALT;
// CPU_FAN
GPCRA2 = GPIO_ALT;
// VGA_FAN
Expand Down
2 changes: 1 addition & 1 deletion src/board/novacustom/v540tu/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void gpio_init(void) {
// EC_PWM_LEDKB_P
GPCRA0 = GPIO_ALT;
// KBC_BEEP
GPCRA1 = GPIO_IN;
GPCRA1 = GPIO_ALT;
// CPU_FAN1
GPCRA2 = GPIO_ALT;
// CPU_FAN2
Expand Down
2 changes: 1 addition & 1 deletion src/board/novacustom/v560tnx/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void gpio_init(void) {
// EC_PWM_LEDKB_P
GPCRA0 = GPIO_ALT;
// KBC_BEEP
GPCRA1 = GPIO_IN;
GPCRA1 = GPIO_ALT;
// CPU_FAN
GPCRA2 = GPIO_ALT;
// VGA_FAN
Expand Down
2 changes: 1 addition & 1 deletion src/board/novacustom/v560tu/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void gpio_init(void) {
// EC_PWM_LEDKB_P
GPCRA0 = GPIO_ALT;
// KBC_BEEP
GPCRA1 = GPIO_IN;
GPCRA1 = GPIO_ALT;
// CPU_FAN1
GPCRA2 = GPIO_ALT;
// CPU_FAN2
Expand Down

0 comments on commit d3744e1

Please sign in to comment.