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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 817 - 846 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
820
Thanks, Larry. Singlestep I can live without, but serial i/o would be nice to have. I see where Stephane Gauthier has written a serialio module in C. Has...
gordonrice@...
gordon918
Offline Send Email
Apr 8, 2004
12:17 am
821
Hi Gordon, it helps if you let us know which avrgcc version you're using :-) I just got two butterflies myself and while I'm not sure yet if I'll run avrx I...
Sander Pool
sander_pool
Offline Send Email
Apr 8, 2004
12:27 am
822
Hi Sander, I'm using the very latest WinAVR (20040404) that was just released this week. I've compiled some example code so I know the gcc compiler can handle...
gordonrice@...
gordon918
Offline Send Email
Apr 8, 2004
12:55 am
823
Hello I have a problem with the serialio.s file I am using avr-gcc version 3.2 and avrx-2.6e When i try to compile the serialio.s file i get the following ...
larsvaeverpetersen
larsvaeverpe...
Offline Send Email
Apr 8, 2004
1:54 am
824
Thanks, Arthur. I downloaded the latest version of iom169.h (April 6, 2004) and this seemed to fix the register alias problem. But I'm still getting the ...
gordonrice@...
gordon918
Offline Send Email
Apr 8, 2004
3:53 am
825
The problem is with SBI/CBI and IN/OUT instructions: they only work on the first 64 bytes of address space (e.g. 0x20->0x5F). You need to replace them with...
Larry Barello
lbarello
Offline Send Email
Apr 8, 2004
4:55 am
826
Hi, That code should be fairly general but make sure to review the bit settings in the INIT routine as I had to change 1 bit when porting stuff from mega8 to...
Stephane Gauthier
stephane641
Offline Send Email
Apr 8, 2004
6:14 am
827
Hi! Is it possible to create an array of MessageControlBlocks? Thanks in advance! /Mattias...
e96maot
Offline Send Email
Apr 22, 2004
3:55 pm
828
No problem; I had a case recently where I needed to do this and it works quite well. In addition to MCB's, I also had an array of TimerControlBlocks. Dave...
dlh2612000
Offline Send Email
Apr 23, 2004
10:14 am
829
Do you have any simple example where you create and use the array? Thanks in advance, Mattias...
e96maot
Offline Send Email
Apr 23, 2004
12:18 pm
830
I don't have any examples other than the program I'm working on and that one is far from simple. What is it you are trying to do? Dave...
dlh2612000
Offline Send Email
Apr 23, 2004
3:26 pm
831
I would like to see an example of how to create an array of MessageControlBlocks. i.e. MessageControlBlock b1,b2; MessageControlBlock block[5]={}; block[0]=b1;...
e96maot
Offline Send Email
Apr 23, 2004
5:27 pm
832
I encountered local variable (in r28) corruption in interrupt handler AVRX_SIGINT(SIG_2WIRE_SERIAL). Here is what I think is happening, based on examining the...
Jeff Hurst
barn87gulp
Offline Send Email
Apr 26, 2004
3:13 am
833
This shouldn't be a problem. IntProlog is only called when switching from one context to another. The Y register (frame pointer) is meaningless upon entry...
Larry Barello
lbarello
Offline Send Email
Apr 26, 2004
7:45 am
834
Shouldn't, unless your brain is warped by years of c89, and you do this: AVRX_SIGINT(SIG_2WIRE_SERIAL) { uint8_t TWSR_status = (TWSR & TW_STATUS_MASK); ...
Jeff Hurst
barn87gulp
Offline Send Email
Apr 28, 2004
4:34 am
835
Hi! I'm trying to figure out a part of the source found in avrx.h. It looks like this: <code> TaskControlBlock start ## Tcb = \ { \ ...
torgrim_brochmann
torgrim_broc...
Offline Send Email
May 8, 2004
7:56 pm
836
Hi, ... You need to read about the C preprocessor. What you're looking at (and indeed should have quoted the full item) is a macro, and the double ## is the...
Neil Johnson
nej22uk
Offline Send Email
May 8, 2004
8:04 pm
837
I want to test AVRx on Mega162. Can anyone help me for providing something about AVRX running on Mega162?...
gufan3721
Offline Send Email
May 9, 2004
2:00 pm
838
Hi. first that English is not my first language,thus excuse me. when i deal with semaphore types in AvrX had some problem. i worked with freertos & Learn that...
mahdi j
mahditooba
Offline Send Email
May 9, 2004
2:01 pm
839
Avrx is pretty generic. The two areas that need CPU specific attention are 1. the interrupt vector table 2. the serial I/O defines (they seem to change from...
Larry Barello
lbarello
Offline Send Email
May 9, 2004
2:32 pm
840
1. That is the way I did it. Semaphores have state info. The task/interrupt handler that is triggering the semaphore might have done it *before* the receiver...
Larry Barello
lbarello
Offline Send Email
May 9, 2004
2:32 pm
841
... This is exactly why I wrote a simple message queue mechanism. The current AvrX "message" is like a letter box that can only hold one letter at a time;...
Neil Johnson
nej22uk
Offline Send Email
May 9, 2004
2:43 pm
842
Thanks!...
torgrim_brochmann
torgrim_broc...
Offline Send Email
May 9, 2004
9:54 pm
843
Thank you. I test Avrx on the Mega162 successfully. But, when i make BasicTest1, occured the warnings like: "Warning: ignoring function IntProlog() outside any...
gufan3721
Offline Send Email
May 10, 2004
6:44 am
844
That is just the elf2coff converter complaining that it can't put the symbol information into the debugger file. Coff, apparently, is somewhat limited in what...
Larry Barello
lbarello
Offline Send Email
May 10, 2004
1:23 pm
845
Thanks. ... the symbol ... limited ... unit" ... chip...) ... as...
gufan3721
Offline Send Email
May 11, 2004
12:26 am
846
Hi everyone, ... I have exactely the same problem! There was no reply to Steve's message in the list archieve - does that mean that there is no solution? or...
Lars Dalgaard
larsdalgaard...
Offline Send Email
May 14, 2004
12:50 am
Messages 817 - 846 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