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...
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 790 - 819 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
790
I think I've found a rather nasty bug in IntProlog(). I've been having one hell of a time trying to figure out why r1 is occasionally non-zero in my interrupt...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 7, 2004
9:37 pm
791
R1 bug in IntProlog()I am impressed: that must have been *very* hard to figure out. What I don't understand is how R1 is getting set with a non-zero value. It...
Larry Barello
lbarello
Offline Send Email
Mar 7, 2004
10:14 pm
792
Actually, I thought it might be the interrupt handlers at first, too. But I spent some time looking at the disassembled code for my interrupt handler and...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 7, 2004
11:09 pm
793
BTW, Isn't r1 part of the saved state when interrupting anything but the idle task (which doesn't use r1 itself) ? So I would think that I wouldn't need to...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 7, 2004
11:13 pm
794
I ended up getting very sick last night (there's something really evil going around) and my last two emails don't really make much sense. Sorry. -brian...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 8, 2004
12:35 pm
795
Hi Larry, Strange that you should mention that nested interrupts may be a problem, because you're right! I spent some time today trying to track down some ...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 10, 2004
4:03 am
796
R1 bug in IntProlog()I have not been able to really focus on this issue due to other projects. My previous projects with AvrX generally have been stable so I...
Larry Barello
lbarello
Offline Send Email
Mar 10, 2004
4:32 am
797
Yeah, I did mean the RAM. AvrX is actually impressively clean. I really like it, although I've got to get through all of these interrupt issues. I'm starting...
Brian Cuthie
codejunky2000
Offline Send Email
Mar 10, 2004
1:06 pm
798
Just to follow up on this issue, for those who have been following it. There doesn't appear to be *any* problem with AvrX. Brian tripped across the problem...
Larry Barello
lbarello
Offline Send Email
Mar 11, 2004
4:52 pm
799
I am in the process of writing code for a fairly large (for me) design. Up to now I have written several little AvrX based programs that test out one or more...
dlh2612000
Offline Send Email
Mar 11, 2004
10:42 pm
800
I think your approach is the best way. AvrX is a very simple statically linked system. That is why it is so small and fast. The macro system for creating the...
Larry Barello
lbarello
Offline Send Email
Mar 12, 2004
5:38 am
801
Hi Leon, I have had the exact same problems as you write about in your posts. I then downloaded the "fixed" version of the timers example from the Files...
tjultjuller
Offline Send Email
Mar 14, 2004
2:25 am
802
The biggest difference between the simulator and the actual hardware is the fuse bit settings. Depending upon chip that could affect your clock options, JTAG...
Larry Barello
lbarello
Offline Send Email
Mar 14, 2004
2:57 am
803
Hi Larry, I am using the at90s8535, and the 3 fuses "Lock1" "Lock2" and "FSTRT" are all left unprogrammed (Unchecked in PonyProg) /Rene ... hardware is the ......
tjultjuller
Offline Send Email
Mar 14, 2004
7:01 am
804
Then the actual hardware should work identical to the simulated chip. If it doesn't work at all, then you have either a wiring problem, a clock problem or a...
Larry Barello
lbarello
Offline Send Email
Mar 14, 2004
2:46 pm
805
Hey guys, I'm having the same problems. I just downloaded avrx2.6e for WinAVR and I'm trying to get the timers example to work. I'm using an ATMega128 so I...
happychrisguy
Offline Send Email
Mar 14, 2004
2:55 pm
806
Hi Chris, I see the same thing, in AVRstudio4 the CPU loops in the AVRX_SIGINT (SIG_OVERFLOW0) when it's not servicing the tasks, maybe it is supposed to ? Put...
tjultjuller
Offline Send Email
Mar 14, 2004
5:46 pm
807
The warning you mentioned is just the ELF->COFF converter complaining about stuff it can't figure out. It is actually a limitation of the COFF file format,...
Larry Barello
lbarello
Offline Send Email
Mar 14, 2004
5:59 pm
808
I used this code: int main(void) // Main runs under the AvrX Stack { outp(0xFF, LEDDDR); while(1) { outp(inp(SWITCH), LED); } } And the LED's...
tjultjuller
Offline Send Email
Mar 14, 2004
6:42 pm
809
The examples still won't work in target..... could it be possible that someone can compile the timers example to an at90s8535 (LEDS are hardwired to PORTB on...
tjultjuller
Offline Send Email
Mar 16, 2004
9:44 am
810
Hello all i user the program WinAVr to programm and coding Software for my Atmega128. Yesterday i found this great Yahoo group a solve some Problems... But now...
mboggi2000
Offline Send Email
Mar 24, 2004
2:48 pm
811
Hi Guys, I am trying to compile AVRX with GCC ver 3.78.1 and I am receiving compiler errors. C:/AVR/avrx/serialio.s: Assembler messages: ...
awnsheghlien
Offline Send Email
Mar 27, 2004
1:23 am
812
Which version of AvrX do you have? The latest .zip (2.6e) from Yahoogroups files has the changes needed to solve these problems. It has to do with changes to...
Larry Barello
lbarello
Offline Send Email
Mar 28, 2004
2:30 pm
813
since few weeks i have a small problem with the AVRX RTOS. i installed the Winavr version and downloaded the avrxrtos from the Yahoo groups site. Then i...
mboggi2000
Offline Send Email
Mar 28, 2004
3:00 pm
814
The basic problem is that your link command includes "main.o" twice. Apparently someone modified the link line in the makefile and added a spurious "$<". It...
Larry Barello
lbarello
Offline Send Email
Mar 28, 2004
4:21 pm
815
Thanks for your help. After much more reading of the posts in this group I have got it compile. Ken ... Yahoogroups ... do with ... handles I/O ... in...
awnsheghlien
Offline Send Email
Mar 28, 2004
10:32 pm
816
Earlier this month I posted a query on how to spawn multiple copies of a task. This was for a case where I had three identical links to other boards and I...
dlh2612000
Offline Send Email
Mar 30, 2004
1:54 pm
817
Hi all, I've been trying to compile avrx with gcc for the atmega169 so I can run it on a butterfly. After changing GCCMCU to atmega169 in the makefile, all the...
gordonrice@...
gordon918
Offline Send Email
Apr 7, 2004
8:32 pm
818
Hi Gordon, Yes, some registers have moved and in some cases they moved to an address that is outside the reach of some instructions (watchdog register comes to...
ab_enatel
Offline Send Email
Apr 7, 2004
9:58 pm
819
The C compiler changed the way they defined registers about two years ago - in part to accommodate this issue of the newer chips having I/O registers above...
Larry Barello
lbarello
Offline Send Email
Apr 7, 2004
10:47 pm
Messages 790 - 819 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