From a787a0576b80dd0cdd14a31ce12eb094ef05507f Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 30 Jun 2018 14:48:41 +0200 Subject: [PATCH] Moved to a subdirectory --- .mxproject => usb/.mxproject | 4 ++-- {Inc => usb/Inc}/app.h | 0 {Inc => usb/Inc}/main.h | 0 {Inc => usb/Inc}/stm32_assert.h | 0 {Inc => usb/Inc}/stm32f1xx_hal_conf.h | 0 {Inc => usb/Inc}/stm32f1xx_it.h | 0 {Inc => usb/Inc}/usb.h | 0 {Inc => usb/Inc}/util.h | 0 Makefile => usb/Makefile | 0 STM32F103C8Tx_FLASH.ld => usb/STM32F103C8Tx_FLASH.ld | 0 {Src => usb/Src}/bmp085.c | 0 {Src => usb/Src}/debug.c | 0 {Src => usb/Src}/display.c | 0 {Src => usb/Src}/main.c | 0 {Src => usb/Src}/stm32f1xx_hal_msp.c | 0 {Src => usb/Src}/stm32f1xx_it.c | 0 {Src => usb/Src}/system_stm32f1xx.c | 0 {Src => usb/Src}/usb.c | 0 {Src => usb/Src}/usbdev.c | 0 convert-crlf => usb/convert-crlf | 0 {host => usb/host}/Makefile | 0 {host => usb/host}/test.c | 0 mx.scratch => usb/mx.scratch | 2 +- startup_stm32f103xb.s => usb/startup_stm32f103xb.s | 0 testusb.ioc => usb/usb.ioc | 0 25 files changed, 3 insertions(+), 3 deletions(-) rename .mxproject => usb/.mxproject (98%) rename {Inc => usb/Inc}/app.h (100%) rename {Inc => usb/Inc}/main.h (100%) rename {Inc => usb/Inc}/stm32_assert.h (100%) rename {Inc => usb/Inc}/stm32f1xx_hal_conf.h (100%) rename {Inc => usb/Inc}/stm32f1xx_it.h (100%) rename {Inc => usb/Inc}/usb.h (100%) rename {Inc => usb/Inc}/util.h (100%) rename Makefile => usb/Makefile (100%) rename STM32F103C8Tx_FLASH.ld => usb/STM32F103C8Tx_FLASH.ld (100%) rename {Src => usb/Src}/bmp085.c (100%) rename {Src => usb/Src}/debug.c (100%) rename {Src => usb/Src}/display.c (100%) rename {Src => usb/Src}/main.c (100%) rename {Src => usb/Src}/stm32f1xx_hal_msp.c (100%) rename {Src => usb/Src}/stm32f1xx_it.c (100%) rename {Src => usb/Src}/system_stm32f1xx.c (100%) rename {Src => usb/Src}/usb.c (100%) rename {Src => usb/Src}/usbdev.c (100%) rename convert-crlf => usb/convert-crlf (100%) rename {host => usb/host}/Makefile (100%) rename {host => usb/host}/test.c (100%) rename mx.scratch => usb/mx.scratch (96%) rename startup_stm32f103xb.s => usb/startup_stm32f103xb.s (100%) rename testusb.ioc => usb/usb.ioc (100%) diff --git a/.mxproject b/usb/.mxproject similarity index 98% rename from .mxproject rename to usb/.mxproject index f4aaa73..eeaeb15 100644 --- a/.mxproject +++ b/usb/.mxproject @@ -1,7 +1,7 @@ [PreviousGenFiles] -HeaderPath=/aux/misc/stm/testusb/Inc +HeaderPath=/aux/misc/stm/home/usb/Inc HeaderFiles=stm32f1xx_it.h;stm32_assert.h;stm32f1xx_hal_conf.h;main.h;usb_device.h;usbd_conf.h;usbd_desc.h;usbd_dfu_if.h; -SourcePath=/aux/misc/stm/testusb/Src +SourcePath=/aux/misc/stm/home/usb/Src SourceFiles=stm32f1xx_it.c;stm32f1xx_hal_msp.c;main.c;usb_device.c;usbd_conf.c;usbd_desc.c;usbd_dfu_if.c; [PreviousLibFiles] diff --git a/Inc/app.h b/usb/Inc/app.h similarity index 100% rename from Inc/app.h rename to usb/Inc/app.h diff --git a/Inc/main.h b/usb/Inc/main.h similarity index 100% rename from Inc/main.h rename to usb/Inc/main.h diff --git a/Inc/stm32_assert.h b/usb/Inc/stm32_assert.h similarity index 100% rename from Inc/stm32_assert.h rename to usb/Inc/stm32_assert.h diff --git a/Inc/stm32f1xx_hal_conf.h b/usb/Inc/stm32f1xx_hal_conf.h similarity index 100% rename from Inc/stm32f1xx_hal_conf.h rename to usb/Inc/stm32f1xx_hal_conf.h diff --git a/Inc/stm32f1xx_it.h b/usb/Inc/stm32f1xx_it.h similarity index 100% rename from Inc/stm32f1xx_it.h rename to usb/Inc/stm32f1xx_it.h diff --git a/Inc/usb.h b/usb/Inc/usb.h similarity index 100% rename from Inc/usb.h rename to usb/Inc/usb.h diff --git a/Inc/util.h b/usb/Inc/util.h similarity index 100% rename from Inc/util.h rename to usb/Inc/util.h diff --git a/Makefile b/usb/Makefile similarity index 100% rename from Makefile rename to usb/Makefile diff --git a/STM32F103C8Tx_FLASH.ld b/usb/STM32F103C8Tx_FLASH.ld similarity index 100% rename from STM32F103C8Tx_FLASH.ld rename to usb/STM32F103C8Tx_FLASH.ld diff --git a/Src/bmp085.c b/usb/Src/bmp085.c similarity index 100% rename from Src/bmp085.c rename to usb/Src/bmp085.c diff --git a/Src/debug.c b/usb/Src/debug.c similarity index 100% rename from Src/debug.c rename to usb/Src/debug.c diff --git a/Src/display.c b/usb/Src/display.c similarity index 100% rename from Src/display.c rename to usb/Src/display.c diff --git a/Src/main.c b/usb/Src/main.c similarity index 100% rename from Src/main.c rename to usb/Src/main.c diff --git a/Src/stm32f1xx_hal_msp.c b/usb/Src/stm32f1xx_hal_msp.c similarity index 100% rename from Src/stm32f1xx_hal_msp.c rename to usb/Src/stm32f1xx_hal_msp.c diff --git a/Src/stm32f1xx_it.c b/usb/Src/stm32f1xx_it.c similarity index 100% rename from Src/stm32f1xx_it.c rename to usb/Src/stm32f1xx_it.c diff --git a/Src/system_stm32f1xx.c b/usb/Src/system_stm32f1xx.c similarity index 100% rename from Src/system_stm32f1xx.c rename to usb/Src/system_stm32f1xx.c diff --git a/Src/usb.c b/usb/Src/usb.c similarity index 100% rename from Src/usb.c rename to usb/Src/usb.c diff --git a/Src/usbdev.c b/usb/Src/usbdev.c similarity index 100% rename from Src/usbdev.c rename to usb/Src/usbdev.c diff --git a/convert-crlf b/usb/convert-crlf similarity index 100% rename from convert-crlf rename to usb/convert-crlf diff --git a/host/Makefile b/usb/host/Makefile similarity index 100% rename from host/Makefile rename to usb/host/Makefile diff --git a/host/test.c b/usb/host/test.c similarity index 100% rename from host/test.c rename to usb/host/test.c diff --git a/mx.scratch b/usb/mx.scratch similarity index 96% rename from mx.scratch rename to usb/mx.scratch index 90d8040..da8434e 100644 --- a/mx.scratch +++ b/usb/mx.scratch @@ -1,6 +1,6 @@ -/aux/misc/stm/testusb/\testusb +/aux/misc/stm/home/usb/\usb C /aux/misc/stm/F1-package/Drivers/CMSIS /aux/misc/stm/F1-package/Drivers/CMSIS diff --git a/startup_stm32f103xb.s b/usb/startup_stm32f103xb.s similarity index 100% rename from startup_stm32f103xb.s rename to usb/startup_stm32f103xb.s diff --git a/testusb.ioc b/usb/usb.ioc similarity index 100% rename from testusb.ioc rename to usb/usb.ioc -- 2.39.2