Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on When to use RTOS?

Post

When to use RTOS?

+3
−0

When should I consider using RTOS in my application? Every microcontroller has a good number of interrupts then what is the need of it?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

General comments (1 comment)
General comments
Lundin‭ wrote almost 4 years ago

This is quite opinion-based. Basically, you may benefit from a RTOS if you have numerous different, complex processes that happen simultaneously. We are talking mid- to high end microcontrollers where you are well beyond 50kb program space and probably beyond 100k LoC. Or when you find yourself constructing your own scheduler abstraction layer, basically a simplistic OS but without separate stacks per process. Where to draw the line exactly is a subjective program design decision.