Author |
Message |
Topic: Telnet Client with MicroChip TCP/IP stack? |
erhan
Replies: 2
Views: 5673
|
Forum: General CCS C Discussion Posted: Tue Dec 19, 2006 2:08 pm Subject: Telnet Client with MicroChip TCP/IP stack? |
hello
I want to connect tcp server from port 5000
I wrote this code but not working why?subnetmask and gateway setting is ok.
TCP_SOCKET ConnectToServer(IP_ADDR *IPAddr, int16 DestPort) ... |
Topic: How do I send an ICMP packet? |
erhan
Replies: 5
Views: 11039
|
Forum: General CCS C Discussion Posted: Fri Dec 15, 2006 7:10 am Subject: How do I send an ICMP packet? |
this is the working ping code with arp request
void ping(IP_ADDR *IPAddr)
{
NODE_INFO remoteNode;
int PingData[]="abcdefghijklmnnopqrstuwxvyz12345&q ... |
Topic: How do I send an ICMP packet? |
erhan
Replies: 5
Views: 11039
|
Forum: General CCS C Discussion Posted: Fri Dec 15, 2006 3:18 am Subject: How do I send an ICMP packet? |
I know destination mac address so I don't have to do arp request.
I corrected my code like this
NODE_INFO PingDest;
int PingData[]={'e','r','h','a','n',0};
int16 SeqNo ... |
Topic: How do I send an ICMP packet? |
erhan
Replies: 5
Views: 11039
|
Forum: General CCS C Discussion Posted: Fri Dec 15, 2006 2:29 am Subject: How do I send an ICMP packet? |
How can we send ping?My ip address=10.0.0.10
NODE_INFO PingDest;
int PingData[]={'e','r','h','a','n',0};
int16 SeqNo=0;
PingDest.MACAddr.v[0]= MY_MAC_BYTE1; ... |
Topic: create file in mmc using FAT16 |
erhan
Replies: 9
Views: 11571
|
Forum: General CCS C Discussion Posted: Thu Aug 18, 2005 9:39 am Subject: create file in mmc using FAT16 |
I feel terrible.I am sorry Douglas.I wasted your time.I did big mistake.I learned that extension must be capital.I changed 747874 to 545854 and I open the file now.
Thanks for your help... |
Topic: create file in mmc using FAT16 |
erhan
Replies: 9
Views: 11571
|
Forum: General CCS C Discussion Posted: Thu Aug 18, 2005 6:35 am Subject: create file in mmc using FAT16 |
I create mmc.txt and load "MMC" within windows.
this is file entry at 0x3E000
4D4D43202020202054585420183A777A1233123300008D5C1233020005000000
these are file data at 0x42000
4D4D430D0A0000 ... |
Topic: create file in mmc using FAT16 |
erhan
Replies: 9
Views: 11571
|
Forum: General CCS C Discussion Posted: Wed Aug 17, 2005 1:56 pm Subject: create file in mmc using FAT16 |
When I create file within windows and compare to pic it is completely same.mbr,rootdirsector,fat1table,fat2table and datasector is same.But still says can't find the file |
|