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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1309 - 1339 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1309
I'd like to expand a bit on this, because what i'm looking for is a rtos which provides true preemption, that is, no need for an endlessly looping task to...
dl2thl
Offline Send Email
May 8, 2006
11:02 am
1310
With AvrX tasks have static priorities. If a high priority task becomes unblocked, it will pre-empt the lower priority task for the duration until it blocks...
Larry Barello
lbarello
Offline Send Email
May 8, 2006
1:20 pm
1311
Dear all, I use Timer Counter0 and Timer Counter1 in my program. I set Timer Counter0 for RTC and Timer Counter1 for timer routine. When finish executing...
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
May 11, 2006
9:27 am
1312
You'll need to post the code before anyone can comment. You should cut your example down to the minimum code that illustrates the problem and then include...
Larry Barello
lbarello
Offline Send Email
May 11, 2006
1:06 pm
1313
Hi friends!! I have some troubles with the "get_char1(stderr)" function. I don't know why this function was working good before and without changing anything...
david ramos
deividramos82
Offline Send Email
May 17, 2006
1:13 pm
1314
Hello friend! I have had connected a compass module to wrong pin. I don't know why but this was the problem that made non bloking of "get_char1(stderr)"...
david ramos
deividramos82
Offline Send Email
May 17, 2006
2:03 pm
1315
The process ID is the address of the PID structure. Also, Suspend only works on running processes. If the process is blocked (not pre-empted) then it is...
Larry Barello
lbarello
Offline Send Email
May 17, 2006
2:15 pm
1316
Thank you very much Larry!! See you Larry Barello <yahoo@...> escribió: The process ID is the address of the PID structure. Also, Suspend only works...
david ramos
deividramos82
Offline Send Email
May 18, 2006
1:01 pm
1317
I've got the latest AVR Studio, the latest WINAVR+GCC and the latest AVRX.. Now I'm trying to make them all work together... I installed WinAVR then studio and...
bradcb21
Offline Send Email
May 19, 2006
7:23 pm
1318
... I assume you're using a makefile, possibly just a modified version of the sample one that comes with WinAVR. In that case, just add in the appropriate asm...
Bevan Weiss
kaizenbw
Offline Send Email
May 20, 2006
1:53 pm
1319
Hello all !! I would like to know how much is the load of my microcontroller Atmega128's processor. Can it be done? or that it's impossible. I don't want to...
david ramos
deividramos82
Offline Send Email
May 25, 2006
7:21 am
1320
The way I measure load is to toggle an LED: Turn it off just before going to sleep (Idle Task) and turn it on at the start of each interrupt handler. Then I...
Larry Barello
lbarello
Offline Send Email
May 25, 2006
2:28 pm
1321
Thank you very much again Larry!! You are very kind. I will try the second choise, to calculate the load creating an Idle Task, it seems to be easier. :-) I...
david ramos
deividramos82
Offline Send Email
May 29, 2006
8:32 am
1322
Send as many as you like. The driver will buffer the first 32 bytes before blocking waiting for data to be sent out the USART. If you want to buffer more,...
Larry Barello
lbarello
Offline Send Email
May 29, 2006
3:05 pm
1323
I have recently started working on AvrX RTOS(v2.6f). I have successfully compiled avrx.a library for AT90CAN128 with few minor changes. But as I understand...
pulsesin
Offline Send Email
May 30, 2006
3:22 am
1324
The special function registers for the UART are out of reach of the OUT/SBI/CBI instructions ("I/O Memory" section on page 24 in the AT90CAN128 datasheet)....
Marko Skofljanec
mcskof
Offline Send Email
May 30, 2006
2:35 pm
1325
Thanks, UART registers reside in extended I/O memory and sbic instructions works only for first 32 register set only.. Hence I was getting the errors. But...
pulsesin
Offline Send Email
May 30, 2006
10:10 pm
1327
Hi all: It is working right now(as Below),but I do'nt know why? I need to add a delay loop after AvrXWriteEEProm before I write next byte , if not ,it will be ...
sunbird606
Offline Send Email
Jun 1, 2006
3:36 am
1328
I don't know what avrx does in its EEPROM write subr0utine, but you could compare that code to this which does work (in bootloaders). It loops on a busy bit in...
stevech11
Offline Send Email
Jun 1, 2006
5:11 am
1329
Check the assembly code for AvrXWriteEEPROM. It should wait until the previous write has completed. The code is very old and the bits might have changed a...
Larry Barello
lbarello
Offline Send Email
Jun 1, 2006
12:18 pm
1330
I Check the assembly code for AvrXWriteEEPROM and pdf file of Mega128, the assemblly code is correct,But I try and try,if no delay loop,write EEPROM will be...
David Tsai
sunbird606
Offline Send Email
Jun 2, 2006
2:33 am
1331
Hi! I am working with AT90CAN128 and gcc. I have some problems with AvrxBufferedSerial.c. The uart settings are all ok but when I send some chars to the serial...
afuriato123
Offline Send Email
Jun 3, 2006
7:47 pm
1332
Since AvrX is yet not proted for AT90CAN128, I am interested in knowing how can I use interrupt for CAN. avrx-signal.h inturn includes avr/signal.h which has...
pulsesin
Offline Send Email
Jun 8, 2006
10:15 pm
1333
The use of avrx-signal.h is very obsolete. If you are using avr-gcc you don't need any of the avrx supplied files. Those were created four or five years ago...
Larry Barello
lbarello
Offline Send Email
Jun 8, 2006
10:49 pm
1334
Mr Barello, First of all I would like to thank you for developing AvrX and making it available to all. Yeah, I got the basics of how it works...I really...
pulsesin
Offline Send Email
Jun 13, 2006
11:27 am
1335
Hi, does anybody know an easy way to add a timeout to AvrXWaitMessageAck()? One option is of course polling with AvrXTestMessageAck() but i would like to have...
christian kranz
cnkz
Offline Send Email
Jun 18, 2006
4:49 pm
1336
First of all I'll try to explain what I am intending to achieve. I am using AT90CAN128. In AT90CAN128 CAN, there are 15 Message Objects or MObs (In short...
pulsesin
Offline Send Email
Jun 22, 2006
3:53 am
1337
Multiple tasks can wait on a semaphore. They queue up first come first served. When you signal the semaphore the first one will be released and the others...
Larry Barello
lbarello
Offline Send Email
Jun 22, 2006
5:47 am
1338
Hello friends! I want to do a very simple thing, but I don't know how. I want to make a 750 us delay with AvrXDelay(&timer1, x ) but seems like with this...
david ramos
deividramos82
Offline Send Email
Jun 22, 2006
7:58 am
1339
Change the basic timer tick to be 1.333 khz ... Larry Barello www.barello.net _____ From: avrx@yahoogroups.com [mailto:avrx@yahoogroups.com] On Behalf Of david...
Larry Barello
lbarello
Offline Send Email
Jun 22, 2006
4:13 pm
Messages 1309 - 1339 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