Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / C++

C++ Embedded Printf Task

16 Mar 2024MIT7 min read 4K   30   5  
A task to handle printf
PrintfTask is intended for embedded systems, including small micro controller environments running a lightweight RTOS (e.g., FreeRTOS). The PrintfTask offloads the majority of printf duties to a low priority thread that can run in the background. This provides more deterministic behavior when using printf in all other tasks in the system. It also provides for less timing impacts that printf can add to timing critical tasks.
This article is currently in progress. This version is not yet publicly viewable

Please go to the C++ Table of Contents to view the list of available articles in this section.