diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-20 17:50:47 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-20 17:50:47 -0500 |
commit | f27b19a531a61aa088d380174cc960b9f2e68237 (patch) | |
tree | 57830178579ee20dbc0c14b280fdbc7bd59a53a9 /include/clock.h | |
parent | b0cd81cf66c0e5b5d0d662384752337f6c69cde5 (diff) |
major work, own malloc, making things work
Diffstat (limited to 'include/clock.h')
-rw-r--r-- | include/clock.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/clock.h b/include/clock.h index 9d4b17a..77ab7e9 100644 --- a/include/clock.h +++ b/include/clock.h @@ -1,3 +1,8 @@ +/** + * @file clock.h + * Basic clock utilities + */ + #ifndef CLOCK_H_ #define CLOCK_H_ @@ -5,11 +10,13 @@ /** * Sets HCLK (system clock) to 80MHz, the maximum. + * @param none */ extern void clock_init(void); /** - * Sleeps for given milliseconds. + * Sleeps for given amount of milliseconds. + * @param ms number of milliseconds to sleep for */ void delay(uint32_t ms); |