From: Nathael Pajani Date: Thu, 17 Apr 2014 21:57:12 +0000 (+0200) Subject: Comments and typo X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=25e3259da0d8af88932f809a385b74a86c6cdbb3;p=soft%2Flpc122x%2Fcore Comments and typo --- 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")));