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.

Messages

  Messages Help
Advanced
Messages 1085 - 1114 of 1835   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1085
Hi, I'm a beginner with avrx. I've just run correcty a Timers example included in the library and i'm very happy. I have a library written in c++ for a 2x16...
Jose Segura
jsegura_gedaii
Offline Send Email
Jul 12, 2005
3:51 pm
1086
Hi, I'm a beginner with avrx. I've just run correcty a Timers example included in the library and i'm very happy. I have a library written in c++ for a 2x16...
jsegura_gedaii
Offline Send Email
Jul 12, 2005
3:51 pm
1087
Hi! I'm somehow a beginer in AvrX (well, I have been using it for quite some time, but there are many things that I don't understand yet). I'm building a...
José Ildefonso Ca...
ildefonso_ca...
Offline Send Email
Jul 13, 2005
2:35 pm
1088
C++ has a different linkage and function prolog type than regular C functions. I never wrote AvrX for c++, but I believe it can be modified to work - if you...
Larry Barello
lbarello
Offline Send Email
Jul 13, 2005
2:50 pm
1089
120/sec with so little code is not significantly burdensome. ... From : José Ildefonso Camargo Tolosa <ildefonso_camargo@...> Date : Wednesday, July 13,...
stevech@...
stevech11
Offline Send Email
Jul 13, 2005
7:08 pm
1090
Using AVRX_SIGINT() bypasses GCC's register save/restore mechanism and uses prolog/epilog. The latter not only save *all* registers, but also take care of...
Larry Barello
lbarello
Offline Send Email
Jul 14, 2005
1:22 am
1091
Hi! Thanks for your answer, it has been very helpful, and off course, thanks for creating and maintaining this great software! I explain (just for the record,...
José Ildefonso Cam...
ildefonso_ca...
Offline Send Email
Jul 14, 2005
3:02 am
1092
This sounds like a cake-walk for an AVR. The triac firing is interrupt driven so it is precise and everything else is a foreground loop. I am sure you will...
Larry Barello
lbarello
Offline Send Email
Jul 14, 2005
3:22 am
1093
Before I reinvent the wheel, anyone have an existing AvrX task for the Polaroid sonar ranger ? ========================================================== Chris...
Christopher X. Candreva
ccandreva
Offline Send Email
Jul 16, 2005
7:08 pm
1094
Actually, I would check the project area of the www.AvrFreaks.net web site as there's bound to be somebody who did it already. You'll only need to AvrXify it a...
Stephane Gauthier
stephane641
Offline Send Email
Jul 17, 2005
8:52 pm
1095
Hello, Has anyone already made the changes required to get avrx to compile and execute on the Atmel Mega 88? I am currently working through the issues myself...
robert2915
Offline Send Email
Jul 20, 2005
5:07 pm
1096
There is nothing magical about timer0. Any timer could be used for the system tick. If you are using C, the compiler should take care of the port addressing...
Larry Barello
lbarello
Offline Send Email
Jul 20, 2005
9:47 pm
1097
I'm starting to work with AVRX on the ATmega32 and the STK500 development board. I'm using AVRX 2.6e for WinAVR, with the WinAVR-20050214 GCC toolchain, and...
n1xnx
Offline Send Email
Jul 27, 2005
7:28 pm
1098
... FWIW, that code was written for a Mega 16. It SHOULD be portable. ========================================================== Chris Candreva --...
Christopher X. Candreva
ccandreva
Offline Send Email
Jul 27, 2005
7:32 pm
1099
OK, so far, so good. I can send chars with your code. Still no RX chars, BUT... I begin to think I have a bad serial cable or a blown serial port on the PC; I...
n1xnx
Offline Send Email
Jul 27, 2005
8:05 pm
1100
Bad serial cable. BAD, BAD serial cable, no more bits for you! (if that weird wire really was a serial cable; I never saw a factory-made 9-pin cable before...
n1xnx
Offline Send Email
Jul 27, 2005
8:13 pm
1101
... Cables get you ever time. At least you're not trying to negotiate between three telcos as to who's cable the problem is in. I've been banging my head ...
Christopher X. Candreva
ccandreva
Offline Send Email
Jul 27, 2005
8:48 pm
1102
... You may need to short CTS and RTS together as well. I forget which pin numbers they are at the moment. Jeff Engel Arlington, TX Happiness is - positive...
Jeffrey Engel
jengeltx
Offline Send Email
Jul 27, 2005
11:08 pm
1103
It's less complicated than I thought. The Mega32 is only one serial port, but it has UBRRL & UBRRH which need to be dealt with. Enjoy, Bill....
William C. Landolina
billalltrade
Offline Send Email
Jul 28, 2005
12:39 am
1104
It looks like the serial code doesn't know about AVRs with more than one UART... For example, on the Mega32, the baud rate registers are UBRR0L, UBRR0H, ...
William C. Landolina
billalltrade
Offline Send Email
Jul 28, 2005
12:40 am
1105
Indeed, RTS/CTS can cause that precise symptom, and it would fit the observed signs, so it's a good thing to check in the general case, but "flow control =...
n1xnx
Offline Send Email
Jul 28, 2005
12:41 am
1106
I'm merrily coding away on my first serious project using AVRX under GCC, and I have a question: How does one properly (and safely) calculate the stack space...
Steve Hersey
n1xnx
Offline Send Email
Aug 5, 2005
2:57 pm
1107
It is essentially impossible to calculate the stack needed. I allocate plenty of extra and inspect a running system to figure out how much is used. Then I...
Larry Barello
lbarello
Offline Send Email
Aug 5, 2005
6:35 pm
1108
Hi @ all, at the first, sorry for my bad english. I want to use avrx in the future, but i want to 'debug' the functionality of my code with simple PrintString...
mrweblover2002
Online Now Send Email
Aug 8, 2005
2:29 am
1109
A single character is classic of the interrupts not being enabled, or having the wrong text name for the handler, so it never gets called. If you use stdio...
Larry Barello
lbarello
Offline Send Email
Aug 8, 2005
3:11 am
1110
I would second Larry's comments. Note that if your code is supposed to print "Hi!" and the terminal displays "~!@#$&^&*(d", you probably have a baud rate...
Steve Hersey
n1xnx
Offline Send Email
Aug 8, 2005
1:21 pm
1111
I am fighting this right now and finally tracked it down to the SIG_UART_DATA and SIG_UART_RECV interrupts not being the in vector table. After the second...
bpar1999
Offline Send Email
Aug 8, 2005
2:14 pm
1112
... You might look at my library (previously mentioned) in the files area of this Yahoo group. It works, so you can use it as an example -- or just use it. ...
Christopher X. Candreva
ccandreva
Offline Send Email
Aug 8, 2005
2:19 pm
1113
There is no "SIG_UARDT_..." on the mega162. Please review the appropriate header file (iom162.h) to get the right names. Unfortunately, GCC interrupt...
Larry Barello
lbarello
Offline Send Email
Aug 8, 2005
2:45 pm
1114
There is a "#if defined (SIG_UART0_RECV)" in the serialio.s file that I added "#define SIG_UART_DATA SIG_UART0_DATA" in there. It compiled so I thought...
Barry Sanders
bpar1999
Offline Send Email
Aug 8, 2005
6:26 pm
Messages 1085 - 1114 of 1835   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