77 lines
2.4 KiB
C
77 lines
2.4 KiB
C
|
/*
|
||
|
* Copyright (c) 2022, Shenzhen CVA Innovation CO.,LTD
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* Shenzhen CVA Innovation CO.,LTD (CVA chip) is supplying this file for use
|
||
|
* exclusively with CVA's microcontroller products. This file can be freely
|
||
|
* distributed within development tools that are supporting such microcontroller
|
||
|
* products.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
||
|
* OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
||
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
||
|
* CVA SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL,
|
||
|
* OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
||
|
*/
|
||
|
|
||
|
#ifndef _UDS_USER_H_
|
||
|
#define _UDS_USER_H_
|
||
|
|
||
|
/*! \brief Contains public interface to various functions related
|
||
|
* to the user-defined UDS application
|
||
|
*/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* the includes
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include "../stack/uds.h"
|
||
|
#include "uds_service10.h"
|
||
|
#include "uds_service11.h"
|
||
|
#include "uds_service14.h"
|
||
|
#include "uds_service19.h"
|
||
|
#include "uds_service22.h"
|
||
|
#include "uds_service27.h"
|
||
|
#include "uds_service28.h"
|
||
|
#include "uds_service2E.h"
|
||
|
#include "uds_service2F.h"
|
||
|
#include "uds_service31.h"
|
||
|
#include "uds_service34.h"
|
||
|
#include "uds_service36.h"
|
||
|
#include "uds_service37.h"
|
||
|
#include "uds_service3E.h"
|
||
|
#include "uds_service85.h"
|
||
|
#include "uds_dtc.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* the defines
|
||
|
******************************************************************************/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* the typedefs
|
||
|
******************************************************************************/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* the globals
|
||
|
******************************************************************************/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* the function prototypes
|
||
|
******************************************************************************/
|
||
|
|
||
|
/*! \brief Initialize the UDS object
|
||
|
*/
|
||
|
extern void Uds_UserInit(UdsType *obj, const Uds_ParamsType *pParams);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* extern "C" */
|
||
|
|
||
|
#endif /* _UDS_USER_H_ */
|