2020-04-06 09:19:53 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-04-06 13:28:56 +00:00
|
|
|
#include "../include/gpio.h"
|
|
|
|
#include "../include/utils.h"
|
2020-04-06 09:19:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
while (1) {
|
|
|
|
GPIO_REG(GPIO_DATA) ^= 0x1;
|
2020-04-11 11:03:49 +00:00
|
|
|
busy_wait(500 * 1000); // delay 500ms
|
2020-04-06 09:19:53 +00:00
|
|
|
}
|
|
|
|
}
|