Form the very beginning tinyAcorn was designed to be as closed to its bigger brother megaAcorn as possible but in the long turn it turned out wrong.
Needless to say tinyAcorn is intended for small tiny AVR devices of up to 256 bytes of RAM. Code from megaAcorn was squeezed to fit the limited CPU resources but such strategy was quite inadequate.
The new tiny version is designed for small RAM devices and is coded as a different project.It is no longer possible to strip code slices off mega version and fit them into tiny one.
SLEEP macro processor.
It is obvious that having a sleep macro utilizing a separate Timer in a CPU with limited resources was quite inadequate.Most of the tiny AVR devices have only 2 timers and occupying both by the system was unacceptable.
It is clear that one timer is needed for the scheduler but can we get rid of the second one.Yes! it is possible but we will have to assume some drawbacks. I have integrated the SLEEP macro processing in the scheduler which comes at some acceptable in my opinion price.
Now that Timer tick happens in the realm of the microseconds, how to get a real long sleep interval.The following code snippet demonstrate how a task could achieve longer sleep intervals through a loop enclosing the SLEEP macro.
Even longer intervals are possible if we use 2 byte variable instead of 1 byte one.
RAM layout fragmentation and new DEBUG definition.
There is an ongoing effort to make the kernel integrity easier to verify. The easier the verification,the more robust the program is, the higher the gratefulness from the customer....
In order to see how the _REGISTER_TASK macro fragments the RAM memory for each task, i have added an new DEBUG preprocessor definition to enable debug mode.If in DEBUG mode a debug marker of 0xAA will be added at the end of each task stack so that when the program code is simulated the RAM fragments of each task could be seen in Memory->Data window in AVR Studio. When debugging in AVR Studio, stepping through each _REGISTER_TASK macro.
the following memory fragmentation could be observed in Memory window
For tiny24(RAM - 128,Stack size for each task - 38), color markers are
Warning.
Needless to say DEBUG mode adds extra code lines to the program so - NEVER forget to comment out the definition during production.