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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1280 - 1309 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1280
Hi friends, I'm working with Atmega128 microcontroller on MAVRIC-IIB board. I have loaded AvrX Operative System in the micro and I´m trying to comunicate the...
deividramos82
Offline Send Email
Apr 7, 2006
1:24 pm
1281
There are two serial examples. One buffered and one simple. The simple one blocks when the USART is full. The buffered one can accept up to the buffer size...
Larry Barello
lbarello
Offline Send Email
Apr 7, 2006
2:49 pm
1282
Thank you very much Larry!!! I will try in that way. See you. It's amazing. I have been in Seattle studing my last year of engineering. I was an exchange...
deividramos82
Offline Send Email
Apr 11, 2006
7:25 am
1283
Hi, thanks for the great OS. I'm really having fun learning it and using it. I've somehow caused some strange behavior on one of my threads and have been...
jputman004
Offline Send Email
Apr 13, 2006
9:28 pm
1284
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@yahoogroups.com
Send Email
Apr 13, 2006
9:29 pm
1285
I updated the generalized serial I/O sample code and placed a .zip file out in the files section. The code uses the new FILE syntax which is more space ...
Larry Barello
lbarello
Offline Send Email
Apr 13, 2006
9:34 pm
1286
I have just started using AVRX - great stuff. I have been developing and testing on the run and have now come across a problem that has me 'stumped'. I am...
shane_bolton
Offline Send Email
Apr 19, 2006
1:17 pm
1287
Hello all I have a need for short delays while using AvrX (~ 100us). Usually I would do this with a for loop and some nops. If I use OPT = s (as specified),...
gryvnstn
Offline Send Email
Apr 19, 2006
2:09 pm
1288
Declare the loop variable as "volatile" to disable compiler optimization. e.g. static volatile uint8_t foo; ... for (foo = 0; foo < delay; foo++) { asm("nop");...
Larry Barello
lbarello
Offline Send Email
Apr 19, 2006
2:27 pm
1289
This isn't a lot of information to work with. Do the tasks ever block and allow another task to run? The entire premise of AvrX is that task run until...
Larry Barello
lbarello
Offline Send Email
Apr 19, 2006
2:29 pm
1290
Hi I'm not sure if this helps you to solve your problem, but I was once running into a problem when using other optimisation than 's'. The problem was, AvrX is...
Alex Raimondi
hidklecks
Offline Send Email
Apr 19, 2006
2:33 pm
1291
... kept in ... Thanks Alex. I will keep this in mind as I plug on. Regards Ray...
gryvnstn
Offline Send Email
Apr 19, 2006
5:45 pm
1292
Thanks Larry. Also for AvrX. I am slowly getting the hang of things and it is a joy to not have to worry (too much) about the housekeeping. Regards Ray ... ...
gryvnstn
Offline Send Email
Apr 19, 2006
5:46 pm
1293
has anyone any code to read a servo channel from a (futaba) reciever and output PWM , idealy for more than one channel , similar to using as a speed control ...
cncbasher
Offline Send Email
Apr 19, 2006
8:08 pm
1294
I have just experienced a similar problem. If I changed the task priorities symptoms also changed. Eventually I tracked it down to using the same timers in...
gryvnstn
Offline Send Email
Apr 19, 2006
9:24 pm
1295
Hey everyone, I am an AVR newbie using the Atmega 8 on a linux operating system. Although I have found a terminal program, it only supports the Atmega 32 and...
de_guzplace
Offline Send Email
Apr 21, 2006
8:34 pm
1296
Hey everyone, I am using an Atmega 8 chip and had made a program on C that would open a file and take the contents of the file as an array. After utilitzing ...
de_guzplace
Offline Send Email
Apr 21, 2006
8:36 pm
1297
fdevopen is a dummy mechanism to associate a serial port with the stdio's buffered I/O system. The AVR libraries have no file system per se. There are projects...
stevech@...
stevech11
Offline Send Email
Apr 21, 2006
9:18 pm
1298
I'm making some progress on a document listing some useful information about the monitor. I'll post it or give it out if people want to see the early version....
jputman004
Offline Send Email
Apr 22, 2006
8:41 am
1299
The PID is the address of the structure. So in your case the address of "show_time" ... Larry Barello www.barello.net...
Larry Barello
lbarello
Offline Send Email
Apr 22, 2006
3:21 pm
1300
Ah ha! So I look at the .map file of my program find the PID in the .bss section: 0x00800123 show_timePid and now I can halt and resume my...
jputman004
Offline Send Email
Apr 24, 2006
1:20 pm
1301
Dear Mr Larry first of all thanks for your kindness which is helping students my making your free AVRX RTOS free and open source, thanks again. the second...
ebn_taimia
Offline Send Email
Apr 26, 2006
2:06 pm
1302
... Hmm.. AvrX works only on AVR (hence the name :-) ). But the concept of RTOS works also for other microcontrollers. In my opinion it makes no sense porting...
Alex Raimondi
hidklecks
Offline Send Email
Apr 27, 2006
6:15 am
1303
Hi, i need to check if there is a message in the queue but without blocking the thread. What i am currently doing is: - send a dummy message - wait for...
christian kranz
cnkz
Offline Send Email
Apr 27, 2006
6:09 pm
1304
It is easy to tell if a queue is empty: the head is zero. Look for the definition of a message queue in AvrX.h. This should work: uint8_t...
Larry Barello
lbarello
Offline Send Email
Apr 27, 2006
9:20 pm
1305
Hi, everyone: I am a newer, I am very interested in AVRX, My chip is ATmega64, I want to know some more details to compile the files and download them to my...
Taiping Yin
yintp2000
Offline Send Email
Apr 27, 2006
11:44 pm
1306
Thanks for the response, I found the problem, but it raises another question. The problem was that one of the tasks was in a tight loop looking for a bit it...
shane_bolton
Offline Send Email
Apr 28, 2006
9:22 am
1307
If a task blocks, that is becomes waiting for something, it goes to the end of the queue of like priority tasks, thus implementing a sort of round-robin ...
Larry Barello
lbarello
Offline Send Email
Apr 28, 2006
2:29 pm
1308
Thanks Larry, that explains it. I always thought a timer interrupt would reschedule just like the various methods of blocking. - Lesson: Don't assume...
shane_bolton
Offline Send Email
Apr 29, 2006
12:21 am
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
Messages 1280 - 1309 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