aboutsummaryrefslogtreecommitdiffstats
path: root/include/clock.h
blob: 9d4b17a838cfe79be212e39d7fea1d0b492371e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CLOCK_H_
#define CLOCK_H_

#include <stdint.h>

/**
 * Sets HCLK (system clock) to 80MHz, the maximum.
 */
extern void clock_init(void);

/**
 * Sleeps for given milliseconds.
 */
void delay(uint32_t ms);

#endif // CLOCK_H_