Created
April 17, 2020 15:28
-
-
Save dheeptuck/250ed36fdb3ae78133c1645fd92eebdb to your computer and use it in GitHub Desktop.
Bare metal LED blink
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() | |
{ | |
while(1) | |
{ | |
LED1_TURN_ON(); | |
LED2_TURN_ON(); | |
delay_seconds(1); | |
LED1_TURN_OFF(); | |
delay_seconds(1); | |
LED1_TURN_ON(); | |
LED2_TURN_OFF(); | |
delay_seconds(1); | |
LED1_TURN_OFF(); | |
delay_seconds(1); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment