Appiko
main.c
1 /*
2  * main.c : Application to blink LED
3  * Copyright (C) 2019 Appiko
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
28 #include <stdbool.h>
29 #include <stdint.h>
30 #include "hal_nop_delay.h"
31 #include "hal_gpio.h"
32 #include "boards.h"
33 
37 int main(void){
38  /* Configure the LED 1 as output. */
39  hal_gpio_cfg_output(LED_1, 1);
40 
41  /* Toggle LED 1 after every 500 ms */
42  while (true){
43  hal_gpio_pin_toggle(LED_1);
44  hal_nop_delay_ms(500);
45  }
46 }
47 
int main(void)
Function for application main entry.
Definition: main.c:90