Search the web
Sign In
New User? Sign Up
avrx · Support group for the AvrX RTOS
? 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 1608 - 1637 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1608
I just found this kernel, and have been trying to experiment with it. But alas the example code always gets this error (along with others, but this appears to...
th0th696
Offline Send Email
Jul 5, 2007
3:10 am
1609
... I get a ton of errors (but not the one you got) with 'make Timers' but everything works great with just 'make' I didn't try to find out why there are...
rtstofer
Offline Send Email
Jul 5, 2007
1:24 pm
1610
... I forgot to mention I started with 'make all' in the first place and only moved on to make Timers when trouble arose. I also forgot to mention I was using...
th0th696
Offline Send Email
Jul 5, 2007
6:10 pm
1611
To the original poster: dynamic memory allocation is often frowned upon in very small embedded systems since it can make programs much harder to reason about....
John Regehr
sbzz1e
Offline Send Email
Jul 5, 2007
7:33 pm
1612
I don't use malloc/free.I think that it's very slow. I've defined a large array,and create task stack and PID in array in AvrXInitTask,in AvrXTerminate,I mark...
dack_z
Offline Send Email
Jul 6, 2007
9:32 am
1613
After implementation I can report back on my limited findings. An ATMEGA8 running at 8MHz using AvrXFifo has no problem supporting 38400 bps on the serial...
shane_bolton
Offline Send Email
Jul 16, 2007
4:50 am
1614
I have a gap in my knowledge about AVRX and hope the group can provide the answers. Will a task swap happen as a consequence of a timer interrupt and ...
shane_bolton
Offline Send Email
Jul 16, 2007
4:53 am
1615
I believe the AvrXFifo.h file is faulty. When AVRX_INIT_FIFO is used in the same source file as AVRX_EXT_FIFO <fifoName>FifoSz is undeclared The macro:...
shane_bolton
Offline Send Email
Jul 16, 2007
11:00 am
1616
Yes, assuming a higher priority task has been scheduled as a result of the timer tick. The answer to your second question is No. The calling task will simply ...
larry barello
lbarello
Offline Send Email
Jul 16, 2007
2:10 pm
1617
Thanks Larry, That clears it up for me. Pretty much works as I expected. I agree with your comment about AvrXYield but I have myself in a situation where I...
shane@...
shane_bolton
Offline Send Email
Jul 16, 2007
10:25 pm
1618
You are close. Yield is unnecessary and wasteful and won't do what you want. What you want is to protect shared data structures accessed with non-reentrant...
larry barello
lbarello
Offline Send Email
Jul 16, 2007
11:39 pm
1619
Go it! In my case where I don't want to return until I have the memory requested I could do this: void *myMalloc(int size) { do { ...
shane@...
shane_bolton
Offline Send Email
Jul 17, 2007
4:37 am
1620
Hi Shane, ... You want to put a small sleep between each request. Otherwise, your thread may consume all of the CPU and not allow other threads to even release...
Dave Hylands
dhylands_99
Offline Send Email
Jul 17, 2007
8:01 am
1621
If the system can run out of buffer space and needs to wait, then some sort of message queue of malloc requests could be set up. The "myFree" routine would...
larry barello
lbarello
Offline Send Email
Jul 17, 2007
4:40 pm
1622
Larry, I like the idea of a message queue - a very elegant solution. Just goes to prove there is always someone out there smarter than me! Thanks, Shane ... ...
shane@...
shane_bolton
Offline Send Email
Jul 18, 2007
12:52 am
1623
Be careful: The queue idea is a dead-lock waiting to happen, unless you rummage through the queue looking for request to satisfy in which case the use of a...
larry barello
lbarello
Offline Send Email
Jul 18, 2007
1:31 am
1624
Hi, I am new to this AVRx. I did some c programs with ATMega16 microcontrollers long back. Now I started working on ATMega1280 and have to port AVRx on to this...
arm_techie arm_user
vbalaji_ece
Offline Send Email
Jul 22, 2007
1:50 pm
1625
From a quick glance at the data sheet, the 1280 should require no changes to AvrX. There will be changes for the 256kb chips as the return address is three...
larry barello
lbarello
Offline Send Email
Jul 22, 2007
4:07 pm
1626
Hi, I am new to this avrx. when I tried compiling an example that comes with AVRx package, I am getting the following error. Kindly help me in resolving it...
vbalaji_ece
Offline Send Email
Jul 24, 2007
8:04 am
1627
Hi, I am able to generate the avrx.a file successfully after goin through the documentation from AVR freaks.net. Kindly tell me how can I generate the hex...
arm_techie arm_user
vbalaji_ece
Offline Send Email
Jul 24, 2007
6:08 pm
1628
... through ... generate ... microcontroller. ... If you download version 2.6f from http://www.barello.net/avrx/index.htm the entire directory structure will...
rtstofer
Offline Send Email
Jul 24, 2007
7:18 pm
1629
... Simply put, the system can not find one of the input files and, since there is only one, it probably can't find Timers.c. Are you in the Examples...
rtstofer
Offline Send Email
Jul 24, 2007
7:25 pm
1630
Hi all, I am herewith pasting the output that i got when i do a "make gcc". C:\avrx\Examples>make clean rm -f Timers.d90 Messages.d90 MessagesAndData.d90...
arm_techie arm_user
vbalaji_ece
Offline Send Email
Jul 25, 2007
11:45 am
1631
When I build Timers.c from the 2.6f version of avrx, I don't get anything like what you posted. Latest version of avrx is here ...
rtstofer
Offline Send Email
Jul 25, 2007
1:01 pm
1632
Hi all, I could successfully compiled avrx and got avrx.a file using the make file for library in DOS mode (make gcc command). Then I went in to Examples ...
arm_techie arm_user
vbalaji_ece
Offline Send Email
Jul 26, 2007
6:18 am
1633
... the make ... Examples ... it has ... Which device are you using? Did you select the proper device in the Examples/makefile? You can get a list of "Known...
rtstofer
Offline Send Email
Jul 26, 2007
2:13 pm
1634
Hi, i want to develop a firmware for a robot with an ATMega644. Unfortunatly i don't have a starter kit so I will have to use the AVR Studio 4 simulator for...
tausend10001
Offline Send Email
Jul 30, 2007
4:23 am
1635
... I see nobody has jumped in on this. One big reason is that the simulator isn't the hardware. It's one thing to simulate simple, linear, programs. It is...
rtstofer
Offline Send Email
Aug 5, 2007
1:57 am
1636
Hi dudes, I am new to this community. I am facing problem interfacing DS1307 with AVR. Can anyone provide code in ASSEMBLY only to access DS1307 (as slave)...
Embedded Systemz
embeddedsystemz
Offline Send Email
Aug 14, 2007
1:47 pm
1637
... with AVR. Can anyone provide code in ASSEMBLY only to access DS1307 (as slave) connected on TWI (I2c) bus of Atmega 8/16/32 ? I need just the code for...
rtstofer
Offline Send Email
Aug 15, 2007
1:38 am
Messages 1608 - 1637 of 1912   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