New Favorite Embedded Operating System: Priority Cooperative Scheduling

New Favorite Embedded Operating System: Priority Cooperative Scheduling

Embedded operating systems sound quite impressive, but in fact, they are just a streamlined version of an operating system, specially tailored for embedded devices. Today, let’s talk about a particularly interesting embedded operating system – the one based on priority cooperative scheduling. It’s a bit like a well-organized small team, where each member has their … Read more

What Kind of Operating System Does IoT Call For in the Era of Autonomy?

What Kind of Operating System Does IoT Call For in the Era of Autonomy?

Author: Levin IoT Think Tank Original Introduction The competition in the IoT industry is developing towards an ecosystem, with companies including internet giants and operators actively laying out upstream key technologies and downstream solutions based on platforms. According to data released by the Ministry of Industry and Information Technology, by the end of August this … Read more

Numerous IoT Operating Systems

Numerous IoT Operating Systems

Introduction In today’s PC and mobile era, the dominant operating systems may not continue their reign in the IoT era. The rule of the operating system industry is that once a monopoly is formed, it is very difficult for later entrants to overturn it; they can only wait for the next wave of industrial change. … Read more

How to Choose an IoT Operating System?

How to Choose an IoT Operating System?

The Internet of Things (IoT) can be roughly divided into four layers: the perception layer, network layer, device management layer, and application layer. Among these, the **perception layer** most vividly reflects the characteristics of IoT. The perception layer consists of various sensors, protocol conversion gateways, communication gateways, and smart terminals. Most of these terminals are … Read more

Enhancing Programmers’ Self-Cultivation

Enhancing Programmers' Self-Cultivation

Table of Contents 1.1 Starting with Hello World 1.2 The Essence Remains Unchanged 1.3 The Higher You Stand, The Further You See 1.4 What the Operating System Does 1.4.1 Don’t Let the CPU Doze Off 1.5 What to Do When Memory is Insufficient 1.5.1 About Isolation 1.5.2 Segmentation 1.5.3 Paging 1.6 Many Hands Make Light … Read more

Understanding Multitasking OS: Cooperative vs Preemptive

Understanding Multitasking OS: Cooperative vs Preemptive

Computer memory, is the temporary storage area of a computer, which holds the data and instructions needed by the Central Processing Unit (CPU). The instructions, which refer to specific operations of the processor, are defined by the Instruction Set Architecture, which typically includes four types of instructions: arithmetic, logic, data movement, and control flow. Before … Read more

An Embedded Operating System Based on Priority Cooperative Scheduling

An Embedded Operating System Based on Priority Cooperative Scheduling

1. Introduction to QuarkTS GitHub link: https://github.com/kmilo17pet/QuarkTS Open Source License: MIT license QuarkTS is an open-source embedded operating system designed to provide a modern development environment for small embedded applications, helping developers build stable and predictable event-driven multitasking software. Its features include: • Priority Cooperative Scheduling: Tasks manage their own lifecycle, avoiding the complexities brought … Read more

Factors Preventing Linux from Becoming a Mainstream Desktop OS

Factors Preventing Linux from Becoming a Mainstream Desktop OS

According to the latest data from traffic monitoring agency StatCounter, as of December 2024, Linux holds only 4.13% of the global desktop operating system market share. This is in stark contrast to its widespread use in the server market, making its performance on desktops rather disappointing. So, what are the reasons behind this situation? Recently, … Read more

Understanding Linux: Use It Without Overcomplicating

Understanding Linux: Use It Without Overcomplicating

Linux, like Windows and MacOS, is an operating system designed for users. Currently, their usage scenarios differ. Linux is widely used in the server domain, while personal users tend to be more technical. Windows has the widest reach, being used across various industries on desktop systems, attracting the largest audience. MacOS is unique, aesthetically pleasing, … Read more

How to Communicate Between Threads in C Language

How to Communicate Between Threads in C Language

First, there is no communication issue between threads within the same process. You can access data however you want; thus, we actually need to do something to actively “isolate” different threads to avoid dirty reads and writes. Second, multi-threaded programming (as well as multi-process programming) requires a foundation in operating systems. Without understanding the operating … Read more