mirror of
https://github.com/MrUnknownDE/OpenIris-ESPIDF.git
synced 2026-04-17 21:43:45 +02:00
15 lines
250 B
C++
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 |