From c6b36ad4ca110d4d08d1a82aa1716407079c16ac Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Wed, 17 May 2017 01:05:41 +0200 Subject: [PATCH] nrf5: Update Makefile to include ticker.c and renamed softpwm. Updating also include paths to include modules/music and drivers/. --- nrf5/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nrf5/Makefile b/nrf5/Makefile index 493beacae8..5086ae7774 100644 --- a/nrf5/Makefile +++ b/nrf5/Makefile @@ -54,9 +54,11 @@ INC += -I./hal INC += -I./hal/$(MCU_VARIANT) INC += -I./modules/machine INC += -I./modules/ubluepy +INC += -I./modules/music INC += -I./modules/ble INC += -I../lib/mp-readline INC += -I./drivers/bluetooth +INC += -I./drivers NRF_DEFINES += -D$(MCU_VARIANT_UPPER) NRF_DEFINES += -DCONFIG_GPIO_AS_PINRESET @@ -128,7 +130,8 @@ SRC_C += \ gccollect.c \ pin_named_pins.c \ fatfs_port.c \ - drivers/pwm.c \ + drivers/softpwm.c \ + drivers/ticker.c \ drivers/bluetooth/ble_drv.c \ drivers/bluetooth/ble_uart.c \