An open API service indexing awesome lists of open source software.

https://github.com/cw1997/ez-rtos

A micro real-time operating system supporting task switching, delay function, memory allocator and critical section. It is writen by ARM Cortex-M3 assemble language and works on STM32F103 MCU.
https://github.com/cw1997/ez-rtos

arm armcortexm3 computer-science cortex-m cortex-m3 mcu operating-system operating-systems os real-time-operating-system

Last synced: 8 days ago
JSON representation

A micro real-time operating system supporting task switching, delay function, memory allocator and critical section. It is writen by ARM Cortex-M3 assemble language and works on STM32F103 MCU.

Awesome Lists containing this project

README

        

# ez-rtos
A simple real-time operating system

# Features
* task switching
* by ARM Cortex-M3 SysTick
* delay
* delay(unsigned int)
* memory allocator
* malloc(size_t)
* free(void *)
* critical section