mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 09:53:59 +09:00
33 lines
536 B
C
33 lines
536 B
C
#ifndef UDS_DEFINES
|
|
#define UDS_DEFINES
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
|
|
typedef volatile int8_t vint8_t;
|
|
typedef volatile uint8_t vuint8_t;
|
|
|
|
typedef volatile int16_t vint16_t;
|
|
typedef volatile uint16_t vuint16_t;
|
|
|
|
typedef volatile int32_t vint32_t;
|
|
typedef volatile uint32_t vuint32_t;
|
|
|
|
|
|
#include "def_dflash.h"
|
|
#include "def_uds.h"
|
|
#include "debug_util.h"
|
|
#include "uds.h"
|
|
#include "ctl_dtc.h"
|
|
#include "uds_table.h"
|
|
|
|
#endif
|
|
|
|
|