From f27b19a531a61aa088d380174cc960b9f2e68237 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 20 Feb 2018 17:50:47 -0500 Subject: major work, own malloc, making things work --- include/clock.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/clock.h') 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); -- cgit v1.2.3