Search the web
Sign In
New User? Sign Up
netburner_group · NetBurner - Embedded Ethernet
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 739 - 775 of 6234   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
739
Hi, I'm writing some network code on a Netburner MOD5270, and I can't find the right function to call to rapidly check whether a listening socket has anything...
quinpendragon
Offline Send Email
Sep 2, 2005
7:16 am
740
Hi, I need some assitance with the MOD5282, hoping someone can help me out. I have a time critical interrupt that occurs at a fixed rate of 10 mS to 250 mS....
fmf
fmf14
Offline Send Email
Sep 2, 2005
11:27 am
741
do you have to take care of the external FIFO memory this inside the interrupt ? or could you rather wake up an idle thread when that interrupt fires, and then...
seulaterbuddy
Offline
Sep 2, 2005
11:34 am
742
How about int ZeroWaitSelect(int nfds, fd_set * readfds, fd_set * writefds, fd_set * errorfds) This returns immediately. -John ... ...
john martin
jmartin_xx
Offline Send Email
Sep 2, 2005
1:00 pm
743
Reading the FIFO is handled in the interrupt routine. The FIFO needs to be fully read out before the next interrupt occurs. So, whether it is handled within...
fmf
fmf14
Offline Send Email
Sep 2, 2005
2:07 pm
744
... If you pass a timeout value of 0, it will not wait after checking the file descriptors. [That is, set the contents of the timeout structure to zero. If you...
Bill Randle
billr1472
Offline Send Email
Sep 2, 2005
2:33 pm
745
Several comments: One fundamental problem is that you have 2 things that need interrupts. The UART and the FIFO. In your FIFO INTERRUPT macro setting the 2nd...
Paul Breed
pbreed
Offline Send Email
Sep 2, 2005
4:41 pm
746
A select time out value of 0 waits forever. You need to use int ZeroWaitSelect(int nfds, fd_set * readfds, fd_set* writefds, fd_set * errorfds) as correctly...
Paul Breed
pbreed
Offline Send Email
Sep 2, 2005
4:41 pm
747
... Sorry, my bad. I was going by the Linux man page; I guess I should have looked at the code. -Bill ... web. ... ...
billr@...
billr1472
Offline Send Email
Sep 2, 2005
5:08 pm
748
Paul, Thanks for the feedback. If I let the UART interrupt the FIFO read per your approach below, how is this different than my current situation where the...
fmf
fmf14
Offline Send Email
Sep 2, 2005
6:10 pm
749
The short version is you can't do more than you can do. Which is more important UART or FIFO?...
Paul Breed
pbreed
Offline Send Email
Sep 3, 2005
12:14 am
750
Thank you both, this is what I was looking for. Dunno how I missed this one on Friday. (right under select() in the documentation, no less. :P ) Cheers, Quin...
quinpendragon
Offline Send Email
Sep 5, 2005
3:05 am
752
I'm having issues rebuilding the system library. Executing make clean yeilds the following error: make: makefile: line 74: Error -- Expecting macro or rule...
Jason George
georgejasonm
Offline Send Email
Sep 6, 2005
6:35 pm
753
This is almost always a path problem. You are launching some other 'make' Paul...
Paul Breed
pbreed
Offline Send Email
Sep 7, 2005
1:14 am
754
Paul, Thanks for all the help. I used "setenv.bat" in /nburn/ to set up the correct path to make. Once this was done I rebuilt the system files with my user...
Jason George
georgejasonm
Offline Send Email
Sep 7, 2005
1:18 pm
758
group: has anyone out there connected a touchscreen LCD (pc variety, for instance) to a netburner module? thanks chris ruff...
chris ruff
cgruffcgruff
Offline Send Email
Sep 13, 2005
1:55 pm
759
Hello, I am interfacing to an external device(a microprocessor that simulates sensor data). The external device is connected to the mod5282's databus, address...
Amir Rubin
arubin226
Offline Send Email
Sep 13, 2005
10:24 pm
760
amir: you have physically connected the 5282 address, data lines to a chip that is de-powered while the 5282 is left powered-on? am i understanding this...
chris ruff
cgruffcgruff
Offline Send Email
Sep 14, 2005
11:04 am
761
Hello Chris, Sorry for the confusion: The external device (which is a microprocessor that outputs simulated sensor data) is always powered on. I just turn off...
Amir Rubin
arubin226
Offline Send Email
Sep 14, 2005
3:32 pm
762
amir so your bussed peripheral ceases to ack, thereby hanging the read? what if you always support the read from the 5282 and return something that clues the...
chris ruff
cgruffcgruff
Offline Send Email
Sep 14, 2005
3:58 pm
763
Hi, Just wanted to mention that the address and data busses of the MOD5282 are unbuffered. So any corruption of those signals by an external device (for...
fmf
fmf14
Offline Send Email
Sep 14, 2005
10:56 pm
764
I setup an IRQ from the external device (the IRQ triggers when the device is ready for the netburner to read) to the netburner whose ISR posts to a Mbox....
Amir Rubin
arubin226
Offline Send Email
Sep 15, 2005
3:40 pm
768
I've noticed in the user manual that GetUartErrorReg is listed as a valid function for the SB72 platform. I would like to access the error register on the...
Jason George
georgejasonm
Offline Send Email
Sep 19, 2005
5:48 pm
769
Hi all, I have a Netburner kit and am in "learning" mode (be kind :-). My company will have the need to provide http content in several languages, including...
jearley9
Offline Send Email
Sep 20, 2005
3:17 pm
770
The server just serves up whatever you put in the html subdirectory. So if you put in multibyte HTML files then you will get multibyte HTML files. If your...
Paul Breed
pbreed
Offline Send Email
Sep 20, 2005
5:00 pm
771
(Again minus typos) The server just serves up whatever you put in the html subdirectory. So if you put in multibyte HTML files then you will get multibyte HTML...
Paul Breed
pbreed
Offline Send Email
Sep 20, 2005
10:46 pm
772
We have had a number of customers report that they had very slow network debugging. We could not reproduce it here. Most if not all the people with the problem...
Paul Breed
pbreed
Offline Send Email
Sep 21, 2005
4:58 pm
773
I have a program that uses a command/response protocol over TCP to allow external control of a set of services (FPGA control, LEDs, etc). For some reason I...
Adam Tichelaar
actichelaar
Offline Send Email
Sep 26, 2005
8:51 pm
774
Are you calling listen each time? If so remember to close the listening socket. If you want multiple connections, it's easier to leave the listen open and then...
Paul Breed
pbreed
Offline Send Email
Sep 26, 2005
9:30 pm
775
It sounds like your program is not processing the disconnect and closing the socket. Are you putting the socket into the exceptfds and processing the exception...
john martin
jmartin_xx
Offline Send Email
Sep 26, 2005
9:52 pm
Messages 739 - 775 of 6234   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help