Monthly Archives: December 2022

RUST lang and ownership

One of the most promising candidates to replacing C as the default language for e.g., embedded programs is RUST lang. One of the most important pillar of RUST is the memory management, because it comes without a (dynamic) garbage collector. … Continue reading

Posted in Uncategorized | Leave a comment

What is the problem with shared resources

First of all most people believe that RTOS solve the determinism issues caused with shared resources. But, sorry for that, it doesn’t. The issue comes with the chosen scheduler in combination with interrupts. An interrupt stops the current execution and … Continue reading

Posted in Uncategorized | Leave a comment