Skip to content

Commit

Permalink
bugfix switch case missed break
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-silabs committed Mar 16, 2023
1 parent cfbeec1 commit 7577f3d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ void rsi_hal_config_gpio(uint8_t gpio_number, uint8_t mode, uint8_t value)
break;
#else
GPIO_PinModeSet(LOGGING_WAKE_INDICATOR_PIN.port, LOGGING_WAKE_INDICATOR_PIN.pin, gpioModeWiredOrPullDown, PINOUT_CLEAR);
break;
#endif
case RSI_HAL_RESET_PIN:
GPIO_PinModeSet(WFX_RESET_PIN.port, WFX_RESET_PIN.pin, gpioModePushPull, PINOUT_SET);
Expand Down

0 comments on commit 7577f3d

Please sign in to comment.