-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmain.c
41 lines (31 loc) · 800 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* main.c
*
* author: Furkan Cayci
*
* description: Blinks 1 on-board LED at roughly 1 second intervals. system
* clock is running from HSI which is 16 Mhz. Delay function is just a simple
* counter so is not accurate and the delay time will change based on the
* optimization flags.
*/
#include "stm32g0xx.h"
#define LEDDELAY 1600000
void delay(volatile uint32_t);
int main(void) {
/* Enable GPIOC clock */
RCC->IOPENR |= (1U << 2);
/* Setup PC6 as output */
GPIOC->MODER &= ~(3U << 2*6);
GPIOC->MODER |= (1U << 2*6);
/* Turn on LED */
GPIOC->ODR |= (1U << 6);
while(1) {
delay(LEDDELAY);
/* Toggle LED */
GPIOC->ODR ^= (1U << 6);
}
return 0;
}
void delay(volatile uint32_t s) {
for(; s>0; s--);
}