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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1238 - 1267 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1260
Unless there's a compelling reason to use IAR, I would recommend the WinAVR with GCC from avrfreaks.net; if you have the STK500 development board, the latest...
Steve Hersey
n1xnx
Offline Send Email
Feb 22, 2006
11:08 pm
1261
Steve, just after sending my request I found what I needed in two older emails on this list. I use IAR because I work with different processors including arm, ...
at91r40008
Offline Send Email
Feb 23, 2006
3:12 am
1262
Hi anybody help me? How to use iar linker? I have tried to build avrx asembler for barelo robot source code,but there are some error with linker. I use the...
suwong_lamp
Offline Send Email
Feb 25, 2006
1:53 pm
1263
I'm just getting started with avrx and looking at the monitor task. It looks like it's been left behind by recent changes to serialio, so I shouldn't really...
wimlwiml
Offline Send Email
Mar 5, 2006
6:26 am
1264
Hello, Is anyone using AvrX in an automotive or other safety-critical product? Thanks, Jonathan...
Jonathan Goldberg
jonathan_gol...
Offline Send Email
Mar 7, 2006
5:19 pm
1265
I am using AVRX as a CNC controller. I made G-code parser and linear/circular interpolation codeto support G01, G02, G03 command. I found AVRX code are not...
Muntak son
muntak
Offline Send Email
Mar 8, 2006
4:10 pm
1266
Hi everyone, I found in the database section that AvrXTestSemaphore should be changed to preserve the I-bit. I copied the code into this message. Can anyone...
marijnblokland
Offline Send Email
Mar 16, 2006
12:01 pm
1267
Hi everyone, I found in the database section that each timercontrolblock on the stack ought te be initialized. As my programming skills are rather limited I...
marijnblokland
Offline Send Email
Mar 16, 2006
12:50 pm
Messages 1238 - 1267 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