rename sensor_test to sensor_cmd

This commit is contained in:
guozhanxin 2019-02-13 15:07:11 +08:00
parent 37d0400739
commit b9937f076b
3 changed files with 5 additions and 5 deletions

View File

@ -245,8 +245,8 @@ config RT_USING_SENSOR
default n default n
if RT_USING_SENSOR if RT_USING_SENSOR
config RT_USING_SENSOR_TEST config RT_USING_SENSOR_CMD
bool "Use Sensor test" bool "Using Sensor cmd"
default y default y
endif endif

View File

@ -6,8 +6,8 @@ cwd = GetCurrentDir()
src = ['sensor.c'] src = ['sensor.c']
CPPPATH = [cwd, cwd + '/../include'] CPPPATH = [cwd, cwd + '/../include']
if GetDepend('RT_USING_SENSOR_TEST'): if GetDepend('RT_USING_SENSOR_CMD'):
src += ['sensor_test.c']; src += ['sensor_cmd.c'];
group = DefineGroup('Sensors', src, depend = ['RT_USING_SENSOR', 'RT_USING_DEVICE'], CPPPATH = CPPPATH) group = DefineGroup('Sensors', src, depend = ['RT_USING_SENSOR', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)

View File

@ -12,7 +12,7 @@
#define DBG_ENABLE #define DBG_ENABLE
#define DBG_LEVEL DBG_INFO #define DBG_LEVEL DBG_INFO
#define DBG_SECTION_NAME "sensor.test" #define DBG_SECTION_NAME "sensor.cmd"
#define DBG_COLOR #define DBG_COLOR
#include <rtdbg.h> #include <rtdbg.h>