Skip to content

Commit

Permalink
stm32/cyw43_configport: Add cyw43_sdio_enable_high_speed_4bit function.
Browse files Browse the repository at this point in the history
Needed by the latest version of cyw43-driver.
  • Loading branch information
iabdalkader authored and dpgeorge committed Mar 7, 2023
1 parent 64556ca commit e764bf0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ports/stm32/cyw43_configport.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ static inline void cyw43_sdio_set_irq(bool enable) {
sdio_enable_irq(enable);
}

static inline void cyw43_sdio_enable_high_speed_4bit(void) {
sdio_enable_high_speed_4bit();
}

static inline int cyw43_sdio_transfer(uint32_t cmd, uint32_t arg, uint32_t *resp) {
return sdio_transfer(cmd, arg, resp);
}
Expand Down

0 comments on commit e764bf0

Please sign in to comment.