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.
21 lines
434 B
C
21 lines
434 B
C
![]()
1 month ago
|
#ifndef __PD_CSGIRON_H__
|
||
|
#define __PD_CSGIRON_H__
|
||
|
|
||
|
#ifdef CFG_DEV_TYPE_LAND_PD
|
||
|
/* Includes ------------------------------------------------------------------*/
|
||
|
//#include "pd_dau.h"
|
||
|
|
||
|
typedef int32_t (*csgiron_recv_fun_cb)(uint8_t, char*, uint16_t);
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
uint16_t report_period;
|
||
|
uint8_t reserved[2];
|
||
|
} iron_config_t;
|
||
|
|
||
|
|
||
|
extern int32_t _csgiron_recv_process(uint8_t slot, char *pkt, uint16_t len);
|
||
|
#endif
|
||
|
#endif
|
||
|
|