Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
初次使用RT~Thread,请多指教!
发布于 2011-02-19 23:11:21 浏览:4076
订阅该版
刚接触到这个系统,移植到at91sam7se32开发板上了!可是pit就是不进中断,那那位大侠支个招!谢过啦! [s:175]
查看更多
4
个回答
默认排序
按发布时间排序
weety
2011-02-23
这家伙很懒,什么也没写!
下面是我驱动at91sam9260的pit代码,你可以参考一下。 ``` #define PIT_CPIV(x) ((x) & AT91_PIT_CPIV) #define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20) static rt_uint32_t pit_cycle; /* write-once */ static rt_uint32_t pit_cnt; /* access only w/system irq blocked */ /** * This function will handle rtos timer */ void rt_timer_handler(int vector) { if (at91_sys_read(AT91_PIT_SR) & AT91_PIT_PITS) { unsigned nr_ticks; /* Get number of ticks performed before irq, and ack it */ nr_ticks = PIT_PICNT(at91_sys_read(AT91_PIT_PIVR)); do { pit_cnt += pit_cycle; rt_tick_increase(); nr_ticks--; } while (nr_ticks); } } static void at91sam926x_pit_reset(void) { /* Disable timer and irqs */ at91_sys_write(AT91_PIT_MR, 0); /* Clear any pending interrupts, wait for PIT to stop counting */ while (PIT_CPIV(at91_sys_read(AT91_PIT_PIVR)) != 0) ; /* Start PIT but don't enable IRQ */ pit_cnt += pit_cycle * PIT_PICNT(at91_sys_read(AT91_PIT_PIVR)); at91_sys_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN | AT91_PIT_PITIEN); } /* * Set up both clocksource and clockevent support. */ static void at91sam926x_pit_init(void) { rt_uint32_t pit_rate; rt_uint32_t bits; /* * Use our actual MCK to figure out how many MCK/16 ticks per * 1/HZ period (instead of a compile-time constant LATCH). */ pit_rate = clk_get_rate(clk_get("mck")) / 16; rt_kprintf("pit_rate=%dHZ ", pit_rate); pit_cycle = (pit_rate + RT_TICK_PER_SECOND/2) / RT_TICK_PER_SECOND; /* Initialize and enable the timer */ at91sam926x_pit_reset(); } /** * This function will init timer0 for system ticks */ void rt_hw_timer_init() { at91sam926x_pit_init(); /* install interrupt handler */ rt_hw_interrupt_install(AT91_ID_SYS, rt_timer_handler, RT_NULL); rt_hw_interrupt_umask(AT91_ID_SYS); } ```
bernard
2011-02-23
这家伙很懒,什么也没写!
``` /** * This function will handle rtos timer */ void rt_timer_handler(int vector) { if (at91_sys_read(AT91_PIT_SR) & AT91_PIT_PITS) { unsigned nr_ticks; /* Get number of ticks performed before irq, and ack it */ nr_ticks = PIT_PICNT(at91_sys_read(AT91_PIT_PIVR)); do { pit_cnt += pit_cycle; rt_tick_increase(); nr_ticks--; } while (nr_ticks); } } ``` 为什么timer部分需要做一个while (nr_ticks)的循环?它会一次计数多个值?通常在RTOS中,OS Timer会被配置成每隔5ms或10ms一个中断(即一个OS Tick增长)。AT91SAM9260会是一次增长多个tick?
weety
2011-02-23
这家伙很懒,什么也没写!
AT91SAM9260的PIT计数器分为高12bit和低20bit,PIT每一个时钟脉冲计数器低20bit会自动加1,当低20bit计数值达到设定的计数值时低20bit清零,高12bit加1,并触发中断。中断产生时需要读取PIVR寄存器使高12bit清零,但是低20bit的内容不变。 这里的中断代码是从linux系统中移植过来的,做了些简化,这个while循环保留了,其实是不需要加这个while()循环的,只需要添加读取PIVR寄存器的代码即可。
撰写答案
登录
注册新账号
关注者
0
被浏览
4.1k
关于作者
zjz1337923
这家伙很懒,什么也没写!
提问
2
回答
2
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
RTT串口查找函数使用过程中遇到的问题。
2
RT-Thread CI编译产物artifacts自动上传功能介绍
3
STM32G030移植RT-Thread
4
CubeMX & RT-Thread Studio 联合开发说明
5
RT-Thread项目助手v0.3 | Ubuntu与MacOS平台的RT-Thread Env
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
rt-smart
RTC
FAL
I2C_IIC
cubemx
ESP8266
UART
WIZnet_W5500
ota在线升级
PWM
BSP
flash
freemodbus
packages_软件包
潘多拉开发板_Pandora
GD32
定时器
ADC
flashDB
编译报错
socket
中断
rt_mq_消息队列_msg_queue
keil_MDK
Debug
SFUD
ulog
msh
C++_cpp
MicroPython
本月问答贡献
出出啊
1522
个答案
343
次被采纳
小小李sunny
1444
个答案
290
次被采纳
张世争
815
个答案
179
次被采纳
crystal266
555
个答案
162
次被采纳
whj467467222
1222
个答案
149
次被采纳
本月文章贡献
出出啊
1
篇文章
2
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
3
次点赞
crystal266
2
篇文章
1
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部