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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 181 - 210 of 1813   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
181
Hi, I am having some problems with the AvrX RTOS debug monitor. Only the 2 first chars appears on the terminal screen at start. After some debugging it shows...
seathab
Offline Send Email
Jan 10, 2002
12:36 pm
182
It sounds like you are running on a different chip than what you built for. One of the annoying things about the AVR is that the vectors shift around with...
Larry Barello
lbarello
Offline Send Email
Jan 10, 2002
2:59 pm
183
It depends upon how you use the usart. The drivers I wrote don't enable the Tx interrupt but use the "Data Buffer Empty" interrupt. It cannot be enabled...
Larry Barello
lbarello
Offline Send Email
Jan 13, 2002
2:43 pm
184
To check the program i put a breakpoint on interrupt _vector_10 (B1), and one on the first line in function _uart_data_ (B2). When running in full speed, first...
seathab
Offline Send Email
Jan 14, 2002
4:09 pm
185
I there a set of rules for converting a program from the Atmel assembler format to gnu assembler ? I've struck out looking for one tonight -- I'm grasping at a...
Christopher X. Candreva
ccandreva
Offline Send Email
Jan 22, 2002
3:57 am
186
I don't know of any tools. The op-codes are identical and the psuedo ops are very similar so conversion should be pretty easy. If you look at AvrX code from...
Larry Barello
lbarello
Offline Send Email
Jan 22, 2002
4:33 am
187
Hi all, I have downloaded and tried the avrx. When testing the examples, the only thing that seems to work is the timers example. All other examples seems to...
seathab
Offline Send Email
Jan 23, 2002
9:41 am
188
Any compiler after 2.95 should work fine. I am using 3.0.2 and it works fine. The other examples require you to push switches to make things happen... ... ...
Larry Barello
lbarello
Offline Send Email
Jan 23, 2002
3:44 pm
189
Hi again, I found the problem!. In the example messages, the inp() function was missing when reading the port. Regarding the interrupt-problem I had, i just...
seathab
Offline Send Email
Jan 24, 2002
11:54 am
190
The jump to "_uart_data_" should have been automatic. The symbol "SIG_UART_DATA" is a define in sig-avr.h as "_uart_data_". It is possible that the AvrX...
Larry Barello
lbarello
Offline Send Email
Jan 24, 2002
3:57 pm
191
... I'm seeing it now. It's mostly the 'defined' syntax. I was going to write a quick perl script to do the translation, but I've found gnu exmaples for what...
Christopher X. Candreva
ccandreva
Offline Send Email
Jan 25, 2002
4:05 pm
192
Could Larry (or anyone else for that matter) please take a look at the two files at http://www.westnet.com/~chris/MameKB/ ? test.c is a striped version of my...
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 1, 2002
4:40 am
193
If you are only getting one or two characters when you reset, then you most likely have the wrong interrupt table specified. With GCC the correct interrupt...
Larry Barello
lbarello
Offline Send Email
Mar 1, 2002
9:02 pm
194
... Didn't help. That IS what I did (built for 8535 and I'm testing on a 8515), but I did a make clean, rebuilt everthing, and serial IO still doesn't work. ...
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 2, 2002
2:14 am
195
After fetching attachments from AVRX messages most of them are empty. Only the file serialio.h could be downloaded successfully. Of course it is possible that...
ttvv2930
Offline Send Email
Mar 2, 2002
11:18 pm
196
There are very few attachments in this news group that I know of. What specifically are you looking for? The latest distribution www.barello.net/avrx has few...
Larry Barello
lbarello
Offline Send Email
Mar 3, 2002
12:49 am
197
Hi, ... The files I am looking for are the ones you posted together with serialio.h (serialio.c, ...). ... Thank you for quick response and for the...
ttvv2930
Offline Send Email
Mar 3, 2002
1:02 am
198
I'm a bit confused on the use of globals across processes under AvrX. The overview.html document on the web site seems to indicate this is not something to do...
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 3, 2002
8:02 pm
199
You can't control where GCC puts globals (it tends to sort them based upon some mysterious criteria), but a global is a global so you can use them to pass...
Larry Barello
lbarello
Offline Send Email
Mar 3, 2002
11:50 pm
200
... Yes. Ok. I think the meaning of "fully pre-emtable" and "co-operative" is finally starting to sink in. :-) I'm used to them being opposites, I think I...
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 4, 2002
3:32 am
201
Hello! Please excuse a couple of simple questions, but I am a bit puzzled and can not find any straight forward directions on the net. I am very new to...
Gerard Hickey
gerard_hickey
Offline Send Email
Mar 9, 2002
1:48 am
202
You need to convert the .elf to .hex. Look at the makefile example. It will have a target to convert .elf to .hex. If you say: "make MessageTimers.hex"...
Larry Barello
lbarello
Offline Send Email
Mar 9, 2002
2:27 am
203
--On Friday, March 08, 2002 6:17 PM -0800 Larry Barello ... Thanks for the quick reply. Unfortunately, I don't see the target in the makefile. It looks like...
Gerard Hickey
gerard_hickey
Offline Send Email
Mar 9, 2002
3:36 am
204
... For what it's worth, I had to comment out these two lines: #%obj: %elf # $(BIN) -O avrobj $< $@ Then just typed: make gcc and it made everything....
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 9, 2002
3:49 am
205
Gerard e-mailed me back directly, but here are some other Linux/AVR resources: ... uisp -- http://www.amelek.gda.pl/avr/uisp/ I'm using the STK500 devel board,...
Christopher X. Candreva
ccandreva
Offline Send Email
Mar 9, 2002
6:03 am
206
Sorry about that: I used .ROM extension in that particular makefile - it is the same as .HEX. I.e. the .rom output is hex. Confusing? The lines Christopher...
Larry Barello
lbarello
Offline Send Email
Mar 9, 2002
7:27 am
207
Hello everyone. My name is Adam Read, and I've joined this group to learn more about avrx (strangely enough). I've got some experience programming the 8535,...
delsarok
Offline Send Email
Mar 19, 2002
5:55 am
208
If only one interrupt were being fielded at a time then everything could go onto the task stack. However, I wrote AvrX to be generally re-entrant, so...
Larry Barello
lbarello
Offline Send Email
Mar 25, 2002
4:15 pm
209
The "file not found" error occurs if you move any file after assembling or compiling it. The complete file path name is used by Astudio and has to be present...
Larry Barello
lbarello
Offline Send Email
Mar 31, 2002
3:52 pm
210
"objects" (things that get queued) have the forward pointer as the first element. The second element is the semaphore. Timers and messages are examples of...
Larry Barello
lbarello
Offline Send Email
Apr 1, 2002
4:28 pm
Messages 181 - 210 of 1813   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help