smart gpios: remove dead code (#1432)

This commit is contained in:
dron0gus 2020-05-14 23:15:55 +03:00 committed by GitHub
parent 3aa6d497d7
commit 48aa40b344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 8 deletions

View File

@ -122,7 +122,6 @@ typedef enum __attribute__ ((__packed__)) {
GPIOE_17 = 91,
// TLE6240 pins go right after on chips
//#define TLE6240_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + (n)))
TLE6240_PIN_1 = 130,
TLE6240_PIN_2 = 131,
TLE6240_PIN_3 = 132,

View File

@ -161,7 +161,6 @@ typedef enum __attribute__ ((__packed__)) {
GPIOH_15 = 129,
/* TLE6240 pins go right after on chips */
//#define TLE6240_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + (n)))
TLE6240_PIN_1 = 130,
TLE6240_PIN_2 = 131,
TLE6240_PIN_3 = 132,
@ -180,7 +179,6 @@ typedef enum __attribute__ ((__packed__)) {
TLE6240_PIN_16 = 145,
/* MC33972 pins go right after TLE6240 */
//#define MC33972_PIN(n) ((brain_pin_e)((int)BRAIN_PIN_LAST_ONCHIP + 1 + 16 + (n)))
MC33972_PIN_1 = 146,
MC33972_PIN_21 = 166,
MC33972_PIN_22 = 167,

View File

@ -24,11 +24,6 @@
#define BOARD_EXT_GPIOCHIPS (BOARD_TLE6240_COUNT + BOARD_MC33972_COUNT + BOARD_TLE8888_COUNT)
#endif
/* 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);
void startSmartCsPins(void);
void stopSmartCsPins(void);