📄 registers.h
字号:
/* * BSP registers declaration * * Copyright (c) 2000 Canon Research France SA. * Emmanuel Raguet, mailto:raguet@crf.canon.fr * * The license and distribution terms for this file may be * found in found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * */#ifndef __REGS_H__#define __REGS_H__ /* * VARIABLE DECLARATION */#ifndef __asm__extern volatile unsigned long *Regs; /* Chip registers */#endif/* * Here must be "defined" each register, to use with Regs as * LM_Regs[REGISTER1] = value */#define REGISTER1 1#define REGISTER2 2/* * define for UART registers to be able * to compile and link arm_bare_bsp */#define RSRBR 0#define RSTHR 1#define RSIER 2#define RSIIR 3#define RSFCR 4#define RSLCR 5#define RSLSR 6#define RSDLL 7#define RSDLH 8#define RSCNT 9#endif /*__REGS_H__*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -