加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gateway.h 703 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wings 提交于 2020-08-20 13:44 . 修改接口,加时间
#ifndef __GATEWAY_H__
#define __GATEWAY_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/time.h>
#include <time.h>
#include <errno.h>
#define UPDATE_DATA 0xF1
#define RUNLOG "run-log.txt"
#define ERRLOG "err-log.txt"
void* uart_pthread_func(void *arg);
void* port_pthread_func(void *arg);
void* port1_pthread_func(void *arg);
void* port2_pthread_func(void *arg);
int write_log(char* fp, char* str);
int write_run_info(char uart_str_eqpnum,char uart_str_eqpstate,char uart_str_stepkey0,char uart_str_stepkey1);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化