c语言读取寄存器,c语言自定义寄存器操作的一些方法

  • Post author:
  • Post category:其他


1 寄存器地址的定义:

#define UART_BASE_ADRS (0x10000000)     /* 串口的基地址 */

#define UART_RHR *(volatile unsigned char *)(UART_BASE_ADRS + 0)  /* 数据接受寄存器 */

#define UART_THR *(volatile unsigned char *)(UART_BASE_ADRS + 0)  /* 数据发送寄存器 */

2 寄存器读写操作:

UART_THR = ch; /* 发送数据 */

ch = UART_RHR; /* 接收数据 */

也可采用定义带参数宏实现

#define WRITE_REG(addr, ch) *(volatile unsigned char *)(addr) = ch

#define READ_REG(addr, ch) ch = *(volatile unsigned char *)(addr)

3 对寄存器相应位的操作方法:

定义寄存器

#define UART_LCR *(volatile unsigned char *)(UART_BASE_ADRS + 3)  /* 线控制寄存器 */

定义寄存器相应位的值

#define CHAR_LEN_5 0x00

#define CHAR_LEN_6 0x01

#define CHAR_LEN_7 0x02

#define CHAR_LEN_8 0x03    /* 8 data bit */

#define LCR_STB  0x04 /* Stop bit control */

#define ONE_STOP 0x00 /* One stop bit!