代码搜索:gpio的引脚
找到约 10,000 项符合「gpio的引脚」的源代码
代码结果 10,000
www.eeworm.com/read/292163/8371840
jar 说话的艺术.jar
www.eeworm.com/read/192528/8376057
txt 精确的延时.txt
void delay_us(int time)
{
do
{
time--;
}
while (time>1);
}
/* 毫秒级延时程序 */
void delay_ms(unsigned int time)
{
while(time!=0)
{
www.eeworm.com/read/391742/8382297
opt 数的遍历.opt
www.eeworm.com/read/391742/8382299
dsw 数的遍历.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "数的遍历"=".\数的遍历.dsp"
www.eeworm.com/read/391742/8382301
dsp 数的遍历.dsp
# Microsoft Developer Studio Project File - Name="数的遍历" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/391742/8382304
plg 数的遍历.plg
Build Log
--------------------Configuration: 数的遍历 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\123\LOCA
www.eeworm.com/read/391742/8382306
ncb 数的遍历.ncb
www.eeworm.com/read/391742/8382310
cpp 数的遍历.cpp
#include
//#include
#define INFINITY 32767
#define MAX_VEX 20 //最大顶点个数
#define QUEUE_SIZE (MAX_VEX+1) //队列长度
using namespace std;
bool *visited; //访问标志数组
//图的邻接矩阵存储
www.eeworm.com/read/290930/8450320
exe 图的遍历.exe
www.eeworm.com/read/290930/8450324
cpp 图的遍历.cpp
//* * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :5 (5_1) *
//*PROGRAM :图的遍历 *
//*CONTENT :生成,深度、广度优先遍历 *
//* * * * *