Skip to content

Simple task scheduler for microcontroller (core and compiler independent)

License

Notifications You must be signed in to change notification settings

potdarsourabh100/uKernel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

uKernel (Micro Kernel)

Introduction

This is a scheduler for microcontrollers. This is not in any kind an RTOS, or anything like it. Just create a function, create a descriptor for that function and add it to the scheduler with a period and let the scheduler do the rest. I am trying to keep it really simple due to the memory limitations of the microcontrollers. The maximum number of task is 255 but I am sure that the memory will go out first.

This task scheduler is completely core and compiler independent since it does not do any context switching.

Roadmap

I am trying to implement some kind of priority when the tasks are scheduled to run simultaneously. On the current implementation, if the tasks are scheduled to run in at the same time, they are executed by the order they were added to the scheduler.

Versions

V1.0 - Initial version - 03-05-2013

Credits

This code was written by me, but I join two schedulers that I found, the tiny-kernel-microcontroller by Sébastien Pallatin (here) and the leOS by Leonardo Miliani (here).

Thank you both for the great job, all the hard work already done by you (both).

Author

Written by Luis Maduro

About

Simple task scheduler for microcontroller (core and compiler independent)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%