From 25e3259da0d8af88932f809a385b74a86c6cdbb3 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Thu, 17 Apr 2014 23:57:12 +0200 Subject: [PATCH] Comments and typo --- core/system.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/system.c b/core/system.c index d2c2872..1768a66 100644 --- a/core/system.c +++ b/core/system.c @@ -278,6 +278,8 @@ void clkout_off(void) } +/***************************************************************************** */ +/* Default sleep function */ /***************************************************************************** */ /* Note that if the systick core functions are used these will be overridden */ @@ -302,5 +304,5 @@ static inline void def_usleep(uint32_t us) } void msleep(uint32_t ms) __attribute__ ((weak, alias ("def_msleep"))); -void usleep(uint32_t ms) __attribute__ ((weak, alias ("def_usleep"))); +void usleep(uint32_t us) __attribute__ ((weak, alias ("def_usleep"))); -- 2.43.0