You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
* @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 */
|