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 1836 - 1865 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1836
Hi, I've been using AvrX with success for a few weeks, but would like to reserve some low registers for interrupts and key static variables, as it reduces...
richardcfarthing
richardcfart...
Offline Send Email
Dec 1, 2008
12:49 pm
1837
Richard, Just so you don't think you were being ignored... I've been on the list for a few years and don't remember anyone doing this. You could search the...
Dean Hall
dwhall256
Offline Send Email
Dec 2, 2008
9:37 pm
1838
This should work. There are some indexes to grab the return address from the stack - you must have fixed that or nothing would have worked. You need to make...
larry barello
lbarello
Offline Send Email
Dec 3, 2008
3:04 pm
1839
Thanks Larry and Dean. Yes it seems to work OK, provided you use the -ffixed-regs switches in your AVR studio compiler setup. If anyone else is interested,...
richardcfarthing
richardcfart...
Offline Send Email
Dec 4, 2008
11:33 am
1840
Hi, I'm stuck with a problem, I'm using SIG_INPUT_CAPTURE1 and SIG_OUTPUT_COMPARE1B to decode Raymarine SeaTalk (serial multidrop protocol, much similar to...
tord.lindner
Offline Send Email
Dec 7, 2008
5:47 pm
1841
Without the #defines, etc. it is hard to say what is going on, but it does seem likely that your index into the buffer might be going over the end by one and...
larry barello
lbarello
Offline Send Email
Dec 8, 2008
2:19 am
1842
Thanks, yes that was what I thought, so all buffers where comment out. The strange thing though, now when I've removed the SWITCH case and replaced with...
tord.lindner
Offline Send Email
Dec 8, 2008
7:22 am
1843
Dear Sir, Congratulations for your success. Also, I would like to develop a tool for refuelling using the AvrX + AVR Studio 4 with ATMega8535. Unfortunatelly,...
ismankus
Offline Send Email
Jan 28, 2009
10:55 am
1844
Dear all, Went though some examples and read the manual of Stevech11 (great work), but can not find the solution or misunderstand something. Situation: * 3...
Robert Evers
evers4202000
Offline Send Email
Jan 28, 2009
6:42 pm
1845
If your display task is only going to read from the Global Variable, then it is unlikely you will need to protect it. Generally you will only need to...
Shane Bolton
shane_bolton
Offline Send Email
Jan 28, 2009
8:09 pm
1846
For just a variable, the easiest thing (and most computationally efficient) is to disable interrupts temporarily. Check out the GCC file “util/atomic.h” ...
larry barello
lbarello
Offline Send Email
Jan 28, 2009
10:06 pm
1847
While trying to port bits of some of my projects into AvrX, I noticed that there seem to be some omissions in the avrx-signal.h file, specifically, the...
brucesherry1
Offline Send Email
Jan 29, 2009
5:49 am
1848
Bruce, Use avr/interrupt.h in place of avr/signal.h. avr/signal.h has been deprecated for some time now. Regards, Shane Bolton shane@......
Shane Bolton
shane_bolton
Offline Send Email
Jan 29, 2009
5:55 am
1849
Dear all I have done it as Wayne did, on the atmega8535, but the error is: C:\avrx\Examples>make all Compiling: Timers.c avr-gcc -c -mmcu=atmega8535 -I....
ismankus
Offline Send Email
Jan 29, 2009
7:58 am
1850
Hi all, I have a program that handle keypads, time display (7-segments), LEDs, serial com and LCD using ATMega 128. When I pushed a keypad button, it should...
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
Jan 30, 2009
11:29 am
1851
Is the /SS io pin programmed as an output? From: avrx@yahoogroups.com [mailto:avrx@yahoogroups.com] On Behalf Of Giri Y. Atmaja Sent: Friday, January 30, 2009...
larry barello
lbarello
Offline Send Email
Jan 30, 2009
6:20 pm
1852
Hello, Our robot club is trying to install Avrx on the microcontroller board, AVR-MT-128 (Olimex). We have a new project called Roboswarm based on this...
Dan
rogsys
Offline Send Email
Jan 31, 2009
2:28 pm
1853
We made some progress ! so far we got the string "Type something within 5 seconds" output to our terminal. We had to edit a few things in the source code for ...
Dan
rogsys
Offline Send Email
Feb 1, 2009
2:45 am
1854
I use AVRx on a mega128, if I can help. I don't recall having to make any significant changes. steve...
stevech11
Offline Send Email
Feb 1, 2009
3:40 am
1855
We made some more progress tonight, I'm able to enter some text on my keyboard, the testcode then outputs the same exact text back to the terminal. If I don't...
Dan
rogsys
Offline Send Email
Feb 1, 2009
4:57 am
1856
well, after some more reading, I see in AvrxSimpleSerial.c that the handler only buffers 3 characters in the hardware. Still trying to figure out why I can't...
Dan
rogsys
Offline Send Email
Feb 1, 2009
5:08 am
1857
Thanks Larry for the reply. Yup, I set the /SS pin as an output. But anyway I've solved the problem. It's because of the optimization. When I change the...
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
Feb 1, 2009
9:06 am
1858
Hi, There is a simple solution for the optimalisation fun in combination with while loops define a nop #define nop() __asm__ __volatile__ ("nop" ::) And in...
Robert Evers
evers4202000
Offline Send Email
Feb 1, 2009
9:43 am
1859
thanks a lot....
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
Feb 1, 2009
12:38 pm
1860
Sounds like you have a variable shared between an interrupt handler and your main code. The main code doesn’t realize that the variable can change abruptly...
larry barello
lbarello
Offline Send Email
Feb 1, 2009
1:10 pm
1861
All control registers should be declared volatile. If this one isn’t that is a bug in the chip header file (avr/io.h…) I use the code, below, without the...
larry barello
lbarello
Offline Send Email
Feb 1, 2009
1:10 pm
1862
I'm still trying to figure out why I can't use AvrxDelay function but I can use _delay_ms I also tested both Timers 0 and 2 with a diagnostic I wrote to...
Dan Roganti
rogsys
Offline Send Email
Feb 1, 2009
3:28 pm
1863
Dan, You should be able to debug this in the simulator without too much trouble. Set the delay to 1 or 2 so you don't need to wait for too many interrupts...
Shane Bolton
shane_bolton
Offline Send Email
Feb 1, 2009
4:21 pm
1864
If you are using _delay_ms() from avr-libc's #include <util/delay.h>, then you are not using a timer. avr-libc's _delay_ms() uses a code loop that calculates...
Dean Hall
dwhall256
Offline Send Email
Feb 1, 2009
4:29 pm
1865
Shane, My code hasn't had signal.h in a long time either, I'm just trying to run the demos as delivered. I had updated to 2.6g and avrx_signal.h asks for...
brucesherry1
Offline Send Email
Feb 3, 2009
5:16 am
Messages 1836 - 1865 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