Особливості реалізації багатозадачності на платформах Raspberry Pi та Arduino
Автор
Бруско, А. В.
Мирончук, О. Ю.
Brusko, A. V.
Myronchuk, O. Yu.
Дата
2022Metadata
Показати повну інформаціюCollections
Анотації
Найпопулярнішими платформами для розробників вбудованих систем серед початківців є Arduino та Raspberry Pi. Ці платформи різні та мають різне призначення, проте на обох може виникнути потреба виконувати кілька операцій паралельно. В роботі розглянуто способи реалізації багатозадачності на вищезазначених платформах. Оскільки Arduino базуються здебільшого на одноядерних AVR мікроконтролерах, з досить низькою частотою тактування, то багатозадачність у цієї платформи лише умовна. Тривалі в часі операції будуть займати єдине ядро та єдиний потік мікроконтроллера, що не дозволить виконувати щось інше. Це не стосується апаратних блоків мікроконтроллера, таких як таймери, що працюють незалежно від програмної частини і дозволяють реалізувати виконання коротких завдань з фіксованим періодом. Для простого написання програми, що використовує такі можливості контролера, існують бібліотеки. Найвідомішою з них є TimedAction, що може бути знайдена на офіційному сайті Arduino. Також у більшості мікроконтролерів є апаратний вхід, за допомогою якого можна створювати переривання. Під час переривання також можна виконувати операції, після завершення яких буде відновлена робота головного циклу програми. На Raspberry Pi, як і на подібних мікрокомп’ютерах під керуванням операційної системи Linux, повноцінно можна розглянути потоки та процеси. Процес є екземпляром програми та створюється операційною системою. Окремі процеси не мають спільного об’єму пам’яті. Паралельні процеси використовуються, коли потрібно прискорити складні обчислення. Потоки є підзадачами, яких може бути декілька усередині процесу. Між кількома потоками є спільний об’єм пам’яті, що дозволяє зручно обмінюватись даними. Паралельні потоки використовують, коли потрібно виконувати тривалі операції вводу/виводу. У мові Python, що широко використовується у вбудованих системах, для реалізації багатопоточності використовують бібліотеку Threading. Особливістю багатозадачності у Python є Global Interpreter Lock. Цей механізм гарантує, що в один момент часу буде виконуватись код лише одного процесу програми. У цієї особливості Python є прихильники та противники, як відповідно переваги та недоліки. The most popular platforms for developers of embedded systems among beginners are Arduino and Raspberry Pi. These platforms are different and have different purposes, but both may need to perform multiple operations in parallel. The article shows ways to implement multitasking on the above-mentioned platforms. Since Arduinos are mostly based on single-core AVR microcontrollers, with a rather low clock frequency, the multitasking of this platform is only conditional. Time-consuming operations will occupy the only core and the only thread of the microcontroller, which will not allow doing anything else. This does not apply to the hardware components of the microcontroller, such as timers, which work inde-pendently from the software part and allow the implementation of short tasks with a fixed period. There are libraries for simply writing a program that uses such controller capabilities. The most famous of them is TimedAction, which can be found on the official Arduino website. Also, most microcontrollers have a hardware input that can be used to generate soft-ware interrupts. During the interruption, operations can also be performed, after the completion of which the work of the main loop of the program will be resumed. On the Raspberry Pi, as on similar microcomputers running the Linux OS, you can fully consider threads and processes. A process is an instance of a program and is created by the operating system. Individual processes do not share a common memory. Parallel processes are used when complex calculations need to be accelerated. Threads are subtasks, which can be several within a process. There is a common amount of memory between several threads, which allows convenient data exchange. Parallel threads are used when you need to perform long I/O operations. In the Python language, which is widely used in embedded systems, the Threading library is used to implement multithreading. A feature of multitasking in Python is the Global Interpreter Lock. This mechanism ensures that the code of only one application process will be executed at a time. This feature of Python has supporters and detractors, as well as advantages and disadvantages.
URI:
http://ir.lib.vntu.edu.ua//handle/123456789/37219