SYS/BIOS实例分析
SYS/BIOS简介
创建一个SYS/BIOS项目
在项目模板中选择SYS/BIOS项目中的Hello Example模板,点击Next:
在RTSC(XDCtools的别称)配置页中选中需要的SYS/BIOS,XDCtools及其他组件的版本,Target保持默认,不需修改,如果Platform没有自动填充,选择与设备适用的平台。Build-profile决定程序链接的库,推荐使用release,即使仍然处于创建和调试阶段,点击Finish完成创建项目。
SYS/BIOS的模块与配置
SYS/BIOS可以用文本编辑器或者是图像配置编辑器XGCONF来编辑,双击打开.cfg文件:
单击System Overview,可以显示程序当前使用的主模块(带绿色小箭头的):
各种APIs模块的添加这里有两种方法,一种是直接双击主模板进入,然后勾选Add:
各个API模块的作用
在项目中导入LOG模块
LOG模块实际上是一个实现打印信息的API。
添加LOG模块,默认是自动添加的。
LOG模块定义了许多比如Log_error、Log_info、Log_warning、Log_print等之类函数,这些函数的用法同printf函数的用法很相似,这些函数都可以在<xdc/runtime/Log.h>找到,其实际上是将printf的有用法分成许多不同的类(如错误信息、提示信息、警告信息等),LOG模块打印的内容查看:
右下角会出现面板:
LOG中定义了许多如下的函数,比如Log_info1函数后面的数字代表函数接的变量数目,如:
Log_info1("%d",s1); Log_info2("%d, %d", s1, s2)
在项目中导入TSK任务模块
TSK任务模块是操作系统中最基本的模块,其实际上反映了多线程抢占,每个任务单独是一个线程,各个线程(任务)具有各自的优先级。
创建新任务,我们创建两个任务task0、task1,分别对应其函数func_tsk0、func_tsk1。其优先级都为1:
编写任务函数:
/*
* ======== hello.c ========
* The hello example serves as a basic sanity check program for SYS/BIOS. It
* demonstrates how to print the string "hello world" to stdout.
*/ #include <xdc/std.h> #include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h> #include <xdc/runtime/Log.h>
#include <ti/sysbios/knl/Task.h> /*
* ======== main ========
*/ void fun_task0(void);
void fun_task1(void);
Void main()
{
System_printf("hello world\n"); BIOS_start();
} void fun_task0(void)
{
Int count = ;
while(count<)
{
Log_info1("Task0 is doing %d\n",count);
Task_yield();
count++;
}
BIOS_exit();
} void fun_task1(void)
{
Int count = ;
while(count<)
{
Log_info1("Task1 is doing %d\n",count);
Task_yield();
count++;
}
BIOS_exit();
}
我们可以看到两个任务是相互依次运行的,每个任务运行一次后,其优先级就会降低,此时就切换到下一个任务。
在项目中导入Swi软件中断模块
不同任务有不同优先级,而软件中断具有比任何任务都高的优先级,而其中硬件中断(HWI)又比软件中断(SWI)优先级更高。
添加软件中断Swi:
代码:
/*
* ======== hello.c ========
* The hello example serves as a basic sanity check program for SYS/BIOS. It
* demonstrates how to print the string "hello world" to stdout.
*/ #include <xdc/std.h> #include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h> #include <xdc/runtime/Log.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Swi.h> /*
* ======== main ========
*/ void fun_task0(void);
void fun_task1(void);
void func_swi0(void); Swi_Handle swi0; //声明一个全局的SWI句柄 Void main()
{
System_printf("hello world\n"); //初始化SWI参数
Swi_Params swiParams;
Swi_Params_init(&swiParams);
swiParams.priority = ; //软件中断优先级设置为2
swiParams.trigger = ; //设置软件中断计数器
swi0 = Swi_create(func_swi0, &swiParams, NULL); //创建软件中断swi0,func_swi0为软件中断函数 BIOS_start();
} void func_swi0(void)
{ static Int count = ;
Log_info1("Swi0 is doing %d\n",count);
count++;
} /*更改软件中断计数器trigger,要触发软件中断,首先需要让trigger的计数为0,
这里我们可以在任务函数内增加一个trigger自减的函数,任务函数执行两次后,将会触发软件中断*/
void fun_task0(void)
{
Int count = ;
while(count<)
{
Log_info1("Task0 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
BIOS_exit();
} void fun_task1(void)
{
Int count = ;
while(count<)
{
Log_info1("Task1 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
BIOS_exit();
}
编译调试,运行查看结果(这里我们只需要选择单核运行就可以了):
可以看到两个任务的每次都会使得软件中断计数trigger减1(通过Swi_dec函数),直到trigger的值减少到0时,执行软件中断,中断后,trigger恢复到原来的值,这里的trigger初始值为2,所以执行两次任务后就会触发一次软件中断。
在项目中导入信号量Semaphore模块
代码:
/*
* ======== hello.c ========
* The hello example serves as a basic sanity check program for SYS/BIOS. It
* demonstrates how to print the string "hello world" to stdout.
*/ #include <xdc/std.h> #include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h> #include <xdc/runtime/Log.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Swi.h>
#include <ti/sysbios/knl/Semaphore.h> /*
* ======== main ========
*/ void fun_task0(void);
void fun_task1(void);
void func_swi0(void); Swi_Handle swi0;
Semaphore_Handle sem0; //添加全局的信号量句柄 Void main()
{
System_printf("hello world\n");
Swi_Params swiParams;
Swi_Params_init(&swiParams);
swiParams.priority = ;
swiParams.trigger = ; swi0 = Swi_create(func_swi0, &swiParams, NULL);
sem0 = Semaphore_create(, NULL, NULL);//创建信号量 BIOS_start();
} void func_swi0(void)
{
static Int count = ;
Log_info1("Swi0 is doing %d\n",count);
count++;
//增加一个解锁信号量的函数
Semaphore_post(sem0);
} void fun_task0(void)
{
Int count = ;
while(count<)
{
Semaphore_pend(sem0, BIOS_WAIT_FOREVER);//在增加互斥信号量的任务函数中增加一个等待信号量为1的函数
Log_info1("Task0 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
BIOS_exit();
} void fun_task1(void)
{
Int count = ;
while(count<)
{
Log_info1("Task1 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
BIOS_exit();
}
编译调试,运行查看结果(这里我们只需要选择单核运行就可以了):
可以看到只有当软件中断执行后,此时信号量才解锁,task0才能执行,而任务执行两次,才能触发一次软件中断。
在项目中导入时钟Clock模块
Clocks模块主要提供周期性执行函数,我们这里新建一个周期性执行函数,其每四个周期执行一次.
添加时钟:
代码:
/*
* ======== hello.c ========
* The hello example serves as a basic sanity check program for SYS/BIOS. It
* demonstrates how to print the string "hello world" to stdout.
*/ #include <xdc/std.h> #include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h> #include <xdc/runtime/Log.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Swi.h>
#include <ti/sysbios/knl/Semaphore.h>
#include <ti/sysbios/knl/Clock.h> /*
* ======== main ========
*/ void fun_task0(void);
void fun_task1(void);
void func_swi0(void);
void func_clk(UArg arg0); Swi_Handle swi0;
Semaphore_Handle sem0; Void main()
{
System_printf("hello world\n");
Swi_Params swiParams;
Swi_Params_init(&swiParams);
swiParams.priority = ;
swiParams.trigger = ; swi0 = Swi_create(func_swi0, &swiParams, NULL); Clock_Params clkParams;
Clock_Params_init(&clkParams);
clkParams.period = ; // 函数执行周期
clkParams.startFlag = TRUE; // True说明时钟立即开始计时
Clock_create(func_clk, , &clkParams, NULL); //创建时钟,func_clk是周期执行的函数,这里5是开始执行的延时。 sem0 = Semaphore_create(, NULL, NULL); BIOS_start();
} void func_swi0(void)
{
static Int count = ;
Log_info1("Swi0 is doing %d\n",count);
count++;
Semaphore_post(sem0);
} void func_clk(UArg arg0)
{
UInt32 time;
time = Clock_getTicks(); // 这里是定时器的节拍器
System_printf("System time in clk0Fxn = %lu\n", (ULong)time);
if(time>)
BIOS_exit();
} /*
因为任务的执行时间非常快,所以需要先把任务内的退出BIOS命令先删除下,否则当任务完成后,时钟函数还没执行
*/
void fun_task0(void)
{
Int count = ;
while()
{
Semaphore_pend(sem0, BIOS_WAIT_FOREVER);
Log_info1("Task0 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
} void fun_task1(void)
{
Int count = ;
while()
{
Log_info1("Task1 is doing %d\n",count);
Swi_dec(swi0);
Task_yield();
count++;
}
}
编译调试,运行查看结果(这里我们只需要选择单核运行就可以了):
可以看到只有当周期函数func_clk每隔5个周期开始执行,开始执行时间为5。
SYS/BIOS实例分析的更多相关文章
- Linux Kernel PANIC(三)--Soft Panic/Oops调试及实例分析【转】
转自:https://blog.csdn.net/gatieme/article/details/73715860 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原 ...
- Linux系统网络性能实例分析
由于TCP/IP是使用最普遍的Internet协议,下面只集中讨论TCP/IP 栈和以太网(Ethernet).术语 LinuxTCP/IP栈和 Linux网络栈可互换使用,因为 TCP/IP栈是 L ...
- (多核DSP快速入门)SYS/BIOS入门
(多核DSP快速入门)SYS/BIOS入门 原创文章 转载请注册来源http://blog.csdn.net/tostq 系列教程目录:http://blog.csdn.net/tostq/art ...
- RPC原理及RPC实例分析
在学校期间大家都写过不少程序,比如写个hello world服务类,然后本地调用下,如下所示.这些程序的特点是服务消费方和服务提供方是本地调用关系. 1 2 3 4 5 6 public class ...
- java基础学习05(面向对象基础01--类实例分析)
面向对象基础01(类实例分析) 实现的目标 1.如何分析一个类(类的基本分析思路) 分析的思路 1.根据要求写出类所包含的属性2.所有的属性都必须进行封装(private)3.封装之后的属性通过set ...
- (转)实例分析:MySQL优化经验
[IT专家网独家]同时在线访问量继续增大,对于1G内存的服务器明显感觉到吃力,严重时甚至每天都会死机,或者时不时的服务器卡一下,这个问题曾经困扰了我半个多月.MySQL使用是很具伸缩性的算法,因此你通 ...
- sql注入实例分析
什么是SQL注入攻击?引用百度百科的解释: sql注入_百度百科: 所谓SQL注入,就是通过把SQL命令插入到Web表单提交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令.具 ...
- 实例分析ELF文件静态链接
参考文献: <ELF V1.2> <程序员的自我修养---链接.装载与库>第4章 静态链接 开发平台: [thm@tanghuimin static_link]$ uname ...
- 用实例分析H264 RTP payload
用实例分析H264 RTP payload H264的RTP中有三种不同的基本负载(Single NAL,Non-interleaved,Interleaved) 应用程序可以使用第一个字节来识别. ...
随机推荐
- 像使用linux一样使用mac
1 不能像使用windows一样使用mac 因为mac卸载不方便. 2 gcc的问题 就使用系统默认的gcc,即clang,要想使用原声的gcc是不行的,mac本身不支持.
- 我的Android进阶之旅------>android中getLocationInWindow 和 getLocationOnScreen的区别
View.getLocationInWindow(int[] location) 一个控件在其父窗口中的坐标位置 View.getLocationOnScreen(int[] location) 一个 ...
- java 从零开始 第二天
2015年4月28号晚,珠海.晴. Java 的基本数据类型 有整型(integer),浮点型(float),布尔型(boolean),字符型(char) 1.整型(integer) java最基本的 ...
- ARDUINO MEGA2560 经过ESP8266 WIFI模块上传温湿度数据到 OneNet 服务器
简述 原来写了一个C++的wifi库但是发现用c++ arduino这小身板有点扛不住,代码比较大,使用String类型数据处理速度慢,而且很容易无缘无故跑飞.而且封装成库后使用还需要修改arduin ...
- 4G U盘版64位bitcoin专用挖矿操作系统
这个操作系统是基于linux的操作系统,采用的ubuntu平台打造,所有的软件都已经安装齐备,是一个bitcoin专用挖矿操作系统,是64位的,对于显卡数量基本上没有限制,前提是你的主板支持足够多的显 ...
- pinpoint插件开发实践
plugin基本结构 一个plugin主要由三部分构成,插件类增强定义(ProfilerPlugin接口实现).插件描述定义(TraceMetadataProvider接口实现).增强类拦截器实现(A ...
- oracle字符串函数总结
字符函数——返回字符值 这些函数全都接收的是字符族类型的参数(CHR 除外)并且返回字符值.除了特别说明的之外,这些函数大部分 返回VARCHAR2类型的数值.字符函数的返回类型所受的限制和基本数据库 ...
- C#Winform之等待窗体
窗体主要代码: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ...
- Python 案例一(计算人体体脂率)
#计算人体体脂率 #输入部分 #身高 personHeight = input("请输入你的身高(m):") personHeight = float(personHeight) ...
- show processlist,sysbench压力测试工具
processlist.sh 记录数据库的状态 #!/bin/bash while true do mysql -uroot -pwangxiaohu -e 'show processlist\G'| ...