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

36 lines
1.2 KiB
C
Raw Permalink Normal View History

2025-07-22 11:15:46 +08:00
/*
*
* SPDX-License-Identifier: Apache-2.0
*
*/
#ifndef _SID2E_TEST_PRESENT_H_
#define _SID2E_TEST_PRESENT_H_
#include <stdint.h>
#include "uds_def.h"
/******************************************************************************
* : void service_3E_TesterPresent(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 3E -
* : uint8_t* msg_buf --
    uint8_t msg_dlc --
* :
* :
* :
******************************************************************************/
2025-10-21 13:59:50 +08:00
void service_3E_TesterPresent(const uint8_t *msg_buf, uint16_t msg_dlc);
2025-07-22 11:15:46 +08:00
/******************************************************************************
* : bool_t service_3E_check_len(const uint8_t* msg_buf, uint16_t msg_dlc)
* : 3E
* : uint16_t msg_dlc --
* :
* : TRUE: ; FALSE:
* :
******************************************************************************/
2025-10-21 13:59:50 +08:00
bool_t service_3E_check_len(const uint8_t *msg_buf, uint16_t msg_dlc);
2025-07-22 11:15:46 +08:00
#endif
/****************EOF****************/