-
Notifications
You must be signed in to change notification settings - Fork 0
/
Port_Cfg.h
43 lines (33 loc) · 1.23 KB
/
Port_Cfg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/******************************************************************************
*
* Module: Port
*
* File Name: Port_Cfg.h
*
* Description: Pre-Compile Configuration Header file for TM4C123GH6PM Microcontroller - Dio Driver
*
* Author: Ahmed Badra
******************************************************************************/
#ifndef PORT_CFG_H
#define PORT_CFG_H
/*
* Module Version 1.0.0
*/
#define PORT_CFG_SW_MAJOR_VERSION (1U)
#define PORT_CFG_SW_MINOR_VERSION (0U)
#define PORT_CFG_SW_PATCH_VERSION (0U)
/*
* AUTOSAR Version 4.0.3
*/
#define PORT_CFG_AR_RELEASE_MAJOR_VERSION (4U)
#define PORT_CFG_AR_RELEASE_MINOR_VERSION (0U)
#define PORT_CFG_AR_RELEASE_PATCH_VERSION (3U)
/* Pre-compile option for Development Error Detect */
#define PORT_DEV_ERROR_DETECT (STD_ON)
/* Pre-compile option for Version Info API */
#define PORT_VERSION_INFO_API (STD_ON)
/* Number of Configured Pins In the Mcu (MCU DEPENDENT) */
#define PORT_ALL_PINS_NUMBER (48U)
/* pre-compile option for PORT SET PIN DIRECTION API */
#define PORT_SET_PIN_DIRECTION_API (STD_ON)
#endif /* PORT_CFG_H */