Based on the STM platform and meet the requirements of real-time control operating system, there are the following 5 options for transplantation. They are μClinux, μC/OS-II, eCos, FreeRTOS and Dujiangyan Operating System (djyos). The characteristics and shortcomings of these five embedded operating systems are introduced below.
1. μClinux
μClinux is an excellent version of embedded Linux, its full name is micro-control Linux, which literally means micro-control Linux. Compared with standard Linux, μClinux's kernel is very small, but it still inherits the main features of the Linux operating system, including good stability and portability, powerful network functions, excellent file system support, and standard rich APIs. And TCP/IP network protocol, etc. Because there is no MMU memory management unit, the realization of its multitasking requires certain skills.
μClinux inherits the multitasking implementation of standard Linux in structure, which is divided into real-time process and ordinary process. It adopts first-come-first-served and time-sliced ​​round-robin scheduling respectively. It is only improved for the characteristics of low-end embedded CPUs and does not support kernel preemption. , Real-time performance is general.
In memory management, because μClinux is designed for processors without MMU, the virtual memory management technology of the processor cannot be used, and only real memory management strategies can be used. The system uses a paging memory allocation method to paging the actual memory at startup. The system accesses the memory directly. The operating system does not protect the memory space. Multiple processes can share a running space. Therefore, even an unprivileged process calling an invalid pointer will trigger an address error and may cause the program Crash or even system crash.
The interrupt management of μClinux operating system divides interrupt processing into two parts: top half processing and bottom half processing. In the top half of processing, the interrupt operation must be turned off, and only necessary, very small, and fast processing is performed, and other processing is handed over to the bottom half of processing; the bottom half of processing executes those complex and time-consuming processing, and accepts interrupts. Because there are many interrupt processing in the bottom half of the system, it will cause the system interrupt processing delay.
μClinux supports the file system well. Because μClinux inherits the perfect file system performance of Linux, it supports ROMFS, NFS, ext2, MS-DOS, JFFS and other file systems. However, the ROMFS file system is generally used, which takes up less space than a general file system (such as ext2). However, the ROMFS file system does not support dynamic erasing and saving, and the data that the system needs to be dynamically saved must be processed by the virtual RAM disk/JFFS method.
In support of hardware, because μClinux inherits most of the performance of Linux, it needs at least 512KB of RAM space and 1MB of ROM/Flash space.
In terms of μClinux transplantation,. μClinux is an improvement of Linux for embedded systems, and its structure is more complicated. To transplant μClinux, the target processor needs to modify the code related to the processor, as well as external ROM and RAM of sufficient capacity.
In summary, the biggest feature of μClinux is that it is designed for non-MMU processors, which is suitable for stm32f103 without MMU function, but transplanting this system requires at least 512KB of RAM space, 1MB of ROM/FLASH space, and stmf103 has 256K The FLASH requires an external memory, which increases the cost of hardware design. The structure of μClinux is complex, the transplantation is relatively difficult, the kernel is larger, and its real-time performance is also worse. If the embedded product developed focuses on file system and network applications, μClinux is a good choice.
2. μC/OS-II
μC/OS-II is developed on the basis of μC/OS. It is a small, preemptive multi-task real-time kernel written in C language. μC/OS-II can manage 64 tasks, and provides tasks such as task scheduling and management, memory management, synchronization and communication between tasks, time management and interrupt service. It has high execution efficiency, small footprint, excellent real-time performance and scalability Strong and other characteristics.
For real-time satisfaction, because the μC/OS-II kernel is designed and implemented according to the requirements of real-time systems, it only supports preemptive scheduling based on a fixed priority; the scheduling method is simple and can meet higher real-time requirements.
In terms of memory management, μC/OS-II manages continuous large blocks of memory as partitions. Each partition contains an integer number of memory blocks of the same size, but the size of the memory can be different between different partitions. When users dynamically allocate memory, they only need to select an appropriate partition, allocate the memory by block, and put the block back to the previous partition when it is released, which eliminates the fragmentation problem caused by multiple dynamic allocation and release of memory. .
μC/OS-II interrupt processing is relatively simple. Only one interrupt service subroutine ISR can be hung on an interrupt vector, and the user code must be completed in the ISR (interrupt service routine).
The more things the ISR needs to do, the longer the interrupt latency.
The maximum nesting depth that the kernel can support is 255.
In terms of file system support, because μC/OS-II is oriented to small and medium-sized embedded systems, even if it contains all the functions, the kernel is less than 10 KB after compilation, so the system itself does not provide support for the file system. But μC/OS-II has good expansion performance, and you can add the content of the file system if you need it.
In terms of hardware support, μC/OS-II can support most of the current popular CPUs. Because of the small kernel of μC/OS-II, the cut code can be as small as 2KB, and the minimum data RAM space required For 4 KB, the transplantation of μC/OS-II is relatively simple, only need to revise the code related to the processor.
In summary, μC/OS-II is an embedded operating system kernel with simple structure, complete functions and strong real-time performance. It is very suitable for CPUs without MMU functions. It requires little kernel code space and data storage space, has good real-time performance, good scalability, and is open source. There are many materials and examples on the Internet, so it is very suitable for porting to the stm32f103 CPU.
3. eCos
eCos (embedded Configurable operating system), that is, embedded configurable operating system. It is a configurable, portable, and real-time operating system for deep embedded applications with open source code. The biggest feature is flexible configuration and modular design. The core part is composed of Xiaotong's components, including the kernel, C language library, and underlying runtime package. Each component can provide a large number of configuration options (real-time kernel can also be used as an optional configuration), using the configuration tool provided by eCos can be easily configured, and through different configurations to enable eCos to meet different embedded application requirements.
On the reverse side of real-time performance, due to the rich scheduling methods of eCos, it provides two priority-based schedulers (ie, bitmap scheduler and multi-level queue scheduler), allowing users to select one of the schedulers during configuration, which has good adaptability. Therefore, it performs well in real-time.
In terms of memory management, eCos neither segment nor page the memory allocation, but uses a dynamic memory allocation mechanism based on the memory pool. Two memory management methods are implemented through two memory pools: one is a variable-length memory pool; the other is a fixed-length memory pool, similar to the management scheme of VxWorks.
In interrupt management, eCos uses a hierarchical interrupt processing mechanism, which divides interrupt processing into traditional ISR (interrupt service routine) and hysteresis interrupt service routine DSR (deferred service routine). Similar to the processing mechanism of μClinux, this mechanism can run DSR when interrupts are allowed, so high-priority interrupts and processing are allowed when processing lower-priority interrupts. In order to greatly reduce the interruption delay, the ISR should be able to run quickly. If the amount of service caused by the interrupt is small, the ISR can handle the interrupt separately; if the interrupt service is complicated, the ISR only shields the interrupt source, and then hands it to the DSR (Deferred Service Program) for processing.
The configurability of the eCos operating system is very powerful, and users can add the required file system by themselves. The eCos operating system also supports most of the currently popular embedded CPUs. The eCos operating system can be ported between 16-bit, 32-bit and 64-bit architectures. The eCos itself has a very small core, so the trimmed code can be as small as 10 KB, and the minimum data RAM space required is 10 KB.
In terms of system transplantation, the portability of eCos operating system is very good, which is easier than μC/OS-II and μClinux.
In summary, the biggest feature of eCos is that it is flexible in configuration and supports the porting of CPUs without MMU. It is open source and has good portability, and it is also more suitable for porting to CPUs on the stm32 platform. But the application of eCOS is not too extensive, not as common as μC/OS-II, and there are not as many materials as μC/OS-II. eCos is suitable for some commercial or industrial-grade cost-sensitive embedded systems, such as some applications in the consumer electronics field.
4. FreeRTOS
Because RTOS needs to take up certain system resources (especially RAM resources), only a few real-time operating systems such as μC/OS-II, embOS, salvo, FreeRTOS, etc. can run on small RAM microcontrollers. Compared with commercial operating systems such as C/OS-II and embOS, FreeRTOS operating system is a completely free operating system. It has the characteristics of open source code, portability, reduction, and flexible scheduling strategy. It can be easily transplanted to various microcontrollers to run. , The latest version is 6.0.
As a lightweight operating system, FreeRTOS provides functions including: task management, time management, semaphores, message queues, memory management, recording functions, etc., which can basically meet the needs of smaller systems. The FreeRTOS kernel supports a priority scheduling algorithm. Each task can be given a certain priority according to the degree of importance. The CPU always allows the task with the highest priority in the ready state to run first. The FreeRT0S kernel also supports a rotation scheduling algorithm. The system allows different tasks to use the same priority. When no higher priority tasks are ready, tasks of the same priority share the CPU usage time.
The kernel of FreeRTOS can be set as a deprivable kernel or an inalienable kernel according to user needs. When FreeRTOS is set as a deprivable kernel, high-priority tasks in the ready state can deprive low-priority tasks of the CPU usage rights, which can ensure that the system meets real-time requirements; when FreeRTOS is set as an inalienable kernel , The high-priority task in the ready state can only be run after the currently running task actively releases the right to use the CPU, which can improve the operating efficiency of the CPU.
Porting of FreeRTOS:
The FreeRTOS operating system can be easily ported to work on different processors, and now provides porting of ARM, MSP430, AVR, PIC, C8051F and other processors. The transplantation of FrceRTOS on different processors is similar to μC/0S-II, so this article will not elaborate on the transplantation of FreeRTOS. In addition, the TCP/IP protocol stack μIP has been ported to FreeRTOS, and the specific code can be found on the FreeRTOS website
Disadvantages of FreeRTOS:
Compared with the common μC/OS-II operating system, the FreeRTOS operating system has both advantages and disadvantages. Its shortcomings, on the one hand, are reflected in the service functions of the system. For example, FreeRTOS only provides the realization of message queues and semaphores, and cannot send messages to the message queue in a last-in, first-out order; on the other hand, FreeRTOS is just an operating system The kernel needs to be expanded with third-party GUI (graphical user interface), TCP/IP protocol stack, FS (file system), etc. to realize a more complex system, unlike μC/OS-II, it can be combined with μC/GUI, μC/ Seamless integration of FS, μC/TCP-IP, etc.
5. Dujiangyan Operating System (djyos)
Dujiangyan Operating System, referred to as djyos, is named after a great water conservancy project: Dujiangyan.
Different from traditional operating systems, djyos does not use threads but events as the scheduling core. This scheduling algorithm allows programmers to get rid of the way of thinking of writing programs by simulating computer execution, but to write applications in a way that humans recognize the world. It is like introducing VC in embedded programming. The scheduling algorithm of djyos allows programmers to get rid of the shackles of threads and processes. There is no thread-related API in djyos, and a programmer who has no knowledge of threads can successfully write applications under djyos.
The djyos operating system is based on events as the core for scheduling. This scheduling strategy allows programmers to program according to the habits of humans, not computers.
In ordinary operating systems, scheduling is based on threads. Events are used as thread data. The software model is advertised as "event triggered". The threads are also waiting on the sidelines. When a specific event occurs, the thread resumes operation and takes it as Input data to be processed.
Event-centric scheduling, like devices and memory, treats the thread virtual machine as the resource needed to process the event. When an event needs to be processed, a thread virtual machine is allocated or created for the event, and the thread virtual machine is started. The machine handles the event.
djysiV0.4.2 is released, adding support for stm32 version, which can be ported to cortex-m3 (chip is stm32f103). The system is suitable for industrial control. The system source code is open, but it is not permanently free.
From the above, it is appropriate to transplant μC/OS-II, eCos, FreeRTOS, and Dujiangyan operating system for stm32f103.
Ningbo Autrends International Trade Co.,Ltd. , https://www.mosvapor.com