| Author | beginning argument ( Replies received: 6 ) |
| ollos |
Posted 12-03-2008 at 18:59   |

Registered on : 03-12-2009
Messages : 3
OFF-Line
|
Hi everybody!
Did anybody port uIP (for STR912 of course) to Rowley Crossworks 1.7? I try to do this but I can't run anything else than ARP.
|
|
|
Profile
Quote
|
| williamjsell |
Posted 20-03-2008 at 22:16   |

Registered on : 01-29-2009
Messages : 5
OFF-Line
|
Hi Ollos,
I spoke with Paul Curtis at Rowley some time ago and he indicated they are developing their own stack. Not sure where he is in this process, but you might want to email him. I also have a project which requires a stack and I am using Crossworks. I have not looked at this part of my project yet, but we should share information to see how we can help each other...
-Bill
|
|
|
Profile
Quote
|
| ollos |
Posted 27-03-2008 at 17:07   |

Registered on : 03-12-2009
Messages : 3
OFF-Line
|
Hi Bill
I wasn't on forum for couple days. I'll email Paul Curtis and I'll get to know when I receive reply. I also think we should share informations
BTW: Which tools do you use? I mean CrossConnect, Wiggler or something else? I try to use clone of Wiggler.
---
ollo
|
|
|
Profile
Quote
|
| achim.oetringhaus |
Posted 03-04-2008 at 11:43   |

Registered on : 04-03-2009
Messages : 2
OFF-Line
|
Good morning,
I am new to this forum and new to ARM but not to software development on other microcontrollers.
I have just started getting familiar with CrossWorks and with my development board (STR9 comStick), and I am going to deal with an IP stack next.
I hope we can help each other, and please let us know if you receive a reply from Paul Curtis.
Regards,
Achim
|
|
|
Profile
Quote
|
| ollos |
Posted 04-04-2008 at 10:55   |

Registered on : 03-12-2009
Messages : 3
OFF-Line
|
I've received reply from Paul Curtis. But there is no timeframe for release the TCP/IP stack under Crossworks. It will become available but not know when.
As long I can't run uIP under Crossworks. But the same uIP works under Idealist [and both Crossworks and Idealist are GCC-compatible]. I have no idea what can be wrong.
|
|
|
Profile
Quote
|
| williamjsell |
Posted 21-04-2008 at 17:47   |

Registered on : 01-29-2009
Messages : 5
OFF-Line
|
Hi Ollos,
Here is a copy of the message I sent to Adam's mailing list in Sweden. Did you have to deal with the issues of the dabort_handler trapping exceptions from the IAR implementation?
-Bill
I am attempting to use uIP with Crossworks ARM and the STR912 device from ST. It appears that all the low-level drivers are working, but when I ping the board, the target turns around and echos back the same ICMP packet. With my sniffer it looks like the host (PC) is sending out a gazillion ARP requests, but they are coming from the target hardware. I took the uIP load from IAR and ported this over to Crossworks from Rowley. I had to make several code changes: added the ((pack)) and ((align)) attributes to the arp data structures as the source and destination IP's were getting misaligned. I had to change code like
arp_iphdr *BUF = (arp_iphdr *)uip_buf;
to
arp_iphdr iphdr;
arp_iphdr *BUF
BUF = &iphdr;
If I did not do this, calls like BUF->type would cause a data abort error on the bus. Apart from this, the uIP is untouched. Not sure why the ping is not correctly handled, any ideas?
-Bill
|
|
|
Profile
Quote
|
| r.kraan |
Posted 04-12-2008 at 13:13   |

Registered on : 12-04-2009
Messages : 1
OFF-Line
|
Hi
Does anyone have an other port of an TCP/IP stackt for crosworks >
Thanks in advance
Ruben
|
|
|
Profile
Quote
|