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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 528 - 557 of 6234   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
528
The TICKS_PER_SECOND define can be changed, read the #if's in bsp.c, between 200 and 10 and Netburner libraries rebuilt to increase potential task switching...
Kevin McCall
kevin_d_mccall
Offline Send Email
Jun 1, 2005
4:06 pm
529
Hi, I think you maybe confusing "realtime OS" with "really fast". I would think you will need to store samples at speeds in then Kilohertz range.....then...
rustystny
Offline Send Email
Jun 1, 2005
4:23 pm
530
Hi, I had a similar application where analog data needed to be sampled at a fast speed (1 Mhz). it was implemented using a 12-bit ADC for data acquisition, a...
fmf
fmf14
Offline Send Email
Jun 1, 2005
5:38 pm
531
Hi, Tolga, In a nutshell, your sampling frequency (the "Nyquist rate") needs to be at least double the maximum frequency that you wish to be able to reproduce...
William J. Eikleberry
wjedesign
Offline Send Email
Jun 1, 2005
6:52 pm
532
We are always open to suggestions for new features and new capabilities. So please let us know when things aren't complete. Or when parts and pieces are ...
Paul Breed
pbreed
Offline Send Email
Jun 1, 2005
10:48 pm
533
I would like more freedom in task control. The OSTaskDel(priority) function in 2.51 allow me to have one task kill another. The OSTaskDelete(void) kills the...
rustystny
Offline Send Email
Jun 2, 2005
2:20 pm
534
... This is good feedback, I have always thought killing a task from another task was a bad idea, it can leave the world in a broken or wasteful state: ...
Paul Breed
pbreed
Offline Send Email
Jun 2, 2005
5:37 pm
535
I agree that there are many examples of real trouble you could get into by killing of tasks that have dynamic resources. I would also suggest that there are...
rustystny
Offline Send Email
Jun 2, 2005
6:53 pm
536
Here's my 5c worth: Two tasks; - A supervisor task that runs through the task states - A worker task that calls a function based on the command it is passed. ...
David Hawkins
dave_w_hawkins
Offline Send Email
Jun 2, 2005
7:09 pm
537
I see what your saying....and that pattern works great if the command can always run to completion. If the STOP command needs to override the MOVE command...
rustystny
Offline Send Email
Jun 2, 2005
7:16 pm
538
... Yeah ok. So really what you are doing when you cancel a command in mid-processing, is to delete all context associated with that task. I wonder if there is...
David Hawkins
dave_w_hawkins
Offline Send Email
Jun 2, 2005
7:26 pm
539
This has all sorts of interesting problems... Manager task has to be higher priority than the worker task your create destory. You don't even know if the sub...
Paul Breed
pbreed
Offline Send Email
Jun 2, 2005
8:49 pm
540
I like the OSSemPend with timeout idea....it does add some clarity. These are all good ideas, and as I said before, the are many ways to skin this cat. The...
rustystny
Offline Send Email
Jun 2, 2005
9:11 pm
541
As for task delete..... It would be very easy to modify the existing OSTaskDelete to delete a different task than the one running. Alas I don't think NetBurner...
Paul Breed
pbreed
Offline Send Email
Jun 2, 2005
10:17 pm
542
You could even add a Function.... OSSuicideTimeout(OS_SEM * sem, WORD time_ticks) If the sem penned it calls OSTaskDelete.......
Paul Breed
pbreed
Offline Send Email
Jun 2, 2005
10:19 pm
543
I like that....I'll let you know how it works out, and how many new ways I find to blow things up using it :) I understand the Netburner position on 2.51. I...
rustystny
Offline Send Email
Jun 2, 2005
10:53 pm
544
Ok...on to my next question :) I have a chunk of code that calcs the coff of an 8th order polynomial: a+b^2+c^3...etc. The points are the calc'd from...
rustystny
Offline Send Email
Jun 2, 2005
10:58 pm
545
... Put your calcs into a single function, then compile with gcc -S to get an assembler output, you might need another switch for interlisted assembler ... ...
David Hawkins
dave_w_hawkins
Offline Send Email
Jun 2, 2005
11:21 pm
546
... Seems potentially possible if my guess of the clock is right. Check the assembler :) Dave...
David Hawkins
dave_w_hawkins
Offline Send Email
Jun 2, 2005
11:28 pm
547
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=7520980071...
seulaterbuddy
Offline
Jun 3, 2005
2:03 am
548
... This problem of 'killing tasks' also occurs in pthreads etc based threaded code. The generally supported solution there is 'co-operative' cancellation,...
David Hawkins
dave_w_hawkins
Offline Send Email
Jun 3, 2005
4:01 pm
549
Can Mod5282 supports USB and RS232 input? How to do?...
Drsmtam
Offline Send Email
Jun 4, 2005
12:56 pm
550
... The mod5282 does not have USB support. Our mod5272 does offer device-mode usb support. Both the mod5272 and mod5282 have UARTs that can be used for rs232....
netburnergroup
Offline Send Email
Jun 6, 2005
10:13 pm
551
I've designed a product around the 5282 and also want to add USB. Sounds like I need to convert over to the 5272 then. How much software support is there for...
fmf
fmf14
Offline Send Email
Jun 6, 2005
10:23 pm
552
Hello, Rather than switch platforms, you could also add an external USB chip. One to look at is from Cypress: ...
netburnergroup
Offline Send Email
Jun 6, 2005
11:20 pm
553
Thanks for the info on the adding a USB chip. Do you happen to know how much software support is there, what embedded drivers might be available? I don't...
fmf
fmf14
Offline Send Email
Jun 7, 2005
12:40 am
554
Have just "downgraded" to devcpp V1.13 and have had to re-install devcpp V1.10! The newer version doesn't allow spaces in directory names! I cannot believe...
kevin_d_mccall
Offline Send Email
Jun 8, 2005
10:37 am
555
Hello, This was a side effect, and limitation, of cygwin when we added the ability to have project source code located in multiple directories. In other words,...
netburnergroup
Offline Send Email
Jun 8, 2005
9:25 pm
556
I find the existing v1.12 IDE editor somewhat cumbersome to use. Here are a few additional suggestions that come to mind to improve it. 1) The File/Class pane...
fmf
fmf14
Offline Send Email
Jun 9, 2005
12:26 pm
557
I have to disagree with FMF on "Also, when tabbing a brace over, it should always tab to the same indent / outdent position of the matching brace (when it can...
seulaterbuddy
Offline
Jun 9, 2005
12:43 pm
Messages 528 - 557 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