Files
OpenIris-ESPIDF/components/OpenIrisTasks/OpenIrisTasks/OpenIrisTasks.hpp
Nils Ponsard afc61276a9 fix: capitalisation of helper for linux build
Signed-off-by: Nils Ponsard <nilsponsard@gmail.com>
2025-07-12 20:07:24 +02:00

15 lines
250 B
C++

#pragma once
#ifndef OPENIRISTASKS_HPP
#define OPENIRISTASKS_HPP
#include "helpers.hpp"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
namespace OpenIrisTasks
{
void ScheduleRestart(int milliseconds);
};
#endif