加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pxa255_TIMR.h 603 Bytes
一键复制 编辑 原始数据 按行查看 历史
Takuya ASADA 提交于 2013-04-21 19:33 . support case sensitive build
#ifndef _PXA255_TIMR_H_
#define _PXA255_TIMR_H_
#include "mem.h"
#include "CPU.h"
#include "pxa255_IC.h"
/*
PXA255 OS timers controller
PURRPOSE: timers are useful for stuff :)
*/
#define PXA255_TIMR_BASE 0x40A00000UL
#define PXA255_TIMR_SIZE 0x00010000UL
typedef struct{
Pxa255ic* ic;
UInt32 OSMR[4]; //Match Register 0-3
UInt32 OIER; //Interrupt Enable
UInt32 OWER; //Watchdog enable
UInt32 OSCR; //Counter Register
UInt32 OSSR; //Status Register
}Pxa255timr;
Boolean pxa255timrInit(Pxa255timr* timr, ArmMem* physMem, Pxa255ic* ic);
void pxa255timrTick(Pxa255timr* timr);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化