Skip to content

Releases: srikanth977/ChiliRTOS

All threads of the study as periodic threads

18 Mar 16:51
Compare
Choose a tag to compare

Periodic Scheduling of multiple threads

17 Mar 19:58
Compare
Choose a tag to compare

Basic Periodic Scheduler using Timer

17 Mar 14:46
Compare
Choose a tag to compare
v3.1

Periodic Scheduler using timer

Basic board support package without RTOS (traditional while loop)

16 Mar 05:25
Compare
Choose a tag to compare

This is a basic board support package consisting of ADC, LCD and LEDs to simulate a real world scenario.
HAL library is used for this release. Refer README.md for more details.

Full Changelog: v2...v3

Basic Round Robin Scheduler with Task Yield function

15 Mar 19:06
Compare
Choose a tag to compare

Basic Round Robin Scheduler

15 Mar 18:00
Compare
Choose a tag to compare

In this version of ChiliRTOS, we are creating a simple Round Robin Scheduler
Features of this scheduler is:

  • Each task is assigned with a time slice of the duration "QUANTA"
  • Task will run till QUANTA and then the next task will be taken up for the same QUANTA duration and so on
  • Even if the tasks are finished early, next task is not taken up (means, thread is not yielded)

Full Changelog: v0...v1