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

37 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 _SID22_READ_DATA_BY_IDENTIFIER_H_
#define _SID22_READ_DATA_BY_IDENTIFIER_H_
#include <stdint.h>
#include "uds_def.h"
/******************************************************************************
* : void service_22_ReadDataByIdentifier(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 22 -
* : uint8_t* msg_buf --
    uint8_t msg_dlc --
* :
* :
* :
******************************************************************************/
2025-10-21 13:59:50 +08:00
void service_22_ReadDataByIdentifier(const uint8_t *msg_buf, uint16_t msg_dlc);
2025-07-22 11:15:46 +08:00
/******************************************************************************
* : bool_t service_22_check_len(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 22
* : uint16_t msg_dlc --
* :
* : TRUE: ; FALSE:
* :
******************************************************************************/
2025-10-21 13:59:50 +08:00
bool_t service_22_check_len(const uint8_t *msg_buf, uint16_t msg_dlc);
2025-07-22 11:15:46 +08:00
#endif
/****************EOF****************/