Skip to content

Commit

Permalink
BlueSCSI_platform_RP2040: partially revert LED change
Browse files Browse the repository at this point in the history
Somehow this broke booting on the Mac Plus, so for now turn them
into no-ops so booting works again
  • Loading branch information
jcs committed Aug 9, 2023
1 parent c954150 commit 12fe6bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/BlueSCSI_platform_RP2040/BlueSCSI_platform_gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@

// Status LED pins
//#define LED_PIN 25
#define LED_ON() cyw43_gpio_set(&cyw43_state, 0, true) //sio_hw->gpio_set = 1 << LED_PIN
#define LED_OFF() cyw43_gpio_set(&cyw43_state, 0, false) //sio_hw->gpio_clr = 1 << LED_PIN
#define LED_ON() (void)0 //cyw43_gpio_set(&cyw43_state, 0, true) //sio_hw->gpio_set = 1 << LED_PIN
#define LED_OFF() (void)0 //cyw43_gpio_set(&cyw43_state, 0, false) //sio_hw->gpio_clr = 1 << LED_PIN

// SDIO and SPI block
#define SD_SPI_SCK 10
Expand Down

0 comments on commit 12fe6bd

Please sign in to comment.