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.
20 lines
240 B
20 lines
240 B
#ifndef _VK_CLIENT_H_
|
|
#define _VK_CLIENT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include "drv_ec800k.h"
|
|
|
|
|
|
void client_task(void);
|
|
|
|
int16_t client_yield( CLte_dev_t *lte_dev );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|