1. Home
  2. /
  3. Freertos
  4. /
  5. Task Delay Example (FreeRTOS)

Task Delay Example (FreeRTOS) - Freertos Typing CST Test

Loading…

Task Delay Example (FreeRTOS) — Freertos Code

Demonstrates delaying a task for a fixed period.

#include <FreeRTOS.h>
#include <task.h>
#include <stdio.h>

void vTaskDelayExample(void* pvParameters) {
	while(1) {
		printf("Task running\n");
		vTaskDelay(pdMS_TO_TICKS(1000));
	}
}

int main() {
	xTaskCreate(vTaskDelayExample, "DelayTask", configMINIMAL_STACK_SIZE, NULL, 1, NULL);
	vTaskStartScheduler();
	return 0;
}

Freertos Language Guide

FreeRTOS is a lightweight, open-source real-time operating system (RTOS) kernel for embedded devices. It provides multitasking, scheduling, and inter-task communication for microcontrollers and small processors.

Primary Use Cases

  • ▸Task scheduling for embedded systems
  • ▸IoT and sensor node software
  • ▸Industrial automation control
  • ▸Real-time motor and sensor management
  • ▸Edge devices and microcontroller applications

Notable Features

  • ▸Preemptive and cooperative multitasking
  • ▸Task priorities and time slicing
  • ▸Inter-task communication (queues, semaphores, mutexes)
  • ▸Software timers and tickless idle mode
  • ▸Memory management and dynamic allocation support

Origin & Creator

Created by Richard Barry in 2003, now maintained and extended by Amazon Web Services as Amazon FreeRTOS and FreeRTOS Kernel.

Industrial Note

Essential in embedded systems requiring predictable real-time behavior, small footprint, and multitasking support-commonly used in IoT sensors, motor control, and safety-related microcontroller applications.

More Freertos Typing Exercises

Hello World Task (FreeRTOS)Blink LED Task (FreeRTOS)Queue Example (FreeRTOS)Mutex Example (FreeRTOS)Timer Callback (FreeRTOS)Semaphore Synchronization (FreeRTOS)Queue Set Example (FreeRTOS)Priority Task Example (FreeRTOS)Event Group Example (FreeRTOS)

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher