I would like do a ping between my card and my PC :
To configure it i use :
#define TCPCONFIG 1
#define _PRIMARY_STATIC_IP “10.10.16.108”
#define _PRIMARY_NETMASK “255.255.255.0”
#define MY_GATEWAY “10.10.16.253”
#define MY_NAMESERVER “10.10.16.253”
//#define PORT “8888”
/********************************
- End of configuration section *
********************************/
#memmap xmem
#use dcrtcp.lib
void main()
{
// Start network and wait for interface to come up (or error exit).
sock_init_or_exit(1);
for (; {
tcp_tick(NULL);
}
}
But when I ping my IP on windows she doesn’t exist. If i check with ipconfig i didn’t see my IP of my card. So i would like know how to resolve this. ( If have tried with ipconfig too and all in the datasheet TCP/IP). I changed my network pc to match my settings.