Comms CCF
This is a simple communication layer based on COBS, CBOR and FNV-1A
Loading...
Searching...
No Matches
rpc-task.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <FreeRTOS.h>
8#include <task.h>
9
10#ifdef __cplusplus
11extern "C"
12{
13#endif
14
15extern TaskHandle_t rpcTask;
16
19void commsCcfStartRpcTask(void);
20
21#ifdef __cplusplus
22};
23#endif
void commsCcfStartRpcTask(void)
Start the task responsible for receiving and responding to RPC calls.
Definition rpc-task.cpp:89