mirror of
https://github.com/dkgrizzly/GreenSCSI.git
synced 2024-11-22 04:31:03 +00:00
Use gpio_read
to toggle led state, saves 24 bytes of flash.
This commit is contained in:
parent
65cc6244a3
commit
83f040dc40
@ -535,9 +535,7 @@ void onFalseInit(void)
|
||||
LOG_FILE.sync();
|
||||
while(true) {
|
||||
for(int i = 0; i < 3; i++) {
|
||||
gpio_write(LED, high);
|
||||
delay(250);
|
||||
gpio_write(LED, low);
|
||||
gpio_write(LED, !gpio_read(LED));
|
||||
delay(250);
|
||||
}
|
||||
delay(3000);
|
||||
@ -551,9 +549,7 @@ void noSDCardFound(void)
|
||||
{
|
||||
while(true) {
|
||||
for(int i = 0; i < 5; i++) {
|
||||
gpio_write(LED, high);
|
||||
delay(250);
|
||||
gpio_write(LED, low);
|
||||
gpio_write(LED, !gpio_read(LED));
|
||||
delay(250);
|
||||
}
|
||||
delay(3000);
|
||||
|
Loading…
Reference in New Issue
Block a user