代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/314179/13572545
m readpacketterminator.m
function cksum = ReadPacketTerminator(gps)
% ReadPacketTerminator Read the three byte sequence terminating a packet
global pid_dle_byte;
global pid_etx_byte;
% Read checksum byte. If it is eq
www.eeworm.com/read/310143/13657858
lst up2dsptest1.lst
A51 MACRO ASSEMBLER UP2DSPTEST1 04/12/2006 14:30:29 PAGE 1
MACRO ASSEMBLER A51 V7.01
OBJECT MODULE PLACED IN up2dsptest1.OBJ
ASSEMB
www.eeworm.com/read/309425/13671710
c 28.c
sbit DQ =P2^1; //根据实际情况定义端口
typedef unsigned char byte;
typedef unsigned int word;
//延时
void delay(word useconds)
{
for(;useconds>0;useconds--);
}
//复位
byt
www.eeworm.com/read/306533/13742592
c 28.c
sbit DQ =P2^1; //根据实际情况定义端口
typedef unsigned char byte;
typedef unsigned int word;
//延时
void delay(word useconds)
{
for(;useconds>0;useconds--);
}
//复位
byt
www.eeworm.com/read/102439/6231861
c usb_isr.c
/*
Copyright 2003 Cygnal Integrated Products, Inc.
File: usb_isr.c
Author: JS & CS
Created: AUG 03
Target Device: C8051F320
Source file for USB firmware. Includes the fo
www.eeworm.com/read/100925/6264812
h blp.h
/*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
*
www.eeworm.com/read/100122/6274198
c swap.c
#include
main()
{
int byte1, byte2;
byte1 = getchar();
byte2 = getchar();
while (byte2 != EOF) {
putchar((byte2 & 0xFF));
putchar((byte1 & 0xFF));
byte1 = getchar();
www.eeworm.com/read/203314/6301844
h bitroutines.h
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/407190/11425427
c 28.c
sbit DQ =P2^1; //根据实际情况定义端口
typedef unsigned char byte;
typedef unsigned int word;
//延时
void delay(word useconds)
{
for(;useconds>0;useconds--);
}
//复位
byt
www.eeworm.com/read/402154/11542068
h kaes.h
//////////////////////////////////////////////////////////////////////
// KAES.h: 实现AES加密的KAES类的头文件.
//原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It)
// 并参考了[小刀人]对上文的翻译.
//改写:ki