搜索结果

找到约 699 项符合 Int 的查询结果

按分类筛选

显示更多分类

PCB图/BOM单/原理图 单片机课程设计

#include<reg52.h>  #include<intrins.h> #define LED P0 sbit KEY0=P2^0;  //定义按键输入端口 A    sbit KEY1=P2^1;  //定义按键输入端口 B    sbit KEY2=P2^2;  //定义按键输入端口 C unsigned int Led_table[8]={0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x80,0x00}; char Led_num=0 ...
https://www.eeworm.com/dl/508925.html
下载: 1
查看: 47

单片机开发 This example shows how to transmit and receive packets with packet length up to 255 bytes. The statu

This example shows how to transmit and receive packets with packet length up to 255 bytes. The status byte is polled every 200 us in a timer1 int.
https://www.eeworm.com/dl/648/182515.html
下载: 76
查看: 1096

加密解密 单机版多对象进行密钥交换

单机版多对象进行密钥交换,内部提供了关于超过int范围的数值进行取模运算的反法。
https://www.eeworm.com/dl/519/392862.html
下载: 73
查看: 1047

源码 C++1000以内的素数

#include<iostream> using namespace std; int s=0;  int prime(int x){ int i,p=1; for(i=2;i<=x/2;i++){ if(x%i==0){ p=0; break; } } if(p!=0){ cout<<x<< " "; s++; } }  int main(){ for (int k=5;k<=100;k++){ prime(k); if(s%5==0) cout<<'\n'; } return 0; } ...
https://www.eeworm.com/dl/522666.html
查看: 102

嵌入式Linux Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫

Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫,需要linux 2.4.18 kernel include,編譯完成後產生led module。 insmod main.o //安裝模組 mknod /dev/leds c 221 0 使用方法: int main(int argc, char *argv[]) { int testdev //led test... testdev = open("/dev/QuickMarkLed",O_RDWR) ioctl(testdev, 2 ...
https://www.eeworm.com/dl/653/246851.html
下载: 93
查看: 1187

微处理器开发 LPC2292 bios测试程序 说明:YL_LPC229X_BIOS_Data的目录说明

LPC2292 bios测试程序 说明:YL_LPC229X_BIOS_Data的目录说明, DebugInExram: 该目录在工程里对应target(DebugInExram),用来在外部SRAM调试 Int_Flash_Hex:该目录在工程里对应target(Int_Flash_HEX),在该目录下生成可以烧写到内部Flash运行的代码。
https://www.eeworm.com/dl/655/353928.html
下载: 184
查看: 1068

嵌入式/单片机编程 最简单的20键PS/2键值读取程序

最简单的20键PS/2键值读取程序,PS/2的clk接INT0,data接P1_0
https://www.eeworm.com/dl/647/129402.html
下载: 38
查看: 1054

单片机开发 在主机上编译后

在主机上编译后,上传INT,重起开发板。 在主机上编译后,上传CLOCK,重起开发板。
https://www.eeworm.com/dl/648/273610.html
下载: 184
查看: 1050

技术资料 MouseDraw

利用鼠标可以画出各种简单的图形 主要学习中断接口的使用-Can use the mouse to draw a variety of key learning simple graphical int
https://www.eeworm.com/dl/912447.html
下载: 7
查看: 6850

单片机开发 编译环境:ICC AVR 6.31A 单片机:AT90S8515 PC.0出音乐信号

编译环境:ICC AVR 6.31A 单片机:AT90S8515 PC.0出音乐信号,INT0,INT1分别接下一首、播放/暂停键 开机处于暂停状态,按下播放/暂停键开始放音,自动播放完8首,会再进入暂停状态。 所有的暂停状态都采用掉电模式。
https://www.eeworm.com/dl/648/220423.html
下载: 43
查看: 1090