├── LICENSE.txt ├── README.md ├── hardware └── schematic.pdf └── software ├── SW4STM32_project ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.codan.core.prefs ├── CureSynth_Whip Debug.cfg ├── CureSynth_Whip.ioc ├── CureSynth_Whip.xml ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F7xx │ │ │ │ └── Include │ │ │ │ ├── stm32f765xx.h │ │ │ │ ├── stm32f7xx.h │ │ │ │ └── system_stm32f7xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F7xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f7xx_hal.h │ │ ├── stm32f7xx_hal_cortex.h │ │ ├── stm32f7xx_hal_def.h │ │ ├── stm32f7xx_hal_dma.h │ │ ├── stm32f7xx_hal_dma_ex.h │ │ ├── stm32f7xx_hal_flash.h │ │ ├── stm32f7xx_hal_flash_ex.h │ │ ├── stm32f7xx_hal_gpio.h │ │ ├── stm32f7xx_hal_gpio_ex.h │ │ ├── stm32f7xx_hal_i2c.h │ │ ├── stm32f7xx_hal_i2c_ex.h │ │ ├── stm32f7xx_hal_i2s.h │ │ ├── stm32f7xx_hal_pwr.h │ │ ├── stm32f7xx_hal_pwr_ex.h │ │ ├── stm32f7xx_hal_rcc.h │ │ ├── stm32f7xx_hal_rcc_ex.h │ │ ├── stm32f7xx_hal_tim.h │ │ ├── stm32f7xx_hal_tim_ex.h │ │ ├── stm32f7xx_hal_uart.h │ │ └── stm32f7xx_hal_uart_ex.h │ │ └── Src │ │ ├── stm32f7xx_hal.c │ │ ├── stm32f7xx_hal_cortex.c │ │ ├── stm32f7xx_hal_dma.c │ │ ├── stm32f7xx_hal_dma_ex.c │ │ ├── stm32f7xx_hal_flash.c │ │ ├── stm32f7xx_hal_flash_ex.c │ │ ├── stm32f7xx_hal_gpio.c │ │ ├── stm32f7xx_hal_i2c.c │ │ ├── stm32f7xx_hal_i2c_ex.c │ │ ├── stm32f7xx_hal_i2s.c │ │ ├── stm32f7xx_hal_pwr.c │ │ ├── stm32f7xx_hal_pwr_ex.c │ │ ├── stm32f7xx_hal_rcc.c │ │ ├── stm32f7xx_hal_rcc_ex.c │ │ ├── stm32f7xx_hal_tim.c │ │ ├── stm32f7xx_hal_tim_ex.c │ │ └── stm32f7xx_hal_uart.c ├── Inc │ ├── curelib_inc │ │ ├── curebuffer.h │ │ ├── curedbg.h │ │ ├── curedisplay.h │ │ ├── curemidi.h │ │ ├── curemisc.h │ │ ├── curesynth.h │ │ └── patchlist.h │ ├── main.h │ ├── stm32f7xx_hal_conf.h │ ├── stm32f7xx_it.h │ └── subdsp.h ├── STM32F765VITx_FLASH.ld ├── Src │ ├── curelib_src │ │ ├── curebuffer.c │ │ ├── curedbg.c │ │ ├── curedisplay.c │ │ ├── curemidi.c │ │ └── curesynth.c │ ├── main.c │ ├── stm32f7xx_hal_msp.c │ ├── stm32f7xx_it.c │ ├── syscalls.c │ └── system_stm32f7xx.c ├── arm_cortexM7lfsp_math.lib └── startup │ └── startup_stm32f765xx.s └── bin └── CureSynth_Whip.bin /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/README.md -------------------------------------------------------------------------------- /hardware/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/hardware/schematic.pdf -------------------------------------------------------------------------------- /software/SW4STM32_project/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.cproject -------------------------------------------------------------------------------- /software/SW4STM32_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.gitignore -------------------------------------------------------------------------------- /software/SW4STM32_project/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.mxproject -------------------------------------------------------------------------------- /software/SW4STM32_project/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.project -------------------------------------------------------------------------------- /software/SW4STM32_project/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.settings/language.settings.xml -------------------------------------------------------------------------------- /software/SW4STM32_project/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /software/SW4STM32_project/CureSynth_Whip Debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/CureSynth_Whip Debug.cfg -------------------------------------------------------------------------------- /software/SW4STM32_project/CureSynth_Whip.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/CureSynth_Whip.ioc -------------------------------------------------------------------------------- /software/SW4STM32_project/CureSynth_Whip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/CureSynth_Whip.xml -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f765xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f765xx.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2s.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curebuffer.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curedbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curedbg.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curedisplay.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curemidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curemidi.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curemisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curemisc.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/curesynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/curesynth.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/curelib_inc/patchlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/curelib_inc/patchlist.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/main.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/stm32f7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/stm32f7xx_it.h -------------------------------------------------------------------------------- /software/SW4STM32_project/Inc/subdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Inc/subdsp.h -------------------------------------------------------------------------------- /software/SW4STM32_project/STM32F765VITx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/STM32F765VITx_FLASH.ld -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/curelib_src/curebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/curelib_src/curebuffer.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/curelib_src/curedbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/curelib_src/curedbg.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/curelib_src/curedisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/curelib_src/curedisplay.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/curelib_src/curemidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/curelib_src/curemidi.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/curelib_src/curesynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/curelib_src/curesynth.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/main.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/stm32f7xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/stm32f7xx_hal_msp.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/stm32f7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/stm32f7xx_it.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/syscalls.c -------------------------------------------------------------------------------- /software/SW4STM32_project/Src/system_stm32f7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/Src/system_stm32f7xx.c -------------------------------------------------------------------------------- /software/SW4STM32_project/arm_cortexM7lfsp_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/arm_cortexM7lfsp_math.lib -------------------------------------------------------------------------------- /software/SW4STM32_project/startup/startup_stm32f765xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/SW4STM32_project/startup/startup_stm32f765xx.s -------------------------------------------------------------------------------- /software/bin/CureSynth_Whip.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshikan/CureSynth_Whip/HEAD/software/bin/CureSynth_Whip.bin --------------------------------------------------------------------------------