代码搜索结果
找到约 15,197 项符合
Ethernet 的代码
readme.txt
8139too.c release note
2001/10/31 by ShuChen Shao
1.This driver was originally based on 8139too.c version "0.9.15".
2.It has been enhanced to support RTL8139C+ PCI ethernet controller.
3.RT
readme.txt
Serial to Ethernet Converter
The Serial to Ethernet Converter provides a means of accessing the UART on a
Stellaris device via a network connection. The UART can be connected to the
UART on a no
readme.txt
以下的步骤中假定您的连接开发板和运行JTAG.EXE的计算机的IP为192.168.0.204。
(1)按照JTAG.PDF制作并口JTAG的连接线
(2)将开发板和计算机通过连接线连接。
(3)运行JTAG.EXE
(4)运行ARM SDT后在Angel Remote Configure界面中设置选择Ethernet模式,IP置为192.168.0.24,
myprj.lnp
"ethernet.obj",
"ip.obj",
"main.obj",
"24c02.obj",
"Udp.obj"
TO "myprj"
IXREF
RAMSIZE(256)
ethernet.lst
C51 COMPILER V6.21 ETHERNET 03/08/2002 13:07:30 PAGE 1
C51 COMPILER V6.21, COMPILATION OF MODULE ETHERNET
OBJECT MODULE PLACED I
myprj.plg
Build target 'Target 1'
compiling ethernet.c...
compiling ip.c...
compiling main.c...
MAIN.C(410): warning C209: '_flush_gate_mac': too few actual parameters
compiling 24c02.c...
compiling Udp.c...
li
ethernet.h
#ifndef BYTE
#define BYTE unsigned char
#endif
#ifndef WORD
#define WORD unsigned int
#endif
#ifndef LWORD
#define LWORD unsigned long
#endif
#define MACLEN 6 // Ehternet (M
myprj.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1,
File 1,1,
eth.h
#ifndef __ETH_H
#define __ETH_H
/*
* IEEE 802.3 Ethernet magic constants. The frame sizes omit the preamble
* and FCS/CRC (frame check sequence).
*/
#define ETH_ALEN 6 /* Octets in one etherne
arp.h
#ifndef __ARP_H
#define __ARP_H
#include "eth.h"
/* ARP protocol HARDWARE identifiers. */
#define ARPHRD_NETROM 0 /* from KA9Q: NET/ROM pseudo */
#define ARPHRD_ETHER 1 /* Ethernet 10Mbps */
#de