Design and Analysis of Real-Time Task Scheduling Algorithm for Fog-Cloud Computing

Design and Analysis of Real-Time Task Scheduling Algorithm for Fog-Cloud Computing

Click the blue text to follow us Real-Time Task Scheduling for Fog-Cloud Computing Algorithm Design and Analysis Design and analysis of real-time task scheduling algorithm for fog-cloud computing Author Affiliation ZHANG Yannian, WU Hao, ZHANG Yun College of Electronic and Information Engineering, Nanjing Vocational Institute of Transport Technology, Nanjing 211188, China Author Introduction: ZHANG Yannian … Read more

Cloud Task Scheduling System for RISC-V Heterogeneous Clusters Based on Kubernetes

Cloud Task Scheduling System for RISC-V Heterogeneous Clusters Based on Kubernetes

Article Title: Cloud Task Scheduling System for RISC-V Heterogeneous Clusters Based on Kubernetes All Authors: Jiang Xiaobin, Xiong Yixiang, Zhang Heng, Hou Pengpeng, Wu Yanjun, Zhao Chen First Affiliation: Institute of Software, Chinese Academy of Sciences Publication Time: 2022, 31(9): 3–14 Abstract Summary With the widespread application and attention in the field of cloud computing, … Read more

Building RTOS: A Beginner’s Guide to Embedded OS Development

Building RTOS: A Beginner's Guide to Embedded OS Development

This article will take you through the core concepts of Real-Time Operating Systems (RTOS) in a straightforward manner, gradually guiding you to create a small yet fully functional RTOS. We will cover the basic components of RTOS, task scheduling, portability, and task synchronization mechanisms. 1. Basic Components of RTOS A minimal RTOS typically includes the … Read more

Introduction to RTOS in Embedded Systems

Introduction to RTOS in Embedded Systems

1. What is RTOS RTOS (Real-Time Operating System) is an operating system specifically designed to handle real-time tasks. It provides a way for embedded systems to manage tasks, schedule tasks, handle interrupts, and deliver real-time performance. Unlike general-purpose operating systems (like Windows or Linux), RTOS focuses on meeting the response time requirements of real-time systems. … Read more

Design and Practice of Billion-Level Heterogeneous Task Scheduling Framework

Design and Practice of Billion-Level Heterogeneous Task Scheduling Framework

Background Alibaba Cloud Log Service serves as a cloud-native observability and analysis platform. It provides a one-stop solution for data collection, processing, querying, visualization, alerting, consumption, and delivery, significantly enhancing users’ digital capabilities in development, operations, operations, and security scenarios. The log service platform, as an observability platform, offers functions such as data import, data … Read more

Building Real-Time Operating Systems with C Language

Building Real-Time Operating Systems with C Language

Building Real-Time Operating Systems with C Language In modern embedded systems, a real-time operating system (RTOS) is a crucial component. It ensures that the system completes tasks within a specified time, suitable for time-critical applications such as industrial control, automotive electronics, and medical devices. This article will introduce how to build a simple real-time operating … Read more

Task Scheduling in FreeRTOS

Task Scheduling in FreeRTOS

Convention: This article is based on freeRTOSv202212.01. Defining a Task Task scheduling involves the “tasks” that need to be managed, so we need to first understand what a “task” looks like. An independent task must consider the following points: 1. The system must recognize and manage this task, so the task needs an identification card … Read more

Detailed Explanation of FreeRTOS Task Management Mechanism

Detailed Explanation of FreeRTOS Task Management Mechanism

Detailed Explanation of FreeRTOS Task Management Mechanism 1. Basic Concepts of Tasks In FreeRTOS, a task is the basic unit of execution in the system, similar to an independent small program, with its own execution flow, stack space, local variables, and Task Control Block (TCB). Each task focuses on specific functionality, collaborating to achieve the … Read more

Writing a Real-Time Embedded Operating System Kernel in C

Writing a Real-Time Embedded Operating System Kernel in C

Creating content is not easy, if convenient, please follow, thank you This article is based on a thorough review of authoritative literature and materials, forming professional and reliable content. All data in the full text can be referenced and traced back. Special note: Data and materials have been authorized. This article does not involve any … Read more

Advantages of Running RTOS on MCU Compared to Bare Metal

Advantages of Running RTOS on MCU Compared to Bare Metal

Follow+Star Public Account, don’t miss the wonderful content Compiled by | strongerHuang WeChat Official Account | Embedded Column Readers often ask questions about RTOS, such as:Should I learn RTOS now?What are the benefits of learning RTOS?Should my project run on RTOS? The root of these questions is actually a lack of understanding of RTOS and … Read more