代码搜索:XMODEM
找到约 707 项符合「XMODEM」的源代码
代码结果 707
www.eeworm.com/read/282541/9084398
c xmodem.c
#include "config.h"
#define XMODEM_SOH 0x01
#define XMODEM_EOT 0x04
#define XMODEM_ACK 0x06
#define XMODEM_NAK 0x15
#define XMODEM_CAN 0x18
#define XMODEM_DATA_SIZE 128
struct frame
{
c
www.eeworm.com/read/281650/9144029
c xmodem.c
/*
* vivi/deriver/serialxmodem.c:
* - an implementation of the xmodem protocol from the spec.
*
* Based on bootldr/xmodem.c (C) 2000 Compaq Computer Coporation.
*
* Copyright (C) 2001 MIZI R
www.eeworm.com/read/281650/9144147
h xmodem.h
/*
* xmodem.h
*
*/
/* returns the number of bytes transferred */
__u32 xmodem_receive(char *dest, size_t len);
www.eeworm.com/read/182419/9204508
c xmodem.c
#include "AT91RM9200.h"
#include "lib_AT91RM9200.h"
#include "embedded_services.h"
#include "def.h"
#include "config.h"
#include "console.h"
#include "params.h"
#ifdef XMODEM_SUPPORT
#defi
www.eeworm.com/read/182419/9204581
o xmodem.o
www.eeworm.com/read/182419/9204621
o xmodem.o
www.eeworm.com/read/180365/9310813
c xmodem.c
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*----------------------------------------------------
www.eeworm.com/read/180365/9310814
h xmodem.h
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*----------------------------------------------------
www.eeworm.com/read/374741/9386022
c xmodem.c
/*
* vivi/deriver/serialxmodem.c:
* - an implementation of the xmodem protocol from the spec.
*
* Based on bootldr/xmodem.c (C) 2000 Compaq Computer Coporation.
*
* Copyright (C) 2001
www.eeworm.com/read/374737/9387217
c xmodem.c
#include "xmodem.h"
/* 读取单个数据包 */
/* 返回0表示读取数据包成功 */
/* 返回1表示数据包不完整 */
/* 返回2表示数据包检验和出错 */
static
int RecFrame(struct Frame* oneFrame)
{
int returnVal; /* 返回的值 */
int i;