blob: c83281cd965aaba7612e67e711a4935d1d85ea23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/****************************************************************************************************
* init ialization of pull up's over GPIO
* those pins must be configured as inputs in the pinmap file by using MAP_GPIOPinTypeGPIOInput func
* here is added onlu the pull up defenition
*****************************************************************************************************/
#ifndef PIN_CONFIG_H_
#define PIN_CONFIG_H_
void InitPinOutPullUps(void);
#endif /* PIN_CONFIG_H_ */
|