diff --git a/chipset/sx128x/controller.c b/chipset/controller/controller.c similarity index 100% rename from chipset/sx128x/controller.c rename to chipset/controller/controller.c diff --git a/chipset/sx128x/controller.h b/chipset/controller/controller.h similarity index 100% rename from chipset/sx128x/controller.h rename to chipset/controller/controller.h diff --git a/chipset/sx128x/hal_timer.h b/chipset/controller/hal_timer.h similarity index 100% rename from chipset/sx128x/hal_timer.h rename to chipset/controller/hal_timer.h diff --git a/chipset/sx128x/hci_event.c b/chipset/controller/hci_event.c similarity index 100% rename from chipset/sx128x/hci_event.c rename to chipset/controller/hci_event.c diff --git a/chipset/sx128x/hci_event.h b/chipset/controller/hci_event.h similarity index 100% rename from chipset/sx128x/hci_event.h rename to chipset/controller/hci_event.h diff --git a/chipset/sx128x/hopping.c b/chipset/controller/hopping.c similarity index 100% rename from chipset/sx128x/hopping.c rename to chipset/controller/hopping.c diff --git a/chipset/sx128x/hopping.h b/chipset/controller/hopping.h similarity index 100% rename from chipset/sx128x/hopping.h rename to chipset/controller/hopping.h diff --git a/chipset/sx128x/ll.h b/chipset/controller/ll.h similarity index 100% rename from chipset/sx128x/ll.h rename to chipset/controller/ll.h diff --git a/port/stm32-l451-miromico-sx1280/Makefile b/port/stm32-l451-miromico-sx1280/Makefile index 38db65a53..73d7107d8 100644 --- a/port/stm32-l451-miromico-sx1280/Makefile +++ b/port/stm32-l451-miromico-sx1280/Makefile @@ -83,10 +83,10 @@ ${BTSTACK_ROOT}/src/hci_dump.c \ ${BTSTACK_ROOT}/src/hci_transport_h4.c \ ${BTSTACK_ROOT}/src/l2cap.c \ ${BTSTACK_ROOT}/src/l2cap_signaling.c \ -${BTSTACK_ROOT}/chipset/sx128x/controller.c \ -${BTSTACK_ROOT}/chipset/sx128x/hci_event.c \ -${BTSTACK_ROOT}/chipset/sx128x//hopping.c \ -${BTSTACK_ROOT}/chipset/sx128x//ll_sx1280.c \ +${BTSTACK_ROOT}/chipset/controller/controller.c \ +${BTSTACK_ROOT}/chipset/controller/hci_event.c \ +${BTSTACK_ROOT}/chipset/controller/hopping.c \ +${BTSTACK_ROOT}/chipset/sx128x/ll_sx1280.c \ ${BTSTACK_ROOT}/chipset/sx128x/SMTC_Drivers/sx1280-driver-c/sx1280-hal.c \ ${BTSTACK_ROOT}/chipset/sx128x/SMTC_Drivers/sx1280-driver-c/sx1280.c \ Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c \ @@ -186,7 +186,7 @@ C_INCLUDES = \ -I ${BTSTACK_ROOT}/chipset/sx128x \ -I ${BTSTACK_ROOT}/chipset/sx128x/SMTC_Drivers/ \ -I ${BTSTACK_ROOT}/chipset/sx128x/SMTC_Drivers/sx1280-driver-c/ \ --I controller \ +-I ${BTSTACK_ROOT}/chipset/controller \ -I Drivers/CMSIS/Device/ST/STM32L4xx/Include \ -I Drivers/CMSIS/Include \ -I Drivers/STM32L4xx_HAL_Driver/Inc \