#ifndef TASKS_H #define TASKS_H /* * This file exports all the individual tasks, avoiding tons of semi-empty headers. */ #define LED_PIN 2 #define RATE_PER_S 10 #define BLINK_DELAY (1000 / 2 / RATE_PER_S) void task_blink(void *pvParams); #endif