19 lines
473 B
C
19 lines
473 B
C
|
/*
|
||
|
* @file smart_gpio.h
|
||
|
*
|
||
|
* @date Apr 13, 2019
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2019
|
||
|
*/
|
||
|
|
||
|
#ifndef HW_LAYER_SMART_GPIO_H_
|
||
|
#define HW_LAYER_SMART_GPIO_H_
|
||
|
|
||
|
/* TLE6240 pins go right after on chips */
|
||
|
#define TLE6240_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + (n)))
|
||
|
/* MC33972 pins go right after TLE6240 */
|
||
|
#define MC33972_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + 16 + (n)))
|
||
|
|
||
|
void initSmartGpio(void);
|
||
|
|
||
|
#endif /* HW_LAYER_SMART_GPIO_H_ */
|