... Thanks for your reply! I had no success with simulating AvrX but I got it to run on the development board and the real hardware and everything works fine...
Ladies and Gents, I'm new to AVR-X, but I've been tinkering with AVRs for many years. I'm now looking atusing AVR-X on my next project to help keep thing...
There are only the 2 versions (GCC and IAR). Although, this gent implemented AvrX in C: http://www.foleysystems.co.uk/avrx.html so that might run in your...
Paul, a few years ago I had the same question has I had been using CodeVision since the first version. I don't remember if it was for AVRX or another RTOS but...
Hello, so first sorry for my english :). I have a problem with a task, that used a infinity loop like while(1) or for(;;). The problem is that only this task...
One important thing i realized a few minutes ago is that the task don't switch if the have a while(1) loop like this: AVRX_GCC_TASKDEF(Led, 8, 2) { unsigned...
Hi, ... What is the priority of the LED task? What you are trying to do does work - I use the same method in my own systems. But clearly you are not doing...
"But clearly you are not doing something right" I agree :) So it works when i use AvrXYield() in the inner while(1) loop. The task re-queued behind the next....
The code examples you give all look good. AvrX is fully pre- emptable. The scheduler is round-robin for tasks that have the same priority; otherwise the...
... Not only possible, but certain AvrX does cooprative multitasking, not premptive. If a task doesn't give up control by a delay or blocking, then it will hog...
Normally, an interrupt activates the scheduler, so you have pre- emption right there. The scheduler is priority-based and round-robin for tasks of equal...
... But an inerrupt will not force a context switch. This is a common mistake It's not explicitly clear in the docs, but Larry explained it in this post from...
Hi, ... Got it - the key seems to be on this page: http://www.barello.net/avrx/Theory.htm 3rd paragraph of the "Queue" section states: "Once a process is...
Dear Friends: I´m trying to understand avrx. I compile with success the avrx directory. I compile with success the examples directory. And i flash timers...
Hola, I don't have enough details to give you an answer. My first suggestion is to read AvrXSerialIo_documentation.txt if you haven't already. Then, tell us...
... Have you tried swapping the pins 2 and 3 at the microcontroller end of the rs232 connector. A common problem is that the rx and tx pins of the connector...
I would like to share moderation of the group with one or two other people. All new members are moderated until they send an appropriate message. If someone...
I did this: First: build a timer in simpleserial.c, and works very good. Second: it´s not the cable or something because i´m using a bootloader to load the...
The monitor program is extremely primitive assembly code. Your problem sounds like you simply have not accounted for all the bits & pieces that are needed to...
Hi All, I'm new to this and wish to try out and learn. My company is using imagecraft ICC complier and wonder if anyone has port the rtos over? What are the...
Hello together, i hope somebody can give me a hint, i'm trying to realize time slicing with avrx but im stuck at some point: i read in a previous post that...