├── .cproject ├── .mxproject ├── .project ├── Core ├── Inc │ ├── main.h │ ├── stm32f1xx_hal_conf.h │ └── stm32f1xx_it.h ├── Src │ ├── main.c │ ├── stm32f1xx_hal_msp.c │ ├── stm32f1xx_it.c │ ├── syscalls.c │ ├── sysmem.c │ └── system_stm32f1xx.c └── Startup │ └── startup_stm32f103c8tx.s ├── Debug.zip ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F1xx │ │ │ └── Include │ │ │ ├── stm32f103xb.h │ │ │ ├── stm32f1xx.h │ │ │ └── system_stm32f1xx.h │ └── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h └── STM32F1xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f1xx_hal.h │ ├── stm32f1xx_hal_cortex.h │ ├── stm32f1xx_hal_def.h │ ├── stm32f1xx_hal_dma.h │ ├── stm32f1xx_hal_dma_ex.h │ ├── stm32f1xx_hal_exti.h │ ├── stm32f1xx_hal_flash.h │ ├── stm32f1xx_hal_flash_ex.h │ ├── stm32f1xx_hal_gpio.h │ ├── stm32f1xx_hal_gpio_ex.h │ ├── stm32f1xx_hal_pcd.h │ ├── stm32f1xx_hal_pcd_ex.h │ ├── stm32f1xx_hal_pwr.h │ ├── stm32f1xx_hal_rcc.h │ ├── stm32f1xx_hal_rcc_ex.h │ ├── stm32f1xx_hal_tim.h │ ├── stm32f1xx_hal_tim_ex.h │ └── stm32f1xx_ll_usb.h │ └── Src │ ├── stm32f1xx_hal.c │ ├── stm32f1xx_hal_cortex.c │ ├── stm32f1xx_hal_dma.c │ ├── stm32f1xx_hal_exti.c │ ├── stm32f1xx_hal_flash.c │ ├── stm32f1xx_hal_flash_ex.c │ ├── stm32f1xx_hal_gpio.c │ ├── stm32f1xx_hal_gpio_ex.c │ ├── stm32f1xx_hal_pcd.c │ ├── stm32f1xx_hal_pcd_ex.c │ ├── stm32f1xx_hal_pwr.c │ ├── stm32f1xx_hal_rcc.c │ ├── stm32f1xx_hal_rcc_ex.c │ ├── stm32f1xx_hal_tim.c │ ├── stm32f1xx_hal_tim_ex.c │ └── stm32f1xx_ll_usb.c ├── KeyboardRead_and_MidiDataSend_Example.txt ├── LICENSE ├── Middlewares └── ST │ └── STM32_USB_Device_Library │ ├── Class │ └── HID │ │ ├── Inc │ │ └── usbd_hid.h │ │ └── Src │ │ └── usbd_hid.c │ └── Core │ ├── Inc │ ├── usbd_core.h │ ├── usbd_ctlreq.h │ ├── usbd_def.h │ └── usbd_ioreq.h │ └── Src │ ├── usbd_core.c │ ├── usbd_ctlreq.c │ └── usbd_ioreq.c ├── README.md ├── Simple_USB_MIDI_Demo.ioc ├── USB_DEVICE ├── App │ ├── usb_device.c │ ├── usb_device.h │ ├── usbd_desc.c │ └── usbd_desc.h └── Target │ ├── usbd_conf.c │ └── usbd_conf.h └── USB_MIDI_Descriptors.txt /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/.cproject -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/.project -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32f103c8tx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Core/Startup/startup_stm32f103c8tx.s -------------------------------------------------------------------------------- /Debug.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Debug.zip -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usb.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pcd.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_usb.c -------------------------------------------------------------------------------- /KeyboardRead_and_MidiDataSend_Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/KeyboardRead_and_MidiDataSend_Example.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/LICENSE -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Class/HID/Inc/usbd_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Class/HID/Inc/usbd_hid.h -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.c -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c -------------------------------------------------------------------------------- /Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/README.md -------------------------------------------------------------------------------- /Simple_USB_MIDI_Demo.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/Simple_USB_MIDI_Demo.ioc -------------------------------------------------------------------------------- /USB_DEVICE/App/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/App/usb_device.c -------------------------------------------------------------------------------- /USB_DEVICE/App/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/App/usb_device.h -------------------------------------------------------------------------------- /USB_DEVICE/App/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/App/usbd_desc.c -------------------------------------------------------------------------------- /USB_DEVICE/App/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/App/usbd_desc.h -------------------------------------------------------------------------------- /USB_DEVICE/Target/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/Target/usbd_conf.c -------------------------------------------------------------------------------- /USB_DEVICE/Target/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_DEVICE/Target/usbd_conf.h -------------------------------------------------------------------------------- /USB_MIDI_Descriptors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rounak-dutta/Simple-USB-MIDI-Implementation-on-STM32F103-with-CubeIDE/HEAD/USB_MIDI_Descriptors.txt --------------------------------------------------------------------------------