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 to share photos of your group with the world? 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 1491 - 1520 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1491
Hello, I'm using IAR cworbench v2.27b in order to develop an OS to a titaniumcard using Flash Atmel AT90SC6464C. how can explain me how can i create an .hex...
esegir
Offline Send Email
Feb 2, 2007
7:47 pm
1492
I hope to use semaphore as an integer counter. But how initialize it to an integer n(n>1) with AvrXSetSemaphore(&mutex)? It seems that only mutual exclusion...
ftking039
Offline Send Email
Feb 2, 2007
7:48 pm
1493
Thank you very much Larry ans Mr Foo :) !! The solution was very simply but I spent a lot of time searching what the problem was. Now I have fix it in a two...
david ramos
deividramos82
Offline Send Email
Feb 6, 2007
9:04 am
1494
Hi all, I'm having no end of problems running AxrX(G) on the 168. My application was developed on the STK500 running at 8MHz with a 1Msec tick, the target runs...
Dave
gsicarlton
Offline Send Email
Feb 13, 2007
4:20 pm
1495
Hi Dave, ... The ATMega168 has a CDIV8 fuse that is set by default. This causes the crystal frequency to be divided by 8. I haven't used avrx yet, but I just...
Dave Hylands
dhylands_99
Offline Send Email
Feb 13, 2007
7:41 pm
1496
good thought Dave, checked that....
Dave
gsicarlton
Offline Send Email
Feb 13, 2007
9:08 pm
1497
I downloaded the 2.6f version of AvrX. It compiled fine under WinAVR 20060421. Then I compiled the example AVRXSerialIO, no preblem here either. Then I tried...
sirluke79
Offline Send Email
Feb 14, 2007
2:43 pm
1498
Hi! I have a task which shows information on an LCD screen, and it uses snprintf to format floating point and integer numbers. Anyway, I had to give this task...
José Ildefonso Cam...
ildefonso_ca...
Offline Send Email
Feb 19, 2007
3:02 am
1499
Jos sez, ... 270 bytes seems a bit much. However ..prinf() library functions tend to require lots of stack space. If you have a debugger you can try poking...
Pink Boy
dasfoo
Offline Send Email
Feb 19, 2007
6:03 am
1500
... I have lots of debuggers, but I just can't use them easily (and the "hang" comes after an amount of time around 2 minutes to 5 minutes), the JTAG pins on...
José Ildefonso Ca...
ildefonso_ca...
Offline Send Email
Feb 19, 2007
1:04 pm
1501
My code hasn't grown that much, but I have fonts and and FPGA image to store and I'm hoping to put it in the CPU rather than buying an additional memory... So,...
William C. Landolina
billalltrade
Offline Send Email
Feb 19, 2007
4:19 pm
1502
In lieu of a large model AvrX I suggest arranging your application so all executable code is below the 64k word boundary. All your fonts & images are ...
larry barello
lbarello
Offline Send Email
Feb 19, 2007
5:09 pm
1503
Hi! I have this interrupt handler for the avrx: AVRX_SIGINT(SIG_OUTPUT_COMPARE0) { IntProlog(); if(timeout<10*TICKS_POR_MS) timeout++; ...
José Ildefonso Ca...
ildefonso_ca...
Offline Send Email
Feb 20, 2007
4:46 pm
1504
It takes something like 300 cycles to process a timer tick, so even at 10khz timer processing will consume only 20% of your CPU cycles. Gee, now you have an...
larry barello
lbarello
Offline Send Email
Feb 20, 2007
6:24 pm
1505
Hi! Thanks for your answer. Ok, that clarify most of my doubts, just one more: Can I actually run the AvrXIntSetSemaphore and then AvrXTimerHandler and it will...
José Ildefonso Cam...
ildefonso_ca...
Offline Send Email
Feb 20, 2007
6:53 pm
1506
Yes, no problem with multiple tasks waking up at the same time. All queuing operations occur in kernel space and Epilog() grabs the highest priority available...
larry barello
lbarello
Offline Send Email
Feb 20, 2007
7:57 pm
1507
Everything is fine with the new AVR Studio 4.13. New Hapsim (2.09) is out and working flawlessy with the new AStudio. 'till the next time......
sirluke79
Offline Send Email
Feb 21, 2007
8:16 am
1508
I would like to use AvrX, winavr, and avrlib. I did a search on avrfreaks and on this group to try to find information and samples. I recently downloaded AvrX...
jfs10psuedu
Offline Send Email
Feb 24, 2007
3:54 pm
1509
AvrX samples use timer 0 for the system clock, however, you can use any periodic interrupt for the system clock. Look at the samples. If you take out the...
larry barello
lbarello
Offline Send Email
Feb 24, 2007
5:15 pm
1510
Hi, I am trying to get Timers.c executing on the ATMEL STK501 development board with the ATmega128 uC. I modified the AVRX makefile and Examples makefile to...
justinmwebster
Offline Send Email
Mar 1, 2007
12:56 pm
1511
... So are you running an 8MHz crystal on your 128?...
jaydmdigital
Offline Send Email
Mar 1, 2007
5:29 pm
1512
Nope, I am running the mega128 from the 3.686 MHz STK500 clock. I had tried that previously, but without success. I built a clean AVRX 2.6f with just the CPU...
justinmwebster
Offline Send Email
Mar 2, 2007
6:38 am
1513
Hi Justin, ... I just saw an email on the avr-libc list that may be relevant. It was mentioning that some types of optimizations are only available for the ...
Dave Hylands
dhylands_99
Offline Send Email
Mar 2, 2007
7:27 am
1514
Hi Dave, Thanks for the input. I commented out: #pragma optimize=z 4 And no luck. I think this is used for the IAR compiler. I am using the GCC compiler. ...
justinmwebster
Offline Send Email
Mar 2, 2007
7:45 am
1515
Ok, I have finally gotten the LEDs to flash. I disabled the Atmega 103 compatibility fuse for the STK500 using AVR studio. That was luck, I would have never...
justinmwebster
Offline Send Email
Mar 2, 2007
8:51 am
1516
Looking at the code for AvrXWaitTimer, the comment mentions that the routine must stay critical, but the routine itself comprises of only: subi p1l, lo8(-2)...
darkdragonnascar
darkdragonna...
Offline Send Email
Mar 3, 2007
11:46 pm
1517
AvrXWaitTimer() simply decrements a pointer and "falls through" to the wait semaphore routine. It is, indeed, non-critical code since it is just adjusting the...
larry barello
lbarello
Offline Send Email
Mar 4, 2007
12:21 am
1518
Ahhh, I see. Thanks! ... the wait ... just ... The ... critical section ... one and I ... there is a ... tells the ... time it ... makes no ... to make ... ...
darkdragonnascar
darkdragonna...
Offline Send Email
Mar 4, 2007
7:06 am
1519
Hello. I am a student from Indonesia . I am interested using AvrX in my project. My simple project is a RTC using DS1337. I make 3 task : task 1 (read data...
liem_ieie
Offline Send Email
Mar 6, 2007
4:49 am
1520
Hi, I need some info about the Message Queue functionality. The website does not provide the info I require. I have looked in the code, and it seems the...
justinmwebster
Offline Send Email
Mar 7, 2007
9:45 am
Messages 1491 - 1520 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