Переглянути джерело

[kernel] 裁剪尾随空格

guozhanxin 3 роки тому
батько
коміт
e562c6f24b
2 змінених файлів з 4 додано та 4 видалено
  1. 3 3
      src/clock.c
  2. 1 1
      src/components.c

+ 3 - 3
src/clock.c

@@ -46,7 +46,7 @@ RTM_EXPORT(rt_tick_get);
 
 
 /**
 /**
  * @brief    This function will set current tick
  * @brief    This function will set current tick
- * 
+ *
  * @param    tick is the value that you will set.
  * @param    tick is the value that you will set.
  */
  */
 void rt_tick_set(rt_tick_t tick)
 void rt_tick_set(rt_tick_t tick)
@@ -129,11 +129,11 @@ RTM_EXPORT(rt_tick_from_millisecond);
 
 
 /**
 /**
  * @brief    This function will return the passed millisecond from boot.
  * @brief    This function will return the passed millisecond from boot.
- * 
+ *
  * @note     When the value of RT_TICK_PER_SECOND is lower than 1000 or
  * @note     When the value of RT_TICK_PER_SECOND is lower than 1000 or
  *           is not an integral multiple of 1000, this function will not
  *           is not an integral multiple of 1000, this function will not
  *           provide the correct 1ms-based tick.
  *           provide the correct 1ms-based tick.
- * 
+ *
  * @return   Return passed millisecond from boot
  * @return   Return passed millisecond from boot
  */
  */
 RT_WEAK rt_tick_t rt_tick_get_millisecond(void)
 RT_WEAK rt_tick_t rt_tick_get_millisecond(void)

+ 1 - 1
src/components.c

@@ -199,7 +199,7 @@ void main_thread_entry(void *parameter)
 
 
 /**
 /**
  * @brief  This function will create and start the main thread, but this thread
  * @brief  This function will create and start the main thread, but this thread
- *         will not run until the scheduler starts. 
+ *         will not run until the scheduler starts.
  */
  */
 void rt_application_init(void)
 void rt_application_init(void)
 {
 {