代码搜索:Byte

找到约 10,000 项符合「Byte」的源代码

代码结果 10,000
www.eeworm.com/read/260716/11706353

asm b16tobcd.asm

; ;******************************************************************** ; Binary To BCD Conversion Routine ; This routine converts a 16 Bit binary Number to a 5 Digit ; BCD N
www.eeworm.com/read/346550/11738435

c cs5532.c

/****************************************Copyright (c)************************************************** ** ** **
www.eeworm.com/read/346284/11756272

h api.h

// BYTE type definition #ifndef _BYTE_DEF_ #define _BYTE_DEF_ typedef unsigned char BYTE; #endif /* _BYTE_DEF_ */ /**************************************************/ #define TRX_Disable 0 #d
www.eeworm.com/read/155802/11846644

txt 配置nrf905 .txt

void Config905(void) using 0//配置nRF905 { CSN = 0; // Spi enable for write a spi command SpiReadWrite(WC); // Write config command SpiReadWrite(CH_NO_BYT
www.eeworm.com/read/258461/11861709

h dealchars.h

#define uint unsigned int #define uchar unsigned char #define CRC16_PRESET 0xFFFF #define CRC16_POLYNOM 0x8408 /* x^16 + x^12 + x^5 + 1 */ //////////////////////////////////////////
www.eeworm.com/read/257538/11921486

c usb_utils.c

/* Copyright 2003 Cygnal Integrated Products, Inc. File: usb_utils.c Author: JS Created: JAN 03 Modified: SEP 03 -- FB (FIFORead() - disabled auto read before last byte.)
www.eeworm.com/read/154764/11927977

memswap

WORD MEMSwap16(WORD c) { BYTE *c1; BYTE c2; c1 = (Byte *)&c; c2 = c1[0]; c1[0] = c1[1]; c1[1] = c2; return(*((WORD *)c1)); } DWORD MEMSwap32(DWORD c) { BY
www.eeworm.com/read/342841/11996285

h memory.h

/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.5 the full text of which is contained in the file License.txt included in TrueCrypt binary
www.eeworm.com/read/341583/12076764

asm bcd2bin.asm

; ;************************************************************************ ; BCD To Binary Conversion ; ; This routine converts a 5 digit BCD number to a 16 bit binary ; numb
www.eeworm.com/read/341583/12076855

asm b16tobcd.asm

; ;******************************************************************** ; Binary To BCD Conversion Routine ; This routine converts a 16 Bit binary Number to a 5 Digit ; BCD N