Files
luban-lite/packages/artinchip/uds/UDSLogic/SID2E_WriteDataByIdentifier.h

38 lines
1.3 KiB
C
Raw Permalink Normal View History

2025-07-22 11:15:46 +08:00
/*
*
* SPDX-License-Identifier: Apache-2.0
*
*/
#ifndef _SID2E_WRITE_DATA_BY_IDENTIFIER_H_
#define _SID2E_WRITE_DATA_BY_IDENTIFIER_H_
#include <stdint.h>
#include "uds_def.h"
/******************************************************************************
* : void service_2E_WriteDataByIdentifier(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 2E -
* : uint8_t* msg_buf --
    uint8_t msg_dlc --
* :
* :
* :
******************************************************************************/
void service_2E_WriteDataByIdentifier(const uint8_t* msg_buf, uint16_t msg_dlc);
/******************************************************************************
* : bool_t service_2E_check_len(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 2E
* : uint16_t msg_dlc --
* :
* : TRUE: ; FALSE:
* :
******************************************************************************/
bool_t service_2E_check_len(const uint8_t* msg_buf, uint16_t msg_dlc);
#endif
/****************EOF****************/