blob: 6539a00047f5dc5591b487f3f62d678be546925f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef KNOB_TASK_H
#define KNOB_TASK_H
#include <stdint.h>
#include <stdbool.h>
uint32_t run_command(const char *path);
bool try_run_command_blocking(const char *path);
void yield_task();
#endif
|