You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
276 B
23 lines
276 B
#ifndef _VK_COM_H_
|
|
#define _VK_COM_H_
|
|
|
|
#include "rtdef.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "rtthread.h"
|
|
#include <stdint.h>
|
|
|
|
|
|
void com_task(void);
|
|
|
|
rt_device_t fmu_com_get(void);
|
|
|
|
int fmu_com_register(rt_device_t com_dev);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|