element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Experts, Learning and Guidance
  • Technologies
  • More
Experts, Learning and Guidance
Ask an Expert Forum what is the best way to start learning about RTOS??
  • Blog
  • Forum
  • Documents
  • Leaderboard
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Experts, Learning and Guidance to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 6 replies
  • Answers 6 answers
  • Subscribers 292 subscribers
  • Views 6519 views
  • Users 0 members are here
Related
See a helpful answer?

Be sure to click 'more' and select 'suggest as answer'!

If you're the thread creator, be sure to click 'more' then 'Verify as Answer'!

what is the best way to start learning about RTOS??

Former Member
Former Member over 10 years ago

Iam new to embedded systems and want to gain knowledge on RTOS. Can any one suggest me how to start learning about RTOS.

  • Sign in to reply
  • Cancel

Top Replies

  • jomoenginer
    jomoenginer over 6 years ago +7 suggested
    Miro Samek, Quantum Leaps, has a series of Embedded Tutorials on YouTube which includes a newer RTOS series. For the most part, he uses the low cost TM4C123GXL Launchpad from TI but the concepts can be…
  • amgalbu
    amgalbu over 10 years ago +5 suggested
    The argument is very vast! I think the better approach is to start to understand basics using a very simple RTOS like freeRTOS On freeRTOS site there is a good tutorial RTOS Tutorial - Using an RTOS on…
  • clem57
    clem57 over 10 years ago +3 suggested
    Here's a brief overview on RTOS for those that aren't looking to commit to a book or code just yet. [Credit to Professor Jim Peckol at UW] An operating system has to provide 3 essential things: Task Scheduling…
Parents
  • clem57
    0 clem57 over 10 years ago

    Here's a brief overview on RTOS for those that aren't looking to commit to a book or code just yet. [Credit to Professor Jim Peckol at UW]

     

    An operating system has to provide 3 essential things:

    1. Task Scheduling - The scheduler determines which task to run and when a task will run
    2. Task Dispatching - The dispatcher handles the necessary operations to get a task ready to go
    3. Intertask Communication - This is the mechanism that handles how you exchange data and information between tasks and processes on the same machine or from other machines

     

    These 3 essential things are what makes up the smallest portion of an OS called the Kernel.

     

    A real time operating system is just a special purpose operating system. The 'real time' part of the name does not mean that the system responds quickly, it just means that there are rigid time requirements that must be met. If these time requirements are not met, your results can become inaccurate or unreliable.

     

    So you want to use a RTOS when you need to monitor and control physical  processes in a timely manner. The constraints you have deal with when using RTOS are tight scheduling, predictability, and robustness.

     

    There are two kinds of RTOS:

    1. Hard Real Time - System delays are known or at least bounded. Said to be operating correctly if the system can return results within any time constraints.
    2. Soft Real Time - Critical tasks get priority over other tasks and will retain priority until the task is completed. This is another way of saying that real time tasks cannot be kept waiting indefinitely. Soft real time makes it easier  to mix the system with other systems.

     

    Check out freertos.org for more!

     

    Clem

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • clem57
    0 clem57 over 10 years ago

    Here's a brief overview on RTOS for those that aren't looking to commit to a book or code just yet. [Credit to Professor Jim Peckol at UW]

     

    An operating system has to provide 3 essential things:

    1. Task Scheduling - The scheduler determines which task to run and when a task will run
    2. Task Dispatching - The dispatcher handles the necessary operations to get a task ready to go
    3. Intertask Communication - This is the mechanism that handles how you exchange data and information between tasks and processes on the same machine or from other machines

     

    These 3 essential things are what makes up the smallest portion of an OS called the Kernel.

     

    A real time operating system is just a special purpose operating system. The 'real time' part of the name does not mean that the system responds quickly, it just means that there are rigid time requirements that must be met. If these time requirements are not met, your results can become inaccurate or unreliable.

     

    So you want to use a RTOS when you need to monitor and control physical  processes in a timely manner. The constraints you have deal with when using RTOS are tight scheduling, predictability, and robustness.

     

    There are two kinds of RTOS:

    1. Hard Real Time - System delays are known or at least bounded. Said to be operating correctly if the system can return results within any time constraints.
    2. Soft Real Time - Critical tasks get priority over other tasks and will retain priority until the task is completed. This is another way of saying that real time tasks cannot be kept waiting indefinitely. Soft real time makes it easier  to mix the system with other systems.

     

    Check out freertos.org for more!

     

    Clem

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube