博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多线程
阅读量:5227 次
发布时间:2019-06-14

本文共 479 字,大约阅读时间需要 1 分钟。

#include "rtos.h"//加的库Thread thread1;//外部声明void servo1_thread() {    while (true)     {              Thread::signal_wait(0x001);        ...          }}thread1.start(servo1_thread);thread1.signal_set(0x001);thread1.terminate( );//read_threadvoid read_thread(){     d = pc.getc();}void servo8_thread() {    thread9.terminate( );    if(Ein == 1)    {        pc.printf("s");        wait(0.5);    }    thread9.start(read_thread);}

转载于:https://www.cnblogs.com/ronnielee/p/10017074.html

你可能感兴趣的文章
类别的三个作用
查看>>
Maximum Product Subarray
查看>>
[转载] MySQL的四种事务隔离级别
查看>>
QT文件读写
查看>>
C语言小项目-火车票订票系统
查看>>
[Linux]PHP-FPM与NGINX的两种通讯方式
查看>>
Java实现二分查找
查看>>
优秀员工一定要升职吗
查看>>
[LintCode] 462 Total Occurrence of Target
查看>>
springboot---redis缓存的使用
查看>>
架构图-模型
查看>>
Java -- Swing 组件使用
查看>>
Software--Architecture--DesignPattern IoC, Factory Method, Source Locator
查看>>
黑马程序员_Java基础枚举类型
查看>>
[ python ] 练习作业 - 2
查看>>
一位90后程序员的自述:如何从年薪3w到30w!
查看>>
在.net core上使用Entity FramWork(Db first)
查看>>
System.Net.WebException: 无法显示错误消息,原因是无法找到包含此错误消息的可选资源程序集...
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
MongoDB的数据库、集合的基本操作
查看>>