Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - seulater

Pages: 1 2 [3]
31
µTasker general / Re: Using TCP in the uTasker project
« on: March 29, 2008, 03:18:21 PM »
so if things are slowly sinking in, i could create to listening sockets by doing...


USOCKET Test_socket_1 = fnGetTCP_Socket(TOS_MINIMISE_DELAY, (unsigned short)10, fnTestListener_1);

USOCKET Test_socket_2 = fnGetTCP_Socket(TOS_MINIMISE_DELAY, (unsigned short)10, fnTestListener_2);


static unsigned short usTestPort_1 = 10000;
fnTCP_Listen(test_socket_1, usTestPort_1, 0);

static unsigned short usTestPort_2 = 20000;
fnTCP_Listen(test_socket_2, usTestPort_2, 0);






32
µTasker general / Re: Using TCP in the uTasker project
« on: March 29, 2008, 02:47:29 PM »
can you expound on the static int fnTestListener.

it it set up as a task of its own ? i would imagine that in your example for this it is set up as a task since it is not in a while loop.





33
Luminary Micro TM LM3SXXXX / Re: Creating a TCP socket
« on: March 29, 2008, 02:34:22 PM »
Thanks for the link, i am sure it will help allot.
i just assumed it would all be in the manual.

I will start looking in the forum more for topics.

34
on page 4 of this pdf, it shows:

Code: [Select]
const UTASKTABLEINIT ctTaskTable[] = {
{ "Wdog", fnTaskWatchdog, NO_QUE, (DELAY_LIMIT)0,(DELAY_LIMIT)( 0.2 * SEC ), RTMK_GO},
{ "Blink", fnTaskWatchdog, SMALL_QUE, (DELAY_LIMIT)( 0.5 * SEC ),(DELAY_LIMIT)(0.5 * SEC ), RTMK_GO},
{ 0 } // end of task list
};

shouldnet "{ "Blink", fnTaskWatchdog,...." be somthing like "{ "Blink", fnTaskBlink,..."

35
Luminary Micro TM LM3SXXXX / Creating a TCP socket
« on: March 29, 2008, 01:13:06 AM »
unless i have totaly missed it, i cannot find the documentation on how to create a TCP listenting socket.

All i want to do to evaluate the performance is to create a TCP server say on port 10000, and to echo back what ever it gets. i would like to make this its own thread. can you give an example of how to do this or point me to the docs that say how to.

36
Luminary Micro TM LM3SXXXX / LM3S8962
« on: March 26, 2008, 08:13:38 PM »
Well i just received my first Luminary Kit in today, and flash the Rowley uTasker example, worked just great.


37
µTasker general / Problems with FTP using Filezilla
« on: March 23, 2008, 03:15:13 AM »
I am using filezilla FTP program. it is having trouble sending files to my board.
hoever when i use a dos window and FTP that way i can send them just fine.
i have used filezilla for years with no problems, got any ideas why ?
the message i get in filezilla is:

Status:   Connecting to 192.168.0.10:21...
Error:   Could not connect to server
Status:   Delaying connection due to previously failed connection attempt...

This just keep repeating about 10-13 times then it will start sending some of the files.

38
NXPTM LPC2XXX and LPC17XX / Re: Olimex LPC2378-STK ethernet problem
« on: March 22, 2008, 05:16:43 AM »
Tim, i had the same problem with it booting up. i know that the reset button does not fix this. however if you power the board off then back on it will work properly.

Pages: 1 2 [3]