Boboter
Loading...
Searching...
No Matches
halt_execution.h
Go to the documentation of this file.
1
7
8#pragma once
9
10#include <freertos/FreeRTOS.h>
11#include "helpers/delay.h"
12
13inline void halt_execution() {
14 delay(100);
15 abort();
16}
void delay(const uint16_t ms)
Wrapper for vTaskDelay(pdMS_TO_TICKS(ms)).
Definition delay.h:16
void halt_execution()
Definition halt_execution.h:13