diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -141,11 +141,15 @@ ifneq ($(findstring resistive_load,${drivers}), ) resistor2_pin ?= p3_1 resistor3_pin ?= p3_2 resistor4_pin ?= p3_3 + resistor5_pin ?= p1_4 + resistor6_pin ?= p1_5 COMMON_FLAGS += -DDRIVER_RESISTIVE_LOAD COMMON_FLAGS += -DRESISTIVE_LOAD_PIN1=GPIO::${resistor1_pin} COMMON_FLAGS += -DRESISTIVE_LOAD_PIN2=GPIO::${resistor2_pin} COMMON_FLAGS += -DRESISTIVE_LOAD_PIN3=GPIO::${resistor3_pin} COMMON_FLAGS += -DRESISTIVE_LOAD_PIN4=GPIO::${resistor4_pin} + COMMON_FLAGS += -DRESISTIVE_LOAD_PIN5=GPIO::${resistor5_pin} + COMMON_FLAGS += -DRESISTIVE_LOAD_PIN6=GPIO::${resistor6_pin} endif ifneq ($(findstring softi2c,${drivers}), ) |