搜索结果

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

按分类筛选

显示更多分类

单片机开发 AVRMega16单片机的项目

AVRMega16单片机的项目,开发环境:ICCAVr6.31A,可从网上下载。 实现串口传送数据并存到AT45DB系列的FLASH芯片中,用ZLG7290显示时间、数据到数码管,读取时钟芯片,完全使用了单片机的I2C、SPI、UART、INT0、IO口等,是一个典型单片机的全功能应用项目源码实现,可直接修改应用你的项目中。绝对可靠、可用,参考价值很高 ...
https://www.eeworm.com/dl/648/352839.html
下载: 86
查看: 1049

Linux/Unix编程 #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h&gt

#include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout ...
https://www.eeworm.com/dl/619/386155.html
下载: 32
查看: 1076

Linux/Unix编程 帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <s

帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <asm/page.h> #include <linux/fb.h> #define TRUE 1 #define FALSE 2 //a framebuffer device structure typed ...
https://www.eeworm.com/dl/619/386216.html
下载: 187
查看: 1129

单片机开发 内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.

内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明. 应先发"RESET"命令再发"PWR_UP"命令,后发"RESET"命令可能不正常工作. 1730最高地址只有0xFF,所以对指定地址的操作函数的参数使用了"unsigned char"类型, 17系列的其它型号可能才用得到"unsigne ...
https://www.eeworm.com/dl/648/488679.html
下载: 105
查看: 1112

技术资料 基于TMS320LF2407与CAN总线通信的汇编实现

·摘要:  文中主要研究了基于TMS320LF240DSP控制器实现CAN总线通讯的原理和方法,以TI公司生产的定点DSPTMS320LF240和CAN控制器SJA1000为例,详细讲述了怎样用C2xx汇编语言完成SJA1000的初始化;放开TMS320LF2407的可屏蔽中断INT1,以中断方式接收CAN总线的数据,以及用查询方式向其它外围设备发送数据.   ...
https://www.eeworm.com/dl/936694.html
下载: 9
查看: 6359

技术资料 POE模块

POE模块,开发的大功率POE模块.FEATURES  Wide operating voltage:  INT100: 36V ~ 57V  Output Current  12V, 1A  5V, 2A  3.3V, 2A  Output voltage ripple: 100mVPP, (12V@1A)  High Efficiency 84% (input 48V, Load12V@1A)  Overcurrent /shortcircuit protection  High reliability: designed to ...
https://www.eeworm.com/dl/982779.html
下载: 1
查看: 7656

加密解密 使用的是API编程,可格式化、校验和读写特殊扇区。可用作Windows下的磁盘加密。本函数还有以下两个缺点以待改进: 1.本函数还只能读能读 A: 和 B:,即只能对软盘操作 2.不能改变磁盘扇区大小

使用的是API编程,可格式化、校验和读写特殊扇区。可用作Windows下的磁盘加密。本函数还有以下两个缺点以待改进: 1.本函数还只能读能读 A: 和 B:,即只能对软盘操作 2.不能改变磁盘扇区大小,只能是标准的 512 个字节。 参数说明: command 操作: 0 重置磁盘 2 读扇区 3 写扇区 4 校验磁道 5 格式化磁道 8 得到设备参数 (int ...
https://www.eeworm.com/dl/519/130300.html
下载: 116
查看: 1150

C/C++语言编程 c8051f330 C程序源代码

//------------------------------------------------------------------------------------//此程序为ADC转换程序,可以选择向ADC0BUSY写1或用定时器0,1,2,3作为ADC的启动信号。////------------------------------------------------------------------------------------//头文件定义//-------------------------------- ...
https://www.eeworm.com/dl/503/37370.html
下载: 64
查看: 1127

源码 java学生数据库

/*import java.util.Scanner; //主类 public class student122 {   //主方法   public static void main(String[] args){     //定义7个元素的字符数组     String[] st = new String[7];     inputSt(st); &nbsp ...
https://www.eeworm.com/dl/514408.html
下载: 2
查看: 25

技术书籍 C语言常见问题集_必知的495个问题

1.1 我如何决定使用那种整数类型? 如果需要大数值(大于32, 767 或小于¡32, 767), 使用long 型。否则, 如果空间很重要(如有大数组或很多结构), 使用short 型。除此之外, 就使用int 型。如果严格定义的溢出特征很重要而负值无关紧要, 或者你希望在操作二进制位和字节时避免符号扩展的问题, 请使用对应的无符号类型。但 ...
https://www.eeworm.com/dl/537/36754.html
下载: 107
查看: 1126