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 1189 - 1218 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1189
Mr Barello: Thank you. I have found the reaseon.The code was broken in the Serialio.S file .Beacaues the name of the UART interrupt Vector was different ...
mygodlsh
Offline Send Email
Oct 2, 2005
10:10 am
1190
Hi all, I have succesfully ported AVRX on to atmega64. It was very interesting. We have designed a Handheld device with LCD(graphics), and a keyboard...
ashwin athani
ashwin_athani
Offline Send Email
Oct 3, 2005
5:34 am
1191
I have a bunch of projects using AVRX on an ATMEGA64. Usually about 5 or 6 tasks. It works wonderfully, and there's plenty of internal RAM for both the OS and...
William C. Landolina
billalltrade
Offline Send Email
Oct 3, 2005
3:44 pm
1192
Hi, I am using the latest distribution of WinAVR and AvrX 2.6f for GCC. The problem I am having is that when I set the ADC up for single conversion mode and...
elefth
Offline Send Email
Oct 8, 2005
2:16 pm
1193
The pragma is for the IAR compiler. GCC ignores it. I have used ADC single conversion w/interrupts quite a bit (although more typically as a background...
Larry Barello
lbarello
Offline Send Email
Oct 8, 2005
2:50 pm
1194
Hi, I have tried to simplify my code as much as possible to identify the problem and still have no luck. My user code now consists of the bare minimum: a main...
elefth
Offline Send Email
Oct 8, 2005
4:30 pm
1195
... Code looks good to me. Have you tried commenting out the sleep enable line of code? Also, are you sure you have ATmega32 set in the makefile, as other...
Brian Logan
getsmedown2001
Offline Send Email
Oct 9, 2005
12:00 am
1196
This is a very bizarre problem but it does not look like the problem is with AVRx. When the sleep instruction is executed in IdleTask with the ADC enabled, an...
Barry Sanders
bpar1999
Offline Send Email
Oct 9, 2005
5:16 am
1197
Ok, I have tried enabling the sleep mode in another simple program (in C) that doesn't use AvrX. Still had the same problem, so it's not an AvrX specific...
elefth
Offline Send Email
Oct 9, 2005
11:47 am
1198
Look at page 31 of the mega32 data sheet. Read the paragraph titled "Idle Mode". ADC conversions starts upon entry into IDLE mode. I didn't know about this...
Larry Barello
lbarello
Offline Send Email
Oct 9, 2005
3:39 pm
1199
... Scary stuff! I wonder what the reasoning behind that was? I can understand an ADC conversion being started when going into ADC noise reduction mode, but...
Brian Logan
getsmedown2001
Offline Send Email
Oct 9, 2005
4:15 pm
1200
Well spotted Larry, as Brian says... I wonder why this is. Anyway, since power consumption is not an issue here I can leave without the sleep mode, although I ...
elefth
Offline Send Email
Oct 9, 2005
8:00 pm
1201
I don't think this is a big deal. Turn off the interrupt flag (mask) after reading the ADC so you don't respond to the next conversion. I am pretty sure that...
Larry Barello
lbarello
Offline Send Email
Oct 9, 2005
11:12 pm
1202
Dear all, I'm a newbie to AvrX. I have some questions regarding AvrX. 1. In defining a task we should write: AVRX_TASKDEF(myTask, 10, 3) what the number 10 & 3...
Giri Yagit Atmaja
giri_y_atmaja
Offline Send Email
Oct 11, 2005
1:02 pm
1203
... From: Giri Yagit Atmaja To: avrx@yahoogroups.com Sent: Tuesday, October 11, 2005 2:24 AM Subject: [avrx] avrx inquiry Dear all, I'm a newbie to AvrX. I...
Satyanandam Gullapudi
satyanandam_g
Offline Send Email
Oct 13, 2005
2:01 am
1204
I'm fairly new to AVRX myself, but here's what I know about these questions. Of course, you've already read up at www.barello.net/avrx and www.avrfreaks.net. ...
Steve Hersey
n1xnx
Offline Send Email
Oct 13, 2005
2:19 pm
1205
Hi, i tried to add some code to the AVRX timer routine. This code was for decoding a digiswitch. Without my code the software runs fine (two tasks are writing...
cnkz
Offline Send Email
Oct 14, 2005
12:28 am
1206
Yes, you are using registers before AvrX saves them in IntProlog(). Move your code to after the IntProlog(). ... Larry Barello www.barello.net...
Larry Barello
lbarello
Offline Send Email
Oct 14, 2005
1:40 am
1207
Hi, thanks for the fast answer, but that still does not work. I have to look deeper into the AVRx code... Usually gcc should take care about the register...
christian kranz
cnkz
Offline Send Email
Oct 14, 2005
6:28 pm
1208
The problem occurs if one or both of the lines enc_last += i; enc_delta += (i & 2) - 1; are in the code. This code lines are special because enc_last is a...
christian kranz
cnkz
Offline Send Email
Oct 14, 2005
7:24 pm
1209
... Normally, GCC would save the registers used in the interrupt handler, however, AvrX needs to save all the registers as it may need to switch tasks on exit...
Brian Logan
getsmedown2001
Offline Send Email
Oct 15, 2005
12:05 am
1210
Hi Brian, ... I don't think so at the moment. After hours searching the problem i am now simulating with AVR Studio R4.12. With hardware tests i found by...
christian kranz
cnkz
Offline Send Email
Oct 15, 2005
10:52 pm
1211
... Ah, but Epilog() will switch back to user mode. The 0x10fx range address you're seeing will be the kernel stack. Calling Epilog() will switch the stack...
Brian Logan
getsmedown2001
Offline Send Email
Oct 16, 2005
2:05 am
1212
Hi Brian, thank you very much for your answer. I spend another ... But i learned a lot about the processor and the tools. Because i need to come to some result...
christian kranz
cnkz
Offline Send Email
Oct 16, 2005
2:49 pm
1213
What you have done is essentially pushed all registers onto the stack (SIGNAL()) then pushed them again when you call IntProlog(). That is a large burden for...
Larry Barello
lbarello
Offline Send Email
Oct 16, 2005
4:30 pm
1214
I get the feeling reading this list that some people want Larry to do most of their work for them. Since Larry has already gone through the effort to provide...
Brian Cuthie
codejunky2000
Offline Send Email
Oct 16, 2005
4:46 pm
1215
... This makes me wonder. You did move the Intprolog to the beginning of the interrupt handler, as Larry suggested earlier, I take it? So that the code would...
Brian Logan
getsmedown2001
Offline Send Email
Oct 16, 2005
4:55 pm
1216
BTW, I'm not singling any one out on this, and I don't speak for Larry. I mean these comments constructively, and not as a slam against anyone. -brian ...
Brian Cuthie
codejunky2000
Offline Send Email
Oct 16, 2005
5:08 pm
1217
Thank you Larry and Brian L. very much for your support. I would like to close this now. I have it running very stable, added already a lot of code without...
christian kranz
cnkz
Offline Send Email
Oct 16, 2005
8:37 pm
1218
Hello, trying my first steps with avrx - and almost going crazy: Compiling avrx works like a charm, but: cd ../TestCases gmake 'shouts' me: richard(rfk)...
Richard Kästner
r_kaestner
Offline Send Email
Oct 20, 2005
12:33 am
Messages 1189 - 1218 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