-
Notifications
You must be signed in to change notification settings - Fork 0
/
hal_gpio_cfg.h
36 lines (24 loc) · 1.22 KB
/
hal_gpio_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
/*
* File: hal_gpio_cfg.h
* Author: Mohamed Ahmed Abdel Wahab
* LinkedIn : https://www.linkedin.com/in/mohamed-abdel-wahab-162413253/
* Github : https://github.com/moabdelwahab6611
* Created on May 22, 2023, 2:51 AM
*/
#ifndef HAL_GPIO_CFG_H
#define HAL_GPIO_CFG_H
/**************************Includes-Section*****************************/
/***********************************************************************/
/**********************Macro Declarations-Section***********************/
/***********************************************************************/
/******************Macro Function Declarations-Section******************/
#define CONFIG_ENABLE 0x01
#define CONFIG_DISABLE 0x00
#define GPIO_PORT_PIN_CONFIGURATIONS CONFIG_ENABLE
#define GPIO_PORT_CONFIGURATIONS CONFIG_ENABLE
/***********************************************************************/
/********************Data Types Declarations-Section********************/
/***********************************************************************/
/**********Software Interfaces Functions Declarations-Section***********/
/***********************************************************************/
#endif /* HAL_GPIO_CFG_H */