mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
260 B
C
16 lines
260 B
C
|
|
/**
|
|
* @defgroup sys_chardevthread Chardev Thread
|
|
* @ingroup sys
|
|
* @brief Chardev thread
|
|
*/
|
|
|
|
#ifndef __CHARDEV_THREAD_H
|
|
#define __CHARDEV_THREAD_H
|
|
|
|
#include "ringbuffer.h"
|
|
|
|
void chardev_loop(ringbuffer_t *rb);
|
|
|
|
#endif /* __CHARDEV_THREAD_H */
|