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 1733 - 1763 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1733
I'm making great progress in getting the WizNet 810MJ (now 811MJ) Ethernet module with IP aboard to interface via SPI to a mega128 using AvrX and 100% my own...
stevech11
Offline Send Email
Apr 9, 2008
6:30 am
1734
If you turn interrupts off you will reduce the possibility of your issue to just one instruction time slot. I wrote the code below in this way because I...
Dean Hall
dwhall256
Offline Send Email
Apr 9, 2008
1:07 pm
1735
thanks. Worried about impact of cli() to interrupt latency, I looked at the code for AvrXCancelTimerMessage(). It has a "BeginCritical" (an asm macro for cli,...
stevech11
Offline Send Email
Apr 10, 2008
2:34 am
1736
stevech11 sez, ... Usually I would expect that a function like AvrXCancelTimerMessage() would be thread safe. BeginCritical sure seems like an indication that...
Pink Boy
dasfoo
Offline Send Email
Apr 10, 2008
9:57 pm
1737
He's extending the time interrupts are off in order to reduce the likelihood of a race condition where a timer expires after a message is handled, but before...
Dean Hall
dwhall256
Offline Send Email
Apr 10, 2008
10:32 pm
1738
Right, Dean. I don't see any way to avoid using the cli() to eliminate the race condition. A new AvrXAPI call could be created to do the work (cancel a timer...
stevech11
Offline Send Email
Apr 11, 2008
6:03 am
1739
AvrXCancelTimerMessage was written to do the right thing regardless of the state of the system. If you get your message or semaphore from the ISR, calling ...
larry barello
lbarello
Offline Send Email
Apr 11, 2008
5:44 pm
1740
Larry - thanks very much. From the documents, it wasn't apparent that AvrXCancelTimerMessage() does as said below. I've created a MS Word and PDF document on...
stevech11
Offline Send Email
Apr 12, 2008
2:28 am
1741
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the avrx group. File : /AvrX API Docs...
avrx@yahoogroups.com
Send Email
Apr 12, 2008
3:02 am
1742
User written API files are in the folder in the "Files" section here http://finance.groups.yahoo.com/group/avrx/files/AvrX%20API%20Docs%20User-written%20/...
stevech11
Offline Send Email
Apr 12, 2008
3:05 am
1743
Yes. Your interpretation is correct. The only odd case is if the timer goes off just prior to the ISR so the timer is on the message queue ahead of the ISR...
larry barello
lbarello
Offline Send Email
Apr 12, 2008
2:45 pm
1744
Larry - right, so when I've just found a timer message item on the queue, I do a AvrXRecvMessage() on the same queue to ensure the queue is empty. As you say,...
stevech11
Offline Send Email
Apr 12, 2008
10:48 pm
1745
User written API files are in the folder in the "Files" section here http://finance.groups.yahoo.com/group/avrx/files/AvrX%20API%20Docs%20User-writte\ n%20/...
stevech11
Offline Send Email
Apr 16, 2008
2:27 am
1746
Hi, I just noticed that the AVRX version for the IAR compiler is lagging that for the GCC compiler. Does this mean that the bugs fixed to get to 2.16g for GCC...
hcsicat
Offline Send Email
Apr 23, 2008
1:17 am
1747
All it means is that I stopped trying to keep AvrX working on the IAR compilers. 99% of the code necessary to work with IAR is there, but someone needs to use...
Larry Barello
lbarello
Offline Send Email
Apr 23, 2008
6:52 am
1748
Hello everyone! I'm new to the AVRX world and I would like to know if the ICCAVR compiler has a free version because I want to build the AVRX for the first...
Axenie Cristian
haustiq_86
Offline Send Email
Apr 28, 2008
6:38 pm
1749
AvrX has some compiler-specific syntax in it. I recommend using the free avr-gcc (a.k.a. WinAvr on windows) for best compatibility. !!Dean...
Dean Hall
dwhall256
Offline Send Email
Apr 28, 2008
7:55 pm
1750
ImageCraft is a good compiler. Well-optimized for AVR, and well supported by the small company that publishes it. http://www.imagecraft.com/ There is a 45-day...
Steven Augustine
otsproductions
Offline Send Email
Apr 28, 2008
8:23 pm
1752
Thank you all for your quick reply. Now I have al the tools prepared and ready to focus on deveoping apps. I would like to know if the AvrX modified for...
Axenie Cristian
haustiq_86
Offline Send Email
Apr 28, 2008
11:35 pm
1753
Hi, I was notified that BasicTest3 & 4 were not working in AvrX in C. The most recent versions of WinAVR seem to have revealed some hidden bugs which I've now...
Brian Logan
getsmedown2001
Offline Send Email
Apr 29, 2008
9:03 pm
1754
Hi, I've updated my project to your version of AvrX and it works normally, as good as with Larrys code. What, exactly, was your problems you notified? ...
g2005p
Offline Send Email
May 3, 2008
7:08 am
1755
... BasicTest3, timers test, was not working. This turned out to be due to code such as this: // This function declared naked. void...
Brian Logan
getsmedown2001
Offline Send Email
May 3, 2008
1:40 pm
1756
Brian, I tried to compile your AVRx in C with BasicTest1 and I get the following errors: Build started 3.5.2008 at 19:20:06 avr-gcc.exe -mmcu=atmega128 -Wall...
at91r40008
Offline Send Email
May 4, 2008
2:26 am
1757
... Are you compiling from within AVR Studio? If so, I think this is getting the Makefile from somewhere other than the one I put in the zip file. When I...
Brian Logan
getsmedown2001
Offline Send Email
May 4, 2008
4:14 pm
1758
Brian, you are correct, I forgot that AVRStudio creates its own makefile. After selecting "use external makefile" it build correctly. Thank you for the help...
at91r40008
Offline Send Email
May 5, 2008
5:59 am
1759
Task A does AvrXSetSemaphore(&s) and the semaphore becomes SEM_DONE Later if Task A does AvrXTestSemaphore(&s) the semaphore becomes SEM_PEND (SEM_DONE is...
stevech11
Offline Send Email
May 6, 2008
4:57 am
1760
Hi all, I'm in the middle of writing a menu system for a mobile robot. I already use a handful of AvrX tasks on the robot. I would like to have a menu...
Dean Hall
dwhall256
Offline Send Email
May 24, 2008
7:06 pm
1761
Hello, my name is gaurav and I´m new in this group! I have a problem with tht compiling of the AvrX 2.6e modified to ATmega16. That is my error when I want to...
hgaurav_82
Offline Send Email
May 27, 2008
7:16 pm
1762
Hello friends! I am working with the AvrX 2.6f on Atmega128 microcontroller. I am doing a Rs485 comunication with one PC sending the information that I gather...
dramosfernandez
Offline Send Email
May 27, 2008
7:18 pm
1763
I recommend upgrading to AvrX 2.6f. It's version of avrx-io.h looks like this: // 20021123 - Changed <io.h> to <avr/io.h> for 3.3 compiler #if...
Dean Hall
dwhall256
Offline Send Email
May 27, 2008
7:37 pm
Messages 1733 - 1763 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