Hello to all...
how to create a project with include TCPnet stack (with the RTX) for LPC2368 from first step.
my problem to create project is how to add Net_Config.c to my project
i'm sorry for my English language very very thx
Please HELP me
Good starting place
http://www.keil.com/support/man/docs/rlarm/rlarm_tn_tcpip_prot.htm
Please HELP me to "Create Project_Step_by_Step" the correct way is to spend a month studying TCP/IP, then spending a month studying the ARM and your particular derivative, then spending a month gradually building the stack, then ...
guessing you are a newbie and do not have that kind of patience, it will, in that case, be a better idea to do it backwards, take s working example (referred to above) and disamantle it than "Create Project_Step_by_Step"
Erik
very thx i study "TCP Socket" section and "Configuring RL-TCPnet" section but when add Net.Config.c to my project and compiled it , no compile and error
error
1.axf: Error: L6218E: Undefined symbol arp_notify (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol eth_init_link (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol eth_run_link (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol icmp_init (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol icmp_run_engine (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol ip_init (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol ip_run_local (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol nbns_init (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol tcp_init (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol tcp_poll_sockets (referred from net_config.o). 1.axf: Error: L6218E: Undefined symbol udp_init (referred from net_config.o).
LPC23_EMAC.c file added to m project without problem
for LPC2368 which Library files added to my project? RTX_ARM_L.LIB or RTX_ARM_B.LIB
include the RTX kernel is Obligatory to my project?
RTX is not obligatory, and you're not adding the TCP/IP library. Find it at Keil/ARM/RV31/LIB (you need "TCP_ARM_L.lib").
THX Solved my problem and I can creating a project with TCP/IP stack
Very very thanks
i have a question
with the function tcp_send i can send TCP Packet and could not found any function to receive TCP Packet from out of MCU
Please HELP me again
http://www.keil.com/support/man/docs/rlarm/rlarm_tn_tcp_funcs.htm
As far as I can recall, this is implemented using callback functions.
Very thank you
you said true
the variable ptr stored received data and par variable store length of received data when event is TCP_EVT_DATA
very very thx