Browse Source

[DeviceDriver][RTC] fixed warning when only enable finsh shell: function "date" was declared but never referenced

liang yongxiang 7 years ago
parent
commit
2f5a9c37fa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/drivers/rtc/rtc.c

+ 2 - 2
components/drivers/rtc/rtc.c

@@ -247,7 +247,7 @@ FINSH_FUNCTION_EXPORT(list_date, show date and time.)
 FINSH_FUNCTION_EXPORT(set_date, set date. e.g: set_date(2010,2,28))
 FINSH_FUNCTION_EXPORT(set_date, set date. e.g: set_date(2010,2,28))
 FINSH_FUNCTION_EXPORT(set_time, set time. e.g: set_time(23,59,59))
 FINSH_FUNCTION_EXPORT(set_time, set time. e.g: set_time(23,59,59))
 
 
-#if defined(RT_USING_FINSH)
+#if defined(RT_USING_FINSH) && defined(FINSH_USING_MSH)
 static void date(uint8_t argc, char **argv)
 static void date(uint8_t argc, char **argv)
 {
 {
     if (argc == 1)
     if (argc == 1)
@@ -308,6 +308,6 @@ static void date(uint8_t argc, char **argv)
     }
     }
 }
 }
 MSH_CMD_EXPORT(date, get date and time or set [year month day hour min sec]);
 MSH_CMD_EXPORT(date, get date and time or set [year month day hour min sec]);
-#endif /* defined(RT_USING_FINSH) */
+#endif /* defined(RT_USING_FINSH) && defined(FINSH_USING_MSH) */
 
 
 #endif /* RT_USING_FINSH */
 #endif /* RT_USING_FINSH */