NRF52832的编译环境遇到的问题记录

(1)安装的流程:安装keil4 keil5 keil5-a
破解keil4,破解keil5.
安装pack
(2)不要装中文路径,切记。
开始正文:
我要做一个Proptietary_rf协议下的Tx和Rx:
首先进入主函数:
第一行函数我的问题就来了:ret_code_t err_code; 定义一个err_code变量为ret_code的数据类型。
typedef uint32_t ret_code_t;
typedef unsigned int uint32_t;
意思是不是说err_code是一个uint32_t数据类型。
第二行:gpio_init();没问题
第三行:err_code = NRF_LOG_INIT(NULL);
#define NRF_LOG_INIT(timestamp_func) NRF_LOG_INTERNAL_INIT(timestamp_func)
#define NRF_LOG_INTERNAL_INIT(timestamp_func) NRF_SUCCESS
#define NRF_SUCCESS (NRF_ERROR_BASE_NUM + 0) ///< Successful command
#define NRF_ERROR_BASE_NUM (0x0) ///< Global error base

你可能感兴趣的:(NRF52832,Cortex,M,4的学习)