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.
- Host: GitHub
- URL: https://github.com/cw1997/ez-rtos
- Owner: cw1997
- License: apache-2.0
- Created: 2021-01-29T15:56:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T16:34:19.000Z (almost 3 years ago)
- Last Synced: 2025-03-29T02:51:29.648Z (26 days ago)
- Topics: arm, armcortexm3, computer-science, cortex-m, cortex-m3, mcu, operating-system, operating-systems, os, real-time-operating-system
- Language: C
- Homepage:
- Size: 137 KB
- Stars: 71
- Watchers: 6
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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