blob: a151973bb7772f4304c7a26cc08ab84f64c99547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
/**
* \ingroup main_tasks
* \{
*/
/**
* \brief Listen for TCP socket messages
*
* This task starts a TCP server that listens for messages using \ref i2ctcp,
* and sends any received I2C messages (also using \ref i2ctcp).
*/
void serve_task();
/// \}
|