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.
 
 
 

30 lines
425 B

#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief
* 该模块主要处理来自上位机的消息
*/
/**
* @brief 模块初始化
*
*/
void extern_if_service_init();
#if 0
/**
* @brief 上报时间码
*
* @param client
* @param timecode0
* @param timecode1
*/
void extern_if_service_send_timecode(struct sockaddr_in client, uint32_t timecode0, uint32_t timecode1);
#endif
#ifdef __cplusplus
}
#endif