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