Move files that have no application-specific bits (e.g. USB stack, tuning, and RF path APIs) to ../common/.

This commit is contained in:
Jared Boone
2013-09-17 15:10:46 -07:00
parent 78121f5a3e
commit fe2a700f8f
16 changed files with 18 additions and 17 deletions

View File

@ -23,15 +23,15 @@
BINARY = hackrf_usb BINARY = hackrf_usb
SRC = $(BINARY).c \ SRC = $(BINARY).c \
rf_path.c \ ../common/rf_path.c \
tuning.c \ ../common/tuning.c \
sgpio_isr.c \ sgpio_isr.c \
usb_bulk_buffer.c \ usb_bulk_buffer.c \
usb.c \ ../common/usb.c \
usb_request.c \ ../common/usb_request.c \
usb_standard_request.c \ ../common/usb_standard_request.c \
usb_descriptor.c \ usb_descriptor.c \
usb_queue.c \ ../common/usb_queue.c \
../common/fault_handler.c \ ../common/fault_handler.c \
../common/hackrf_core.c \ ../common/hackrf_core.c \
../common/sgpio.c \ ../common/sgpio.c \

View File

@ -23,14 +23,15 @@
BINARY = hackrf_usb_rom_to_ram BINARY = hackrf_usb_rom_to_ram
SRC = hackrf_usb.c \ SRC = hackrf_usb.c \
rf_path.c \ ../common/rf_path.c \
tuning.c \ ../common/tuning.c \
sgpio_isr.c \ sgpio_isr.c \
usb_bulk_buffer.c \ usb_bulk_buffer.c \
usb.c \ ../common/usb.c \
usb_request.c \ ../common/usb_request.c \
usb_standard_request.c \ ../common/usb_standard_request.c \
usb_descriptor.c \ usb_descriptor.c \
../common/usb_queue.c \
../common/fault_handler.c \ ../common/fault_handler.c \
../common/hackrf_core.c \ ../common/hackrf_core.c \
../common/sgpio.c \ ../common/sgpio.c \

View File

@ -25,15 +25,15 @@ BINARY = hackrf_usb_rom_to_ram
SRC_DIR = hackrf_usb SRC_DIR = hackrf_usb
SRC = hackrf_usb.c \ SRC = hackrf_usb.c \
rf_path.c \ ../common/rf_path.c \
tuning.c \ ../common/tuning.c \
sgpio_isr.c \ sgpio_isr.c \
usb_bulk_buffer.c \ usb_bulk_buffer.c \
usb.c \ ../common/usb.c \
usb_request.c \ ../common/usb_request.c \
usb_standard_request.c \ ../common/usb_standard_request.c \
usb_descriptor.c \ usb_descriptor.c \
usb_queue.c \ ../common/usb_queue.c \
../common/fault_handler.c \ ../common/fault_handler.c \
../common/hackrf_core.c \ ../common/hackrf_core.c \
../common/sgpio.c \ ../common/sgpio.c \