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 575 - 607 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
575
Don't bother they are already deleted... and the sender removed from the list & banned. Not that it will do any good. :( ... From: <avrx@yahoogroups.com> To:...
Larry Barello
lbarello
Offline Send Email
Apr 1, 2003
4:52 pm
577
... Make the list moderated, so you have to approve all new members ? ========================================================== Chris Candreva --...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 1, 2003
5:31 pm
579
Hi, I've download WinAVR (WinAVR-20030312-bin-install) and install it in my PC (windows 98 SE). But I didn't uninstall my last AvrGCC (3.02), because the...
Sutjipto Soesanto
tjipto99
Offline Send Email
Apr 6, 2003
7:31 am
580
The Atmel "nordic" object file format (their least capable format readable by the Debugger) is no longer supported in the GCC distribution. You can take the...
Larry Barello
lbarello
Offline Send Email
Apr 6, 2003
1:50 pm
581
When I use the pseudo quadrature encoding setup( like with DilbertII) And have the interrupt routine in C using an XOR between channel A and B would that do...
mvturnho
Offline Send Email
Apr 7, 2003
1:40 pm
582
Check out this site: http://www.emesystems.com/BS2fsm.htm, about 1/2 way down. Your logic, below, will not work as A & B should always be different and the...
Larry Barello
lbarello
Offline Send Email
Apr 7, 2003
2:00 pm
583
Hi Larry, I still cann't proved how debug monitor work. I connect the RS232 control to COM2. I follow your instruction to put 8 MHz crystal and wire between...
Sutjipto Soesanto
tjipto99
Offline Send Email
Apr 7, 2003
4:05 pm
584
A while ago Larry posted some code to use the overflow from the PWM timer on an 8535 to run the AVRX inturrupt. After upgradeing to gcc 3.3 It is giving an...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 12, 2003
8:10 pm
585
Wow. Found my own answer in the comments of include/avr/sfr_defs.h (from the avr-libc install). Since the compiler tries to figure out if it should use IO or...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 12, 2003
9:17 pm
586
Is there a trick to continuing to use outp, sbi, etc in gcc 3.3 ? Every one of those is generating a serialio.c:65: warning: asm operand 0 probably doesn't...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 13, 2003
12:00 am
587
Use #define _SFR_ASM_COMPAT_ 1 at the top of you "C" code. This will return the compatibility to the old way of doing things. Look in the file "sfr_defs.h"...
Larry Barello
lbarello
Offline Send Email
Apr 13, 2003
1:07 am
588
... Got it - it's _SFR_ASM_COMPAT -- no trailing _ ========================================================== Chris Candreva -- chris@... -- (914)...
Christopher X. Candreva
ccandreva
Offline Send Email
Apr 13, 2003
4:05 am
589
Hi all! I was wondering how one would go around to implementing long delays in AvrX while still using the AvrX timer interface (or modifying it). With my...
stephane641
Offline Send Email
Apr 14, 2003
10:19 pm
590
With a tick rate of 6khz, you should be able to get just under 10.5 seconds delay (65K counts in an unsigned short). With a 10 second delay, a byte will get...
Larry Barello
lbarello
Offline Send Email
Apr 14, 2003
10:54 pm
591
Sounds good. I thought about the first one (loop in the task) but It's too "ugly" and would want to make it totally transparent so I can keep using the ...
stephane641
Offline Send Email
Apr 15, 2003
4:58 pm
592
I think the ugly solution is best: The overhead of the dumb and simple solution is negligible. If all you want is a long "blocking" delay, then just do...
Larry Barello
lbarello
Offline Send Email
Apr 15, 2003
5:27 pm
593
What I like about increasing the size of timer counter (is that the "simple" or the "dumb" one?) is that I can keep using the AvrXTestTimer command which I...
stephane641
Offline Send Email
Apr 17, 2003
12:58 am
594
eurk! I just tried my hand at modding the unsigned short count to unsigned long and got scared after I realised how many places needed to be updated. It's not...
stephane641
Offline Send Email
Apr 17, 2003
1:30 am
595
Are you running a big loop? You must be if you are testing a semaphore for completion rather than blocking. If so, what is your loop rate? Perhaps this can...
Larry Barello
lbarello
Offline Send Email
Apr 17, 2003
1:37 am
596
I guess but It's still pretty kludgy. I guess I'll have to face my fear and mod your assembly code as it provides the cleanest solution from my point of view. ...
Stephane Gauthier
stephane641
Offline Send Email
Apr 17, 2003
3:40 am
597
Hi, i included in the Examples -Timers.c- #include "xxxx.h" there in xxxx.c are some functions: function-yyyyyyy() {} now i do a make gcc and every time it...
timmi47112000
Offline Send Email
Apr 18, 2003
12:46 pm
598
The sample make files in AvrX are set up only to compile one module and link with the library. It looks like it does multiple, but it is just repeating the...
Larry Barello
lbarello
Offline Send Email
Apr 18, 2003
2:33 pm
600
... I've never used asm files with WinAVR before, but I am using VMLAB with success. So I tried a small asm example. I can't set any breakpoints or single step...
Volkmar Dierkes
murray2222de
Offline Send Email
Apr 23, 2003
9:18 pm
601
Hi all, I was wondering if anyone ever used Malloc() successfully under AvrX (in a task). I don't know if it's even related to AvrX but any call to malloc() ...
stephane641
Offline Send Email
Apr 24, 2003
5:09 am
602
Hi everyone I'd want to know if someone have implemented a task manager function under AvrX. Is there some code or examples? Many thanks Pippoa...
pippopappopippopappo
pippopappopi...
Offline Send Email
Apr 24, 2003
11:37 am
603
Hi, stephane, I'm successfully using malloc on mega128 with 60kilobytes external RAM and AVRX, also with WinAvr, but not the last version. My version is...
Marin Balkandjiev
balkana.rm
Offline Send Email
May 4, 2003
12:16 pm
604
Cool! Thanks for the reply. I got frustrated and I just used a big array of structures in a pseudo-malloc arrangement (have a node_init() function return a...
Stephane Gauthier
stephane641
Offline Send Email
May 4, 2003
5:29 pm
605
You can simply allocate an array (or for that matter malloc()) the kernel stack. Just pass the pointer to the *end* of the array+1 to AvrXSetKernelStack()....
Larry Barello
lbarello
Offline Send Email
May 4, 2003
6:22 pm
606
Wow! It's going to take me a while to digest all that! ;-) I'll try your suggestions....
Stephane Gauthier
stephane641
Offline Send Email
May 5, 2003
12:32 am
607
For example, in main.c char KernelStack[100]; // But you don't have control over where this is placed... ... int main(void) { ...
Larry Barello
lbarello
Offline Send Email
May 5, 2003
12:47 am
Messages 575 - 607 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