Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
AVR32
已初步完成RT-Thread AVR32移植
发布于 2010-04-01 03:15:41 浏览:331
订阅该版
[s:154] 如题,已成功跑起点灯应用(移植自stm3210例程): ``` char thread_led1_stack[1024]; struct rt_thread thread_led1; static void rt_thread_entry_led1(void* parameter) { while (1) { /* led on */ rt_kprintf("led1 on "); gpio_tgl_gpio_pin(AVR32_PIN_PA08); rt_thread_delay(50); /* sleep 0.5 second and switch to other thread */ /* led off */ rt_kprintf("led1 off "); gpio_tgl_gpio_pin(AVR32_PIN_PA08); rt_thread_delay(50); } } char thread_led2_stack[1024]; struct rt_thread thread_led2; void rt_thread_entry_led2(void* parameter) { unsigned int count=0; while (1) { /* led on */ rt_kprintf("led2 on,count : %d ",count); count++; gpio_tgl_gpio_pin(AVR32_PIN_PA07); rt_thread_delay(RT_TICK_PER_SECOND); /* led off */ rt_kprintf("led2 off "); gpio_tgl_gpio_pin(AVR32_PIN_PA07); rt_thread_delay(RT_TICK_PER_SECOND); } } int rt_application_init() { /* create led1 thread */ rt_thread_init(&thread_led1, "led1", rt_thread_entry_led1, RT_NULL, &thread_led1_stack[0], sizeof(thread_led1_stack), 5, 5); rt_thread_startup(&thread_led1); //------- init led2 thread rt_thread_init(&thread_led2, "led2", rt_thread_entry_led2, RT_NULL, &thread_led2_stack[0], sizeof(thread_led2_stack),10,10); rt_thread_startup(&thread_led2); return 0; } ``` 正在写更深入测试的代码,例如中断抢占等压力测试。
0
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
gzhuli
这家伙很懒,什么也没写!
文章
1
回答
2
被采纳
0
关注TA
发私信
相关文章
推荐文章
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
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部