-
The quartus achieve the PC
在quartus下实现了PC机的串口通信功能-The quartus achieve the PC-Serial communication function
- 2022-01-25 15:27:09下载
- 积分:1
-
dsp related information
dsp 有关的重要资料-dsp related information
- 2022-02-21 23:16:36下载
- 积分:1
-
这是一个用C语言编写的,用于转换我们中国特有的农历与阳历,有一定的参考价值
这是一个用C语言编写的,用于转换我们中国特有的农历与阳历,有一定的参考价值-This is a C language, for the conversion of our unique to China and the Chinese solar calendar, which is the reference value
- 2022-08-13 09:14:16下载
- 积分:1
-
类同IPOD转轮音量控制的触摸IC,主要针对便携式和家用电器应用。它们具有更低的功耗,增强了在苛刻感测条件下工作的能力,并且能很方便地在转轮中心安置一个机械按钮...
类同IPOD转轮音量控制的触摸IC,主要针对便携式和家用电器应用。它们具有更低的功耗,增强了在苛刻感测条件下工作的能力,并且能很方便地在转轮中心安置一个机械按钮(QT511),使转轮无须反应无意的触摸。
-IPOD similar touch-wheel volume control IC, the main applications for portable and household appliances. They have lower power consumption, enhanced sensing in harsh conditions, the ability to work and can be easily in a mechanical wheel center button placement (QT511), so that there is no need reaction wheels do not intend to touch.
- 2022-11-24 10:45:03下载
- 积分:1
-
Database for wago PLC controller
Database for wago PLC controller
- 2022-05-16 19:39:19下载
- 积分:1
-
用易语言开发的 cad插件 。进入cad中。画线
用易语言开发的 cad插件 。进入cad中。画线-Language development with easy plug-cad. Entered in cad. Draw a line
- 2022-08-03 20:31:46下载
- 积分:1
-
列主元消去法解方程组编程
列主元消去法解方程组编程 -Out PCA solution of equations elimination Programming
- 2022-09-12 04:15:03下载
- 积分:1
-
JAVA编写的推箱子游戏
虽然很简单也是不错的经典
JAVA编写的推箱子游戏
虽然很简单也是不错的经典
-JAVA prepared Sokoban game is pretty good although very simple classic
- 2022-08-17 16:45:08下载
- 积分:1
-
AutoCAD多重拷贝命令。
命令名称:MulCopy
命令功能:本程序以代替AutoCAD中原有的Copy命令,当进行多重拷贝时,避免了使用Cop...
AutoCAD多重拷贝命令。
命令名称:MulCopy
命令功能:本程序以代替AutoCAD中原有的Copy命令,当进行多重拷贝时,避免了使用Copy命令时出现提示语需要键入“M”的烦琐。当不需继续多重拷贝时,可按回车或鼠标右键结束。-Multiple copies of AutoCAD commands. Command name: MulCopy command functions: This procedure to replace the Central Plains AutoCAD Some Copy command, when multiple copies, the Copy command to avoid the use of language when the need for prompt, type
- 2022-01-29 04:49:43下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1