使用超核库调试KL25 UART发现的疑问与解决过程
提示这是一个只读变量,不能写入。我跟踪到MKL25Z4.h里面发现,UART_Type结构体里面S1被定义为__I,
而__I的宏定义如下,就是用来定义一个只读的类型:
#define __I volatile const /*!< defines 'read only' permissions */
似乎这是两个地方起冲突了。原因在哪呢?
MKL25Z4.h这个文件是KEIL里自带的,不大可能会出错。但是
在参考手册上面显示,这个低5位其实是可以读写的,w1c的意思是写1清0。两个地方都没问题?
仔细看MKL25Z4.h里UART相关的部分,发现了另一个类似的结构体UART0_Type
看来问题出在这里,UART0是要跟其他的串口模块有区分开来。
下图是除UART0以外的其他串口模块S1这个寄存器的情况,全是只读的。
所以,编程的时候UART0与其他的模块要区分一下。OK,问题解决。
其实,UART0的结构体在头文件中有自己的定义:
typedef struct {
__IO uint8_t BDH; /**< UART Baud Rate Register High, offset: 0x0 */
__IO uint8_t BDL; /**< UART Baud Rate Register Low, offset: 0x1 */
__IO uint8_t C1; /**< UART Control Register 1, offset: 0x2 */
__IO uint8_t C2; /**< UART Control Register 2, offset: 0x3 */
__IO uint8_t S1; /**< UART Status Register 1, offset: 0x4 */
__IO uint8_t S2; /**< UART Status Register 2, offset: 0x5 */
__IO uint8_t C3; /**< UART Control Register 3, offset: 0x6 */
__IO uint8_t D; /**< UART Data Register, offset: 0x7 */
__IO uint8_t MA1; /**< UART Match Address Registers 1, offset: 0x8 */
__IO uint8_t MA2; /**< UART Match Address Registers 2, offset: 0x9 */
__IO uint8_t C4; /**< UART Control Register 4, offset: 0xA */
__IO uint8_t C5; /**< UART Control Register 5, offset: 0xB */
} UART0_Type;
小编也可以参考下官方KL25的例程