This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于ZigBee mesh1.0的LCD与KEY的屏蔽问题

Other Parts Discussed in Thread: CC2530

各位专家好,

先说背景:原项目由前工程师开发(已离职),版本为2.5.1a+CC2530。考虑到版本较老,准备更新为mesh1.0;

应用场合:一个协调器配合多个路由,用于光伏系统数据传输;

主要功能:串口数据透传以及NV数据存储;

问:

应用无需按键和LCD,所以我在hal_board_cfg.h下做了如下屏蔽:

/* Set to TRUE enable LCD usage, FALSE disable it */
#ifndef HAL_LCD
//  #define HAL_LCD TRUE
#define xHAL_LCD TRUE
#endif

......

/* Set to TRUE enable KEY usage, FALSE disable it */
#ifndef HAL_KEY
//   #define HAL_KEY TRUE
#define xHAL_KEY TRUE
#endif

这样操作是否正确?对路由的正常功能是否有影响?

盼回复,多谢!