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.
26 lines
348 B
26 lines
348 B
#ifndef _VK_CLIENT_H_
|
|
#define _VK_CLIENT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include "drv_ec800k.h"
|
|
|
|
//#define debug_mode
|
|
typedef struct {
|
|
uint8_t match_stage;
|
|
uint8_t match_flag;
|
|
} no_carrier_match_t;
|
|
|
|
|
|
void client_task(void);
|
|
|
|
void client_yield( CLte_dev_t *lte_dev );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|