代码拉取完成,页面将自动刷新
同步操作将从 Lyndon/mcu_uds_protol 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/***************************************************************************//**
\file network_layer.h
\author
\mail
\version 0
\date 2016-09-24
\description uds network code, base on ISO 15765
*******************************************************************************/
#ifndef _NETWORK_LAYER_H_
#define _NETWORK_LAYER_H_
/*******************************************************************************
Include Files
*******************************************************************************/
#include <stdint.h>
#include "uds_type.h"
typedef enum _N_TATYPE_T_
{
N_TATYPE_NONE = 0,
N_TATYPE_PHYSICAL,
N_TATYPE_FUNCTIONAL
}n_tatype_t;
typedef enum _N_RESULT_
{
N_OK = 0,
N_TIMEOUT_A,
N_TIMEOUT_Bs,
N_TIMEOUT_Cr,
N_WRONG_SN,
N_INVALID_FS,
N_UNEXP_PDU,
N_WFT_OVRN,
N_BUFFER_OVFLW,
N_ERROR
}n_result_t;
typedef void
(*ffindication_func) (uint16_t msg_dlc);
typedef void
(*indication_func) (uint8_t msg_buf[], uint16_t msg_dlc, n_result_t n_result);
typedef void
(*confirm_func) (n_result_t n_result);
typedef struct _NETWORK_USER_DATA_T_
{
ffindication_func ffindication;
indication_func indication;
confirm_func confirm;
}nt_usdata_t;
/*******************************************************************************
external Varaibles
*******************************************************************************/
extern uint8_t g_tatype;
/*******************************************************************************
Function Definition
*******************************************************************************/
/**
* network_main - network main task, should be schedule every one ms
*
* @void
*
* returns:
* void
*/
extern void
network_main(void);
/**
* network_recv_frame - recieved uds network can frame
*
* @func_addr : 0 - physical addr, 1 - functional addr
* @frame_buf : uds can frame data buffer
* @frame_dlc : uds can frame length
*
* returns:
* void
*/
extern void
network_recv_frame(uint8_t func_addr, uint8_t frame_buf[], uint8_t frame_dlc);
/**
* network_send_udsmsg - send a uds msg by can
*
* @msg_buf : uds msg data buffer
* @msg_dlc : uds msg length
*
* returns:
* void
*/
extern void
network_send_udsmsg(uint8_t msg_buf[], uint16_t msg_dlc);
/**
* network_reg_usdata - reg usdata Function
*
* @usdata : uds msg data Function struct
*
* returns:
* 0 - ok, other - err
*/
extern int
network_reg_usdata(nt_usdata_t usdata);
#endif
/****************EOF****************/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。