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 1230 - 1259 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1230
After many try and error iterations I just decided to suffer for now and implement fancy software interrupt thingie if I suffer too much.. Thanks for your...
lokkihybridi
Offline Send Email
Dec 7, 2005
1:25 pm
1231
I newer bother to put my JTAG debugger online and look when stacks are too small, so I decided to solve my problem like this.. I know it's ugly it consumes...
lokkihybridi
Offline Send Email
Dec 7, 2005
1:39 pm
1232
Yes. Just have them all wait on the same semaphore and have the caller call AvrXSetSemaphore until the queue is empty (e.g. mutex == NULL) Nice idea with the...
Larry Barello
lbarello
Offline Send Email
Dec 7, 2005
2:08 pm
1233
Hi Phillip, Did you ever get AvrX to work on an Atmega48? I am trying to do the same thing myself at the moment but don't want to flog a dead horse, so to...
letaage
Offline Send Email
Dec 20, 2005
4:30 am
1234
I'm using AvrX on Mega-48s in my Halloween candles. It's way overkill for the candles, but it works fine. I have three small tasks running (the lights, the...
William C. Landolina
billalltrade
Offline Send Email
Dec 20, 2005
4:38 am
1235
Hi Bill, Did you have to make many changes to the AvrX distribution code to get it to work with the Atmega48? I've managed to get the avrx library to compile...
letaage
Offline Send Email
Dec 20, 2005
5:41 am
1236
First - get the latest (2.6f I think) code from Larry Barrello's home page. It compiles without problems under GCC. Also, make sure you have the latest...
William C. Landolina
billalltrade
Offline Send Email
Dec 20, 2005
5:09 pm
1237
On the other hand, while the Kernel seems to be perfectly clean, I've rarely been able to compile specific examples for my hardware. I just read the examples...
William C. Landolina
billalltrade
Offline Send Email
Dec 20, 2005
6:52 pm
1238
Hi all I'm quite new to AvrX. Working with the buffered serial io i found a strange problem: I have a task that uses buffered serial output to send some...
hidklecks
Offline Send Email
Jan 4, 2006
2:09 pm
1239
Historically AvrX did not set up a frame pointer. Using low levels of optimization, or taking the address of an automatic variable (or declaring an array...
Larry Barello
lbarello
Offline Send Email
Jan 4, 2006
3:33 pm
1240
In my opionion, the interrupt routine you show below runs so quickly that I would never, never, have the code to disable UDRIE interrupts and the sei() and the...
stevech
stevech11
Offline Send Email
Jan 5, 2006
4:53 am
1241
It depends. Leaving interrupts off for the entire ISR blanks out interrupts for 300-400 cycles. That could be too much depending upon what your other ISR...
Larry Barello
lbarello
Offline Send Email
Jan 5, 2006
5:46 am
1242
Roger that. I'm unaccustomed to a micro doing general purpose serial I/O but simultaneously running code which needs such low interrupt latency. The buffered...
stevech
stevech11
Offline Send Email
Jan 5, 2006
8:28 am
1243
What's about changing the code like this...? AVRX_SIGINT(SIG_UART0_DATA) { IntProlog(); //<- move before declaration of i int c; Does gcc generates c now in...
christian kranz
cnkz
Offline Send Email
Jan 5, 2006
8:48 pm
1244
... No, as Larry already mentioned, the reason why there is no stack frame is the attribute "naked" given to the ISR function. He also gave a possible...
Alex Raimondi
hidklecks
Offline Send Email
Jan 5, 2006
10:03 pm
1245
Oh, yeah. You are right. The frame is still bogus. That must be why I left it as naked... ... Larry Barello www.barello.net...
Larry Barello
lbarello
Offline Send Email
Jan 6, 2006
1:31 am
1246
Hi there, I am looking for a good way to check the actual stack usage of each of the processes. I am rather new to OS's. One option would be to fill the memory...
marijnblokland
Offline Send Email
Jan 9, 2006
2:12 pm
1247
... I'm assuming you're using GCC here. Declare _end so as the code below can determine the start of free RAM. You may also need to declare the stack space in...
Brian Logan
getsmedown2001
Offline Send Email
Jan 9, 2006
5:08 pm
1248
Hello everyone, I am using AvrXSendMessage a lot in my code to have the different processes communicate. In the 'AvrX Issues' thread, I saw there is an issue...
marijnblokland
Offline Send Email
Jan 18, 2006
4:40 pm
1249
Do this instead (preserve state of I flag) AvrXIntSendMessage: ; rcall AvrXResetObjectSemaphore mov Zh, p1h mov Zl, p1l in tmp2, _SFR_IO_ADDR(SREG)...
Larry Barello
lbarello
Offline Send Email
Jan 18, 2006
5:03 pm
1250
Thanks Larry, I am not sure whether I was to run into problems, but I thinks it's better to be safe than sorry... Marijn...
marijnblokland
Offline Send Email
Jan 19, 2006
1:38 pm
1251
No, you are right to add the code. I have made a few touch-up's since 2.6f and, in my usual way, completely dropped publishing the code. Hmm. Perhaps some...
Larry Barello
lbarello
Offline Send Email
Jan 19, 2006
3:57 pm
1252
Your time is much appreciated Larry. Take care,...
Stephane Gauthier
stephane641
Offline Send Email
Jan 19, 2006
10:06 pm
1253
Thanks brian, it took a while before I actually found the time to have a look at it. It all works fine and I seem to have lots of space left. Greetz, Marijn...
marijnblokland
Offline Send Email
Feb 2, 2006
9:49 am
1254
Hi there, I just ran through my code when I noticed that at some point the software waits for a message on the queue. If the message is from a timermessage, it...
marijnblokland
Offline Send Email
Feb 15, 2006
9:45 am
1255
... There won't be a problem cancelling a timer message more than once. If the TMB is in the timer queue, it will be removed and the TMB count will be added to...
Brian Logan
getsmedown2001
Offline Send Email
Feb 15, 2006
3:03 pm
1256
well it sounds good to me. I just installed avrx an hour or so ago and havent got the example to compile yet due to serialio.S found posts dated as far back as...
frejo242
Offline Send Email
Feb 15, 2006
4:46 pm
1257
Thanks Brian, for the quick response. This answer will have me sleep better ;-) ... Van: avrx@yahoogroups.com [mailto:avrx@yahoogroups.com]Namens Brian Logan ...
Marijn Blokland
marijnblokland
Offline Send Email
Feb 16, 2006
7:24 am
1258
... and ... The 162 has 2 UARTs, so you need to be more specific which one you want to use. Have a look at the datasheet and header files how the right...
Stefan Wimmer
_wsw_
Offline Send Email
Feb 16, 2006
6:09 pm
1259
Hi. is anybody on this list using AVRX with the IAR compiler? If yes, where can I download an IAR compatible version? Any specific problems? Thanks, Yvon....
at91r40008
Offline Send Email
Feb 22, 2006
10:30 pm
Messages 1230 - 1259 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