51单片机MAX7219程序编写与测验

51单片机MAX7219程序编写与测验

51单片机MAX7219程序编写与测试-#include“reg52.h”
#include “intrins.h”
#define byte unsigned char
//#define N_NOP _nop_();//_nop_();_nop_();

广告

根据MSP430对UART的操控计划

根据MSP430对UART的操控计划

基于MSP430对UART的控制方案-1 #include “msp430g2553.h”

2

3 typedef unsigned char uchar;

4 typedef unsigned int uint;

5

6 #define LED BIT0

7 #define TXD BIT1 // TXD on P1.1

8 #define RXD BIT2 // RXD on P1.2

9 #define POUT P1OUT

10

PIC单片机定时器0的使用

PIC单片机定时器0的使用

PIC单片机定时器0的应用-#include

#define uchar unsigned char

#define uint unsigned int

__CONFIG(0x3B31);

void init();

uint intnum;

void main()

{

init();

while(1)

{

89c52串口发送接纳小示例

89c52串口发送接纳小示例

//串口发送voidsendChar(char*p)//调用前关中断,调用完成后关中断{while(*p!=#39;\0#39;){SBUF=*Pwhile(!TI);…

51中假如用sprintf()函数一定要多留意!

51中假如用sprintf()函数一定要多留意!

sprintf((char*)d,打印日期:%d-%02d-%02d%02d:%02d:%02d,(int)SystemTime.year,(int)SystemTime.month,(int)Sys

ARM中关于int、long类型位数的评论

ARM中关于int、long类型位数的评论

ARM7,ARM9,PC都是32位CPU:char为1Byte,short为2Byte,int和long都为4Byte,longlong为8Byteint在16位的CPU上是16位在32位…

单片机中数字字符串转化为数字

单片机中数字字符串转化为数字

unsignedintUintnum(char*digit)/*—–字符串转化为数字—–*/{unsignedintnum=0;while(*digit!=#39;\0#39;){if(*

几个C言语的好函数

几个C言语的好函数

判断回文intisReverseStr(char*aStr)在主函数判断返回值inti,j;intfound=1;if(aSTR==null)return-1;j=strlen(aStr);for(

C言语试题大全一

C言语试题大全一

1写一函数,实现删除字符串str1中含有的字符串str2*用递归做*voiddeletesubstr(char*str1,constchar*str2){intlen

C言语获取编译日期时刻和体系时刻

C言语获取编译日期时刻和体系时刻

intGetCompileDateTime(char*szDateTime){constintMONTH_PER_YEAR=12;constcharszEnglishMonth[MONTH_PER_Y

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部