Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
设备驱动
RISC-V_milk-v_CV1800B
risc-v_RISCV
MilkV Duo RT-Thread HWtimer 对接
发布于 2024-07-01 00:00:43 浏览:289
订阅该版
参考官方[datasheet](https://github.com/milkv-duo/duo-files/blob/main/duo/datasheet/CV1800B-CV1801B-Preliminary-Datasheet-full-en.pdf) 针对 RT-Thread 设备驱动,需要对接以下方法 ```c static const struct rt_hwtimer_ops _hwtimer_ops = { .init = _hwtimer_init, .start = _hwtimer_start, .stop = _hwtimer_stop, .count_get = _hwtimer_count_get, .control = _hwtimer_control }; ``` 基于操作寄存器的 hwtimer 驱动来自于 [sophgo/cvi_alios_open ](https://github.com/sophgo/cvi_alios_open) 本文主要记录一些需要注意的细节: - datasheet 中指明:系统 Timer 可选 25MHz /32KHz 计数时钟。使用 reg_timer_clk_sel 做选择。因此驱动中只有两个定时器频率可选,当前默认使用 25MHz - 大小核中断号不一致,当前官方[datasheet](https://github.com/milkv-duo/duo-files/blob/main/duo/datasheet/CV1800B-CV1801B-Preliminary-Datasheet-full-en.pdf)中的中断表为大核中断号,小核中断号在[ Milk-V Duo Official buildroot SDK ](https://github.com/milkv-duo/duo-buildroot-sdk)文件中查看:duo-buildroot-sdk/freertos/cvitek/hal/cv180x/config/intr_conf.h - 由于小核只有Timer4~7有对应的中断号,因此只对接了Timer4~7的设备驱动,大核具备Timer0~7完整的中断号,因此小核 board/Kconfig 文件添加如下: ``` menuconfig BSP_USING_HWTIMER bool "Enable HWTIMER" default n select RT_USING_HWTIMER if BSP_USING_HWTIMER config BSP_USING_TIMER4 bool "Enable HWTIMER4" default n config BSP_USING_TIMER5 bool "Enable HWTIMER5" default n config BSP_USING_TIMER6 bool "Enable HWTIMER6" default n config BSP_USING_TIMER7 bool "Enable HWTIMER7" default n if SOC_TYPE_CV180X config TIMER_IRQ_BASE int default 51 endif if SOC_TYPE_SG2002 config TIMER_IRQ_BASE int default 55 endif endif ``` 大核 board/Kconfig 文件添加如下: ``` menuconfig BSP_USING_HWTIMER bool "Enable HWTIMER" default n select RT_USING_HWTIMER if BSP_USING_HWTIMER config BSP_USING_TIMER0 bool "Enable HWTIMER0" default n config BSP_USING_TIMER1 bool "Enable HWTIMER1" default n config BSP_USING_TIMER2 bool "Enable HWTIMER2" default n config BSP_USING_TIMER3 bool "Enable HWTIMER4" default n config BSP_USING_TIMER4 bool "Enable HWTIMER4" default n config BSP_USING_TIMER5 bool "Enable HWTIMER5" default n config BSP_USING_TIMER6 bool "Enable HWTIMER6" default n config BSP_USING_TIMER7 bool "Enable HWTIMER7" default n if SOC_TYPE_CV180X config TIMER_IRQ_BASE int default 80 endif if SOC_TYPE_SG2002 config TIMER_IRQ_BASE int default 79 endif endif ```
0
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
螺丝松掉的人
这家伙很懒,什么也没写!
文章
42
回答
0
被采纳
0
关注TA
发私信
相关文章
1
让成员函数能作为rt_device中的回调函数
2
关于设备配置时延时的处理
3
rt_device_set_rx_indicate设置的回调如何传递参数?
4
关于 输入捕获 驱动的
5
关于设备驱动的迷茫与疑惑
6
关于rtthread中各种驱动的问题
7
drv_hwtimer 和hwtimer关系是啥?
8
RTT有没有接口文档,可以用于写一些自己创建的设备的这些文档?
9
i2c设备驱动为什么没有速率设置
10
UART设备中断接收及轮询发送
推荐文章
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组件
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
7
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部