├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README ├── README_RU ├── TODO ├── bsp ├── 3rd_party │ └── STM32_USB-Host-Device_Lib_V2.1.0 │ │ ├── Libraries │ │ ├── CMSIS │ │ │ ├── CMSIS END USER LICENCE AGREEMENT.pdf │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ └── Source │ │ │ │ │ └── Templates │ │ │ │ │ ├── TASKING │ │ │ │ │ └── cstart_thumb2.asm │ │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ └── startup_stm32f4xx.s │ │ │ │ │ ├── arm │ │ │ │ │ └── startup_stm32f4xx.s │ │ │ │ │ ├── gcc_ride7 │ │ │ │ │ └── startup_stm32f4xx.s │ │ │ │ │ ├── iar │ │ │ │ │ └── startup_stm32f4xx.s │ │ │ │ │ └── system_stm32f4xx.c │ │ │ ├── Documentation │ │ │ │ ├── CMSIS-SVD_Schema_1_0.xsd │ │ │ │ ├── CMSIS_CM4_SIMD.htm │ │ │ │ ├── CMSIS_Core.htm │ │ │ │ ├── CMSIS_DebugSupport.htm │ │ │ │ ├── CMSIS_History.htm │ │ │ │ ├── CMSIS_Logo_Final.jpg │ │ │ │ └── CMSIS_System_View_Description.htm │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ └── core_cmInstr.h │ │ │ ├── README.txt │ │ │ └── index.htm │ │ ├── STM32F4xx_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f4xx_adc.h │ │ │ │ ├── stm32f4xx_can.h │ │ │ │ ├── stm32f4xx_crc.h │ │ │ │ ├── stm32f4xx_cryp.h │ │ │ │ ├── stm32f4xx_dac.h │ │ │ │ ├── stm32f4xx_dbgmcu.h │ │ │ │ ├── stm32f4xx_dcmi.h │ │ │ │ ├── stm32f4xx_dma.h │ │ │ │ ├── stm32f4xx_exti.h │ │ │ │ ├── stm32f4xx_flash.h │ │ │ │ ├── stm32f4xx_fsmc.h │ │ │ │ ├── stm32f4xx_gpio.h │ │ │ │ ├── stm32f4xx_hash.h │ │ │ │ ├── stm32f4xx_i2c.h │ │ │ │ ├── stm32f4xx_iwdg.h │ │ │ │ ├── stm32f4xx_pwr.h │ │ │ │ ├── stm32f4xx_rcc.h │ │ │ │ ├── stm32f4xx_rng.h │ │ │ │ ├── stm32f4xx_rtc.h │ │ │ │ ├── stm32f4xx_sdio.h │ │ │ │ ├── stm32f4xx_spi.h │ │ │ │ ├── stm32f4xx_syscfg.h │ │ │ │ ├── stm32f4xx_tim.h │ │ │ │ ├── stm32f4xx_usart.h │ │ │ │ └── stm32f4xx_wwdg.h │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f4xx_adc.c │ │ │ │ ├── stm32f4xx_can.c │ │ │ │ ├── stm32f4xx_crc.c │ │ │ │ ├── stm32f4xx_cryp.c │ │ │ │ ├── stm32f4xx_cryp_aes.c │ │ │ │ ├── stm32f4xx_cryp_des.c │ │ │ │ ├── stm32f4xx_cryp_tdes.c │ │ │ │ ├── stm32f4xx_dac.c │ │ │ │ ├── stm32f4xx_dbgmcu.c │ │ │ │ ├── stm32f4xx_dcmi.c │ │ │ │ ├── stm32f4xx_dma.c │ │ │ │ ├── stm32f4xx_exti.c │ │ │ │ ├── stm32f4xx_flash.c │ │ │ │ ├── stm32f4xx_fsmc.c │ │ │ │ ├── stm32f4xx_gpio.c │ │ │ │ ├── stm32f4xx_hash.c │ │ │ │ ├── stm32f4xx_hash_md5.c │ │ │ │ ├── stm32f4xx_hash_sha1.c │ │ │ │ ├── stm32f4xx_i2c.c │ │ │ │ ├── stm32f4xx_iwdg.c │ │ │ │ ├── stm32f4xx_pwr.c │ │ │ │ ├── stm32f4xx_rcc.c │ │ │ │ ├── stm32f4xx_rng.c │ │ │ │ ├── stm32f4xx_rtc.c │ │ │ │ ├── stm32f4xx_sdio.c │ │ │ │ ├── stm32f4xx_spi.c │ │ │ │ ├── stm32f4xx_syscfg.c │ │ │ │ ├── stm32f4xx_tim.c │ │ │ │ ├── stm32f4xx_usart.c │ │ │ │ └── stm32f4xx_wwdg.c │ │ ├── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ │ ├── audio │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_audio_core.h │ │ │ │ │ │ └── usbd_audio_out_if.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_audio_core.c │ │ │ │ │ │ └── usbd_audio_out_if.c │ │ │ │ ├── cdc │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_cdc_core.h │ │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_cdc_core.c │ │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ │ ├── dfu │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_dfu_core.h │ │ │ │ │ │ ├── usbd_dfu_mal.h │ │ │ │ │ │ ├── usbd_flash_if.h │ │ │ │ │ │ ├── usbd_mem_if_template.h │ │ │ │ │ │ └── usbd_otp_if.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_dfu_core.c │ │ │ │ │ │ ├── usbd_dfu_mal.c │ │ │ │ │ │ ├── usbd_flash_if.c │ │ │ │ │ │ ├── usbd_mem_if_template.c │ │ │ │ │ │ └── usbd_otp_if.c │ │ │ │ ├── hid │ │ │ │ │ ├── inc │ │ │ │ │ │ └── usbd_hid_core.h │ │ │ │ │ └── src │ │ │ │ │ │ └── usbd_hid_core.c │ │ │ │ └── msc │ │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ │ └── src │ │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ ├── usbd_msc_scsi.c │ │ │ │ │ └── usbd_storage_template.c │ │ │ ├── Core │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_conf_template.h │ │ │ │ │ ├── usbd_core.h │ │ │ │ │ ├── usbd_def.h │ │ │ │ │ ├── usbd_ioreq.h │ │ │ │ │ ├── usbd_req.h │ │ │ │ │ └── usbd_usr.h │ │ │ │ └── src │ │ │ │ │ ├── usbd_core.c │ │ │ │ │ ├── usbd_ioreq.c │ │ │ │ │ └── usbd_req.c │ │ │ └── Release_Notes.html │ │ ├── STM32_USB_HOST_Library │ │ │ ├── Class │ │ │ │ ├── HID │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ │ │ └── usbh_hid_mouse.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ │ │ └── usbh_hid_mouse.c │ │ │ │ └── MSC │ │ │ │ │ ├── inc │ │ │ │ │ ├── usbh_msc_bot.h │ │ │ │ │ ├── usbh_msc_core.h │ │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ │ └── src │ │ │ │ │ ├── usbh_msc_bot.c │ │ │ │ │ ├── usbh_msc_core.c │ │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ │ └── usbh_msc_scsi.c │ │ │ ├── Core │ │ │ │ ├── inc │ │ │ │ │ ├── usbh_conf_template.h │ │ │ │ │ ├── usbh_core.h │ │ │ │ │ ├── usbh_def.h │ │ │ │ │ ├── usbh_hcs.h │ │ │ │ │ ├── usbh_ioreq.h │ │ │ │ │ └── usbh_stdreq.h │ │ │ │ └── src │ │ │ │ │ ├── usbh_core.c │ │ │ │ │ ├── usbh_hcs.c │ │ │ │ │ ├── usbh_ioreq.c │ │ │ │ │ └── usbh_stdreq.c │ │ │ └── Release_Notes.html │ │ └── STM32_USB_OTG_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ ├── usb_bsp.h │ │ │ ├── usb_conf_template.h │ │ │ ├── usb_core.h │ │ │ ├── usb_dcd.h │ │ │ ├── usb_dcd_int.h │ │ │ ├── usb_defines.h │ │ │ ├── usb_hcd.h │ │ │ ├── usb_hcd_int.h │ │ │ ├── usb_otg.h │ │ │ └── usb_regs.h │ │ │ └── src │ │ │ ├── usb_bsp_template.c │ │ │ ├── usb_core.c │ │ │ ├── usb_dcd.c │ │ │ ├── usb_dcd_int.c │ │ │ ├── usb_hcd.c │ │ │ ├── usb_hcd_int.c │ │ │ └── usb_otg.c │ │ ├── MCD-ST Liberty SW License Agreement V2.pdf │ │ ├── Release_Notes.html │ │ └── _htmresc │ │ └── logo.bmp ├── bsp.cmake ├── freertos │ └── GCC │ │ └── ARM_CM4F │ │ ├── port.c │ │ └── portmacro.h ├── keypad.c ├── stm32f4_discovery │ ├── audio_if.c │ ├── bsp.c │ ├── bsp_config.h │ ├── diskio_sdio.c │ ├── disp_1100.c │ ├── disp_1100.h │ ├── fattime.c │ ├── fattime.h │ ├── stm324xg_eval_sdio_sd.c │ ├── stm324xg_eval_sdio_sd.h │ ├── stm32f4_discovery.c │ ├── stm32f4_discovery.h │ ├── stm32f4_discovery_audio_codec.c │ ├── stm32f4_discovery_audio_codec.h │ ├── stm32f4_discovery_lis302dl.c │ ├── stm32f4_discovery_lis302dl.h │ └── syscalls.c └── stm32f4xx │ ├── cmsis.cmake │ ├── cpu.cmake │ ├── inc │ ├── FreeRTOSConfig.h │ ├── cpu_config.h │ ├── stm32f4xx_conf.h │ ├── stm32f4xx_it.h │ ├── types.h │ ├── usb_conf.h │ ├── usbd_cdc_core.h │ ├── usbd_cdc_vcp.h │ ├── usbd_conf.h │ ├── usbd_desc.h │ ├── usbd_desc_msc.h │ ├── usbd_storage_msd.h │ ├── usbh_conf.h │ └── usbh_usr.h │ ├── src │ ├── cpu.c │ ├── stm32f4xx_it.c │ ├── syscalls.c │ ├── system_stm32f4xx.c │ ├── usbd_bsp.c │ ├── usbd_cdc_core.c │ ├── usbd_cdc_vcp.c │ ├── usbd_desc_cdc.c │ ├── usbd_desc_msc.c │ ├── usbd_storage_msd.c │ ├── usbd_usr.c │ ├── usbh_bsp.c │ └── usbh_usr.c │ ├── stdperiph.cmake │ ├── stm32_flash.ld.in │ ├── usblib.cmake │ ├── usblib_device.cmake │ └── usblib_host.cmake ├── cmake_patch_arm_none_eabi.diff ├── cmake_patch_linaro.diff ├── crlf_to_lf.sh ├── debug-simulator.gdb ├── debug.gdb.origin ├── debug_msc.gdb ├── flags.cmake ├── gnu_toolchain.cmake ├── include ├── assert.h ├── audio_buffer.h ├── audio_if.h ├── bsp.h ├── circ_buffer.h ├── common.h ├── cpu.h ├── custom_support.h ├── display.h ├── ffconf.h ├── keypad.h ├── metadata.h ├── navigator.h ├── nestedfilter.h ├── nuttx │ ├── compiler.h │ ├── config.h │ ├── mm.h │ └── streams.h ├── ogg │ ├── ogg.h │ └── os_types.h ├── player.h ├── powermanager.h ├── profile.h ├── semaphore.h ├── software_conf.h ├── system.h ├── trace.h └── ui.h ├── lib ├── CMakeLists.txt ├── fat_fs │ ├── 00readme.txt │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── integer.h │ └── option │ │ ├── ccsbcs.c │ │ └── syscall.c ├── freertos │ ├── croutine.c │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── list.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── task.h │ │ └── timers.h │ ├── license.txt │ ├── list.c │ ├── portable │ │ ├── MemMang │ │ │ ├── heap_1.c │ │ │ ├── heap_2.c │ │ │ ├── heap_3.c │ │ │ └── heap_4.c │ │ └── readme.txt │ ├── queue.c │ ├── readme.txt │ ├── tasks.c │ └── timers.c ├── minIni │ ├── LICENSE │ ├── NOTICE │ ├── minGlue-FatFs.h │ ├── minGlue-stdio.h │ ├── minGlue.h │ ├── minIni.c │ ├── minIni.h │ ├── minIni.pdf │ ├── test.c │ ├── test.ini │ └── testplain.ini ├── mm │ ├── mm_addfreechunk.c │ ├── mm_calloc.c │ ├── mm_free.c │ ├── mm_initialize.c │ ├── mm_mallinfo.c │ ├── mm_malloc.c │ ├── mm_memalign.c │ ├── mm_realloc.c │ ├── mm_sem.c │ ├── mm_shrinkchunk.c │ ├── mm_size2ndx.c │ ├── mm_user.c │ └── mm_zalloc.c ├── mp3-fixpt-helix │ ├── LICENSE.txt │ ├── RCSL.txt │ ├── RPSL.txt │ ├── mp3dec.c │ ├── mp3tabs.c │ ├── pub │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── mp3common.h │ │ ├── mp3dec.h │ │ ├── mpadecobjfixpt.h │ │ └── statname.h │ ├── readme.txt │ └── real │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── assembly.h │ │ ├── bitstream.c │ │ ├── buffers.c │ │ ├── coder.h │ │ ├── dct32.c │ │ ├── dequant.c │ │ ├── dqchan.c │ │ ├── huffman.c │ │ ├── hufftabs.c │ │ ├── imdct.c │ │ ├── polyphase.c │ │ ├── scalfact.c │ │ ├── stproc.c │ │ ├── subband.c │ │ └── trigtabs_fixpt.c ├── ogg │ └── framing.c └── opus │ ├── celt │ ├── _kiss_fft_guts.h │ ├── arch.h │ ├── bands.c │ ├── bands.h │ ├── celt.c │ ├── celt.h │ ├── celt_lpc.c │ ├── celt_lpc.h │ ├── cwrs.c │ ├── cwrs.h │ ├── ecintrin.h │ ├── entcode.c │ ├── entcode.h │ ├── entdec.c │ ├── entdec.h │ ├── entenc.c │ ├── entenc.h │ ├── fixed_arm5e.h │ ├── fixed_debug.h │ ├── fixed_generic.h │ ├── float_cast.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── laplace.c │ ├── laplace.h │ ├── mathops.c │ ├── mathops.h │ ├── mdct.c │ ├── mdct.h │ ├── mfrngcod.h │ ├── modes.c │ ├── modes.h │ ├── os_support.h │ ├── pitch.c │ ├── pitch.h │ ├── quant_bands.c │ ├── quant_bands.h │ ├── rate.c │ ├── rate.h │ ├── stack_alloc.h │ ├── static_modes_fixed.h │ ├── static_modes_float.h │ ├── tests │ │ ├── test_unit_cwrs32.c │ │ ├── test_unit_dft.c │ │ ├── test_unit_entropy.c │ │ ├── test_unit_laplace.c │ │ ├── test_unit_mathops.c │ │ ├── test_unit_mdct.c │ │ ├── test_unit_rotation.c │ │ └── test_unit_types.c │ ├── vq.c │ └── vq.h │ ├── config.h │ ├── include │ ├── opus.h │ ├── opus_custom.h │ ├── opus_defines.h │ ├── opus_header.h │ ├── opus_multistream.h │ └── opus_types.h │ ├── silk │ ├── A2NLSF.c │ ├── API.h │ ├── CNG.c │ ├── HP_variable_cutoff.c │ ├── Inlines.h │ ├── LPC_analysis_filter.c │ ├── LPC_inv_pred_gain.c │ ├── LP_variable_cutoff.c │ ├── MacroCount.h │ ├── MacroDebug.h │ ├── NLSF2A.c │ ├── NLSF_VQ.c │ ├── NLSF_VQ_weights_laroia.c │ ├── NLSF_decode.c │ ├── NLSF_del_dec_quant.c │ ├── NLSF_encode.c │ ├── NLSF_stabilize.c │ ├── NLSF_unpack.c │ ├── NSQ.c │ ├── NSQ_del_dec.c │ ├── PLC.c │ ├── PLC.h │ ├── SigProc_FIX.h │ ├── VAD.c │ ├── VQ_WMat_EC.c │ ├── ana_filt_bank_1.c │ ├── biquad_alt.c │ ├── bwexpander.c │ ├── bwexpander_32.c │ ├── check_control_input.c │ ├── code_signs.c │ ├── control.h │ ├── control_SNR.c │ ├── control_audio_bandwidth.c │ ├── control_codec.c │ ├── debug.c │ ├── debug.h │ ├── dec_API.c │ ├── decode_core.c │ ├── decode_frame.c │ ├── decode_indices.c │ ├── decode_parameters.c │ ├── decode_pitch.c │ ├── decode_pulses.c │ ├── decoder_set_fs.c │ ├── define.h │ ├── enc_API.c │ ├── encode_indices.c │ ├── encode_pulses.c │ ├── errors.h │ ├── fixed │ │ ├── LTP_analysis_filter_FIX.c │ │ ├── LTP_scale_ctrl_FIX.c │ │ ├── apply_sine_window_FIX.c │ │ ├── autocorr_FIX.c │ │ ├── burg_modified_FIX.c │ │ ├── corrMatrix_FIX.c │ │ ├── encode_frame_FIX.c │ │ ├── find_LPC_FIX.c │ │ ├── find_LTP_FIX.c │ │ ├── find_pitch_lags_FIX.c │ │ ├── find_pred_coefs_FIX.c │ │ ├── k2a_FIX.c │ │ ├── k2a_Q16_FIX.c │ │ ├── main_FIX.h │ │ ├── noise_shape_analysis_FIX.c │ │ ├── pitch_analysis_core_FIX.c │ │ ├── prefilter_FIX.c │ │ ├── process_gains_FIX.c │ │ ├── regularize_correlations_FIX.c │ │ ├── residual_energy16_FIX.c │ │ ├── residual_energy_FIX.c │ │ ├── schur64_FIX.c │ │ ├── schur_FIX.c │ │ ├── solve_LS_FIX.c │ │ ├── structs_FIX.h │ │ ├── vector_ops_FIX.c │ │ └── warped_autocorrelation_FIX.c │ ├── float │ │ ├── LPC_analysis_filter_FLP.c │ │ ├── LPC_inv_pred_gain_FLP.c │ │ ├── LTP_analysis_filter_FLP.c │ │ ├── LTP_scale_ctrl_FLP.c │ │ ├── SigProc_FLP.h │ │ ├── apply_sine_window_FLP.c │ │ ├── autocorrelation_FLP.c │ │ ├── burg_modified_FLP.c │ │ ├── bwexpander_FLP.c │ │ ├── corrMatrix_FLP.c │ │ ├── encode_frame_FLP.c │ │ ├── energy_FLP.c │ │ ├── find_LPC_FLP.c │ │ ├── find_LTP_FLP.c │ │ ├── find_pitch_lags_FLP.c │ │ ├── find_pred_coefs_FLP.c │ │ ├── inner_product_FLP.c │ │ ├── k2a_FLP.c │ │ ├── levinsondurbin_FLP.c │ │ ├── main_FLP.h │ │ ├── noise_shape_analysis_FLP.c │ │ ├── pitch_analysis_core_FLP.c │ │ ├── prefilter_FLP.c │ │ ├── process_gains_FLP.c │ │ ├── regularize_correlations_FLP.c │ │ ├── residual_energy_FLP.c │ │ ├── scale_copy_vector_FLP.c │ │ ├── scale_vector_FLP.c │ │ ├── schur_FLP.c │ │ ├── solve_LS_FLP.c │ │ ├── sort_FLP.c │ │ ├── structs_FLP.h │ │ ├── warped_autocorrelation_FLP.c │ │ └── wrappers_FLP.c │ ├── gain_quant.c │ ├── init_decoder.c │ ├── init_encoder.c │ ├── inner_prod_aligned.c │ ├── interpolate.c │ ├── lin2log.c │ ├── log2lin.c │ ├── macros.h │ ├── main.h │ ├── pitch_est_defines.h │ ├── pitch_est_tables.c │ ├── process_NLSFs.c │ ├── quant_LTP_gains.c │ ├── resampler.c │ ├── resampler_down2.c │ ├── resampler_down2_3.c │ ├── resampler_private.h │ ├── resampler_private_AR2.c │ ├── resampler_private_IIR_FIR.c │ ├── resampler_private_down_FIR.c │ ├── resampler_private_up2_HQ.c │ ├── resampler_rom.c │ ├── resampler_rom.h │ ├── resampler_structs.h │ ├── shell_coder.c │ ├── sigm_Q15.c │ ├── sort.c │ ├── stereo_LR_to_MS.c │ ├── stereo_MS_to_LR.c │ ├── stereo_decode_pred.c │ ├── stereo_encode_pred.c │ ├── stereo_find_predictor.c │ ├── stereo_quant_pred.c │ ├── structs.h │ ├── sum_sqr_shift.c │ ├── table_LSF_cos.c │ ├── tables.h │ ├── tables_LTP.c │ ├── tables_NLSF_CB_NB_MB.c │ ├── tables_NLSF_CB_WB.c │ ├── tables_gain.c │ ├── tables_other.c │ ├── tables_pitch_lag.c │ ├── tables_pulses_per_block.c │ ├── tuning_parameters.h │ └── typedef.h │ └── src │ ├── opus.c │ ├── opus_decoder.c │ ├── opus_header.c │ ├── opus_private.h │ └── repacketizer.c ├── main.c ├── mkindex.sh ├── openocd_stlinkv2.cfg ├── patch_cmake.sh ├── pcb ├── .gitignore ├── gerber-txt-info.sh ├── gerber │ ├── info │ │ ├── walkgeek_board_edge.txt │ │ ├── walkgeek_bottom.txt │ │ ├── walkgeek_bottom_components.pdf │ │ ├── walkgeek_bottom_copper.pdf │ │ ├── walkgeek_bottom_stop.pdf │ │ ├── walkgeek_bottommask.txt │ │ ├── walkgeek_drill.txt │ │ ├── walkgeek_top.txt │ │ ├── walkgeek_top_components.pdf │ │ ├── walkgeek_top_copper.pdf │ │ ├── walkgeek_top_stop.pdf │ │ ├── walkgeek_topmask.txt │ │ └── walkgeek_topsilk.txt │ ├── walkgeek_board_edge.gbr │ ├── walkgeek_bottom.gbr │ ├── walkgeek_bottommask.gbr │ ├── walkgeek_drill.xln │ ├── walkgeek_top.gbr │ ├── walkgeek_topmask.gbr │ └── walkgeek_topsilk.gbr ├── sfe-gerb274x.cam ├── walkgeek-eagle.lbr ├── walkgeek.brd └── walkgeek.sch ├── src ├── audio_buffer.c ├── navigator.c ├── nestedfilter.c ├── player │ ├── mediafile.c │ ├── mediafile.h │ ├── mp3_decoder.c │ ├── mp3_decoder.h │ ├── opus_decoder.c │ ├── opus_decoder.h │ ├── player.c │ ├── wav_decoder.c │ └── wav_decoder.h ├── powermanager.c ├── ui │ ├── display.c │ ├── player_ui.c │ ├── ui.c │ └── usb_ui.c └── usbd.c └── stm32f4x.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/README -------------------------------------------------------------------------------- /README_RU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/README_RU -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/TODO -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/TASKING/cstart_thumb2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/TASKING/cstart_thumb2.asm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/TrueSTUDIO/startup_stm32f4xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/TrueSTUDIO/startup_stm32f4xx.s -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f4xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f4xx.s -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc_ride7/startup_stm32f4xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc_ride7/startup_stm32f4xx.s -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f4xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f4xx.s -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS-SVD_Schema_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS-SVD_Schema_1_0.xsd -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_CM4_SIMD.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_CM4_SIMD.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_Core.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_Core.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_DebugSupport.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_DebugSupport.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_History.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_History.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_Logo_Final.jpg -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_System_View_Description.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Documentation/CMSIS_System_View_Description.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cm4_simd.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/README.txt -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/CMSIS/index.htm -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/misc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/misc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_tdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_tdes.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dac.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/inc/usbd_audio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/inc/usbd_audio_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/inc/usbd_audio_out_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/inc/usbd_audio_out_if.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/src/usbd_audio_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/src/usbd_audio_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/src/usbd_audio_out_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/audio/src/usbd_audio_out_if.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_if_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_if_template.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/src/usbd_cdc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/src/usbd_cdc_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/src/usbd_cdc_if_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/cdc/src/usbd_cdc_if_template.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_dfu_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_dfu_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_dfu_mal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_dfu_mal.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_flash_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_flash_if.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_mem_if_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_mem_if_template.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_otp_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/inc/usbd_otp_if.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_dfu_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_dfu_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_dfu_mal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_dfu_mal.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_flash_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_flash_if.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_mem_if_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_mem_if_template.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_otp_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/dfu/src/usbd_otp_if.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/hid/inc/usbd_hid_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/hid/inc/usbd_hid_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/hid/src/usbd_hid_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/hid/src/usbd_hid_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_bot.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_data.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_mem.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/inc/usbd_msc_scsi.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_bot.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_data.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_msc_scsi.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_storage_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Class/msc/src/usbd_storage_template.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_conf_template.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_def.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_ioreq.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_req.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_usr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/inc/usbd_usr.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_ioreq.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Core/src/usbd_req.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_Device_Library/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_keybd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_keybd.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/inc/usbh_hid_mouse.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_keybd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_keybd.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/HID/src/usbh_hid_mouse.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_bot.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/inc/usbh_msc_scsi.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_bot.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_fatfs.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Class/MSC/src/usbh_msc_scsi.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_conf_template.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_def.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_hcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_hcs.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_ioreq.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_stdreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/inc/usbh_stdreq.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_hcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_hcs.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_ioreq.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_stdreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Core/src/usbh_stdreq.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_HOST_Library/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_bsp.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_conf_template.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_core.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_dcd.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_dcd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_dcd_int.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_defines.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_hcd.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_hcd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_hcd_int.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_otg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_otg.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/inc/usb_regs.h -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_bsp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_bsp_template.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_core.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_dcd.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_dcd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_dcd_int.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_hcd.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_hcd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_hcd_int.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_otg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Libraries/STM32_USB_OTG_Driver/src/usb_otg.c -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/MCD-ST Liberty SW License Agreement V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/MCD-ST Liberty SW License Agreement V2.pdf -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/Release_Notes.html -------------------------------------------------------------------------------- /bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/_htmresc/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/3rd_party/STM32_USB-Host-Device_Lib_V2.1.0/_htmresc/logo.bmp -------------------------------------------------------------------------------- /bsp/bsp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/bsp.cmake -------------------------------------------------------------------------------- /bsp/freertos/GCC/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/freertos/GCC/ARM_CM4F/port.c -------------------------------------------------------------------------------- /bsp/freertos/GCC/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/freertos/GCC/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /bsp/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/keypad.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/audio_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/audio_if.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/bsp.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/bsp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/bsp_config.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/diskio_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/diskio_sdio.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/disp_1100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/disp_1100.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/disp_1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/disp_1100.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/fattime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/fattime.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/fattime.h: -------------------------------------------------------------------------------- 1 | #ifndef FATTIME_H_ 2 | 3 | #include "integer.h" 4 | 5 | DWORD get_fattime (void); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm324xg_eval_sdio_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm324xg_eval_sdio_sd.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm324xg_eval_sdio_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm324xg_eval_sdio_sd.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery_audio_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery_audio_codec.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery_audio_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery_audio_codec.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery_lis302dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery_lis302dl.c -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/stm32f4_discovery_lis302dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/stm32f4_discovery_lis302dl.h -------------------------------------------------------------------------------- /bsp/stm32f4_discovery/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4_discovery/syscalls.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/cmsis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/cmsis.cmake -------------------------------------------------------------------------------- /bsp/stm32f4xx/cpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/cpu.cmake -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/cpu_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/cpu_config.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/stm32f4xx_conf.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/types.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usb_conf.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_cdc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_cdc_core.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_cdc_vcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_cdc_vcp.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_conf.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_desc.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_desc_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_desc_msc.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbd_storage_msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbd_storage_msd.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbh_conf.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/inc/usbh_usr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/inc/usbh_usr.h -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/cpu.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/stm32f4xx_it.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/syscalls.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/system_stm32f4xx.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_bsp.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_cdc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_cdc_core.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_cdc_vcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_cdc_vcp.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_desc_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_desc_cdc.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_desc_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_desc_msc.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_storage_msd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_storage_msd.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbd_usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbd_usr.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbh_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbh_bsp.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/src/usbh_usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/src/usbh_usr.c -------------------------------------------------------------------------------- /bsp/stm32f4xx/stdperiph.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/stdperiph.cmake -------------------------------------------------------------------------------- /bsp/stm32f4xx/stm32_flash.ld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/stm32_flash.ld.in -------------------------------------------------------------------------------- /bsp/stm32f4xx/usblib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/usblib.cmake -------------------------------------------------------------------------------- /bsp/stm32f4xx/usblib_device.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/usblib_device.cmake -------------------------------------------------------------------------------- /bsp/stm32f4xx/usblib_host.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/bsp/stm32f4xx/usblib_host.cmake -------------------------------------------------------------------------------- /cmake_patch_arm_none_eabi.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/cmake_patch_arm_none_eabi.diff -------------------------------------------------------------------------------- /cmake_patch_linaro.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/cmake_patch_linaro.diff -------------------------------------------------------------------------------- /crlf_to_lf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/crlf_to_lf.sh -------------------------------------------------------------------------------- /debug-simulator.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/debug-simulator.gdb -------------------------------------------------------------------------------- /debug.gdb.origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/debug.gdb.origin -------------------------------------------------------------------------------- /debug_msc.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/debug_msc.gdb -------------------------------------------------------------------------------- /flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/flags.cmake -------------------------------------------------------------------------------- /gnu_toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/gnu_toolchain.cmake -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/audio_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/audio_buffer.h -------------------------------------------------------------------------------- /include/audio_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/audio_if.h -------------------------------------------------------------------------------- /include/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/bsp.h -------------------------------------------------------------------------------- /include/circ_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/circ_buffer.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/custom_support.h: -------------------------------------------------------------------------------- 1 | #include "bsp.h" 2 | -------------------------------------------------------------------------------- /include/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/display.h -------------------------------------------------------------------------------- /include/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/ffconf.h -------------------------------------------------------------------------------- /include/keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/keypad.h -------------------------------------------------------------------------------- /include/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/metadata.h -------------------------------------------------------------------------------- /include/navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/navigator.h -------------------------------------------------------------------------------- /include/nestedfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/nestedfilter.h -------------------------------------------------------------------------------- /include/nuttx/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/nuttx/compiler.h -------------------------------------------------------------------------------- /include/nuttx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/nuttx/config.h -------------------------------------------------------------------------------- /include/nuttx/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/nuttx/mm.h -------------------------------------------------------------------------------- /include/nuttx/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/nuttx/streams.h -------------------------------------------------------------------------------- /include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/ogg/ogg.h -------------------------------------------------------------------------------- /include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/ogg/os_types.h -------------------------------------------------------------------------------- /include/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/player.h -------------------------------------------------------------------------------- /include/powermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/powermanager.h -------------------------------------------------------------------------------- /include/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/profile.h -------------------------------------------------------------------------------- /include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/semaphore.h -------------------------------------------------------------------------------- /include/software_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/software_conf.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/system.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/include/ui.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fat_fs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/00readme.txt -------------------------------------------------------------------------------- /lib/fat_fs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/diskio.h -------------------------------------------------------------------------------- /lib/fat_fs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/ff.c -------------------------------------------------------------------------------- /lib/fat_fs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/ff.h -------------------------------------------------------------------------------- /lib/fat_fs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/integer.h -------------------------------------------------------------------------------- /lib/fat_fs/option/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/option/ccsbcs.c -------------------------------------------------------------------------------- /lib/fat_fs/option/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/fat_fs/option/syscall.c -------------------------------------------------------------------------------- /lib/freertos/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/croutine.c -------------------------------------------------------------------------------- /lib/freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /lib/freertos/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/StackMacros.h -------------------------------------------------------------------------------- /lib/freertos/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/croutine.h -------------------------------------------------------------------------------- /lib/freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/list.h -------------------------------------------------------------------------------- /lib/freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /lib/freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/portable.h -------------------------------------------------------------------------------- /lib/freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/projdefs.h -------------------------------------------------------------------------------- /lib/freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/queue.h -------------------------------------------------------------------------------- /lib/freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/semphr.h -------------------------------------------------------------------------------- /lib/freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/task.h -------------------------------------------------------------------------------- /lib/freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/include/timers.h -------------------------------------------------------------------------------- /lib/freertos/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/license.txt -------------------------------------------------------------------------------- /lib/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/list.c -------------------------------------------------------------------------------- /lib/freertos/portable/MemMang/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/portable/MemMang/heap_1.c -------------------------------------------------------------------------------- /lib/freertos/portable/MemMang/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/portable/MemMang/heap_2.c -------------------------------------------------------------------------------- /lib/freertos/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /lib/freertos/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /lib/freertos/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/portable/readme.txt -------------------------------------------------------------------------------- /lib/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/queue.c -------------------------------------------------------------------------------- /lib/freertos/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/readme.txt -------------------------------------------------------------------------------- /lib/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/tasks.c -------------------------------------------------------------------------------- /lib/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/freertos/timers.c -------------------------------------------------------------------------------- /lib/minIni/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/LICENSE -------------------------------------------------------------------------------- /lib/minIni/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/NOTICE -------------------------------------------------------------------------------- /lib/minIni/minGlue-FatFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minGlue-FatFs.h -------------------------------------------------------------------------------- /lib/minIni/minGlue-stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minGlue-stdio.h -------------------------------------------------------------------------------- /lib/minIni/minGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minGlue.h -------------------------------------------------------------------------------- /lib/minIni/minIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minIni.c -------------------------------------------------------------------------------- /lib/minIni/minIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minIni.h -------------------------------------------------------------------------------- /lib/minIni/minIni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/minIni.pdf -------------------------------------------------------------------------------- /lib/minIni/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/test.c -------------------------------------------------------------------------------- /lib/minIni/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/test.ini -------------------------------------------------------------------------------- /lib/minIni/testplain.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/minIni/testplain.ini -------------------------------------------------------------------------------- /lib/mm/mm_addfreechunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_addfreechunk.c -------------------------------------------------------------------------------- /lib/mm/mm_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_calloc.c -------------------------------------------------------------------------------- /lib/mm/mm_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_free.c -------------------------------------------------------------------------------- /lib/mm/mm_initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_initialize.c -------------------------------------------------------------------------------- /lib/mm/mm_mallinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_mallinfo.c -------------------------------------------------------------------------------- /lib/mm/mm_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_malloc.c -------------------------------------------------------------------------------- /lib/mm/mm_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_memalign.c -------------------------------------------------------------------------------- /lib/mm/mm_realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_realloc.c -------------------------------------------------------------------------------- /lib/mm/mm_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_sem.c -------------------------------------------------------------------------------- /lib/mm/mm_shrinkchunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_shrinkchunk.c -------------------------------------------------------------------------------- /lib/mm/mm_size2ndx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_size2ndx.c -------------------------------------------------------------------------------- /lib/mm/mm_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_user.c -------------------------------------------------------------------------------- /lib/mm/mm_zalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mm/mm_zalloc.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/LICENSE.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/RCSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/RPSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/mp3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/mp3dec.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/mp3tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/mp3tabs.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/LICENSE.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/RCSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/RPSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/mp3common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/mp3common.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/mp3dec.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/mpadecobjfixpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/mpadecobjfixpt.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/pub/statname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/pub/statname.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/readme.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/LICENSE.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/RCSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/RPSL.txt -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/assembly.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/bitstream.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/buffers.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/coder.h -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/dct32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/dct32.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/dequant.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/dqchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/dqchan.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/huffman.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/hufftabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/hufftabs.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/imdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/imdct.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/polyphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/polyphase.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/scalfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/scalfact.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/stproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/stproc.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/subband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/subband.c -------------------------------------------------------------------------------- /lib/mp3-fixpt-helix/real/trigtabs_fixpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/mp3-fixpt-helix/real/trigtabs_fixpt.c -------------------------------------------------------------------------------- /lib/ogg/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/ogg/framing.c -------------------------------------------------------------------------------- /lib/opus/celt/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/_kiss_fft_guts.h -------------------------------------------------------------------------------- /lib/opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/arch.h -------------------------------------------------------------------------------- /lib/opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/bands.c -------------------------------------------------------------------------------- /lib/opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/bands.h -------------------------------------------------------------------------------- /lib/opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/celt.c -------------------------------------------------------------------------------- /lib/opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/celt.h -------------------------------------------------------------------------------- /lib/opus/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/celt_lpc.c -------------------------------------------------------------------------------- /lib/opus/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/celt_lpc.h -------------------------------------------------------------------------------- /lib/opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/cwrs.c -------------------------------------------------------------------------------- /lib/opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/cwrs.h -------------------------------------------------------------------------------- /lib/opus/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/ecintrin.h -------------------------------------------------------------------------------- /lib/opus/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entcode.c -------------------------------------------------------------------------------- /lib/opus/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entcode.h -------------------------------------------------------------------------------- /lib/opus/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entdec.c -------------------------------------------------------------------------------- /lib/opus/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entdec.h -------------------------------------------------------------------------------- /lib/opus/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entenc.c -------------------------------------------------------------------------------- /lib/opus/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/entenc.h -------------------------------------------------------------------------------- /lib/opus/celt/fixed_arm5e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/fixed_arm5e.h -------------------------------------------------------------------------------- /lib/opus/celt/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/fixed_debug.h -------------------------------------------------------------------------------- /lib/opus/celt/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/fixed_generic.h -------------------------------------------------------------------------------- /lib/opus/celt/float_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/float_cast.h -------------------------------------------------------------------------------- /lib/opus/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/kiss_fft.c -------------------------------------------------------------------------------- /lib/opus/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/kiss_fft.h -------------------------------------------------------------------------------- /lib/opus/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/laplace.c -------------------------------------------------------------------------------- /lib/opus/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/laplace.h -------------------------------------------------------------------------------- /lib/opus/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/mathops.c -------------------------------------------------------------------------------- /lib/opus/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/mathops.h -------------------------------------------------------------------------------- /lib/opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/mdct.c -------------------------------------------------------------------------------- /lib/opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/mdct.h -------------------------------------------------------------------------------- /lib/opus/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/mfrngcod.h -------------------------------------------------------------------------------- /lib/opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/modes.c -------------------------------------------------------------------------------- /lib/opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/modes.h -------------------------------------------------------------------------------- /lib/opus/celt/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/os_support.h -------------------------------------------------------------------------------- /lib/opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/pitch.c -------------------------------------------------------------------------------- /lib/opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/pitch.h -------------------------------------------------------------------------------- /lib/opus/celt/quant_bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/quant_bands.c -------------------------------------------------------------------------------- /lib/opus/celt/quant_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/quant_bands.h -------------------------------------------------------------------------------- /lib/opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/rate.c -------------------------------------------------------------------------------- /lib/opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/rate.h -------------------------------------------------------------------------------- /lib/opus/celt/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/stack_alloc.h -------------------------------------------------------------------------------- /lib/opus/celt/static_modes_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/static_modes_fixed.h -------------------------------------------------------------------------------- /lib/opus/celt/static_modes_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/static_modes_float.h -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_cwrs32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_cwrs32.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_dft.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_entropy.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_laplace.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_mathops.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_mdct.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_rotation.c -------------------------------------------------------------------------------- /lib/opus/celt/tests/test_unit_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/tests/test_unit_types.c -------------------------------------------------------------------------------- /lib/opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/vq.c -------------------------------------------------------------------------------- /lib/opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/celt/vq.h -------------------------------------------------------------------------------- /lib/opus/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/config.h -------------------------------------------------------------------------------- /lib/opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus.h -------------------------------------------------------------------------------- /lib/opus/include/opus_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus_custom.h -------------------------------------------------------------------------------- /lib/opus/include/opus_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus_defines.h -------------------------------------------------------------------------------- /lib/opus/include/opus_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus_header.h -------------------------------------------------------------------------------- /lib/opus/include/opus_multistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus_multistream.h -------------------------------------------------------------------------------- /lib/opus/include/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/include/opus_types.h -------------------------------------------------------------------------------- /lib/opus/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/A2NLSF.c -------------------------------------------------------------------------------- /lib/opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/API.h -------------------------------------------------------------------------------- /lib/opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/CNG.c -------------------------------------------------------------------------------- /lib/opus/silk/HP_variable_cutoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/HP_variable_cutoff.c -------------------------------------------------------------------------------- /lib/opus/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/Inlines.h -------------------------------------------------------------------------------- /lib/opus/silk/LPC_analysis_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/LPC_analysis_filter.c -------------------------------------------------------------------------------- /lib/opus/silk/LPC_inv_pred_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/LPC_inv_pred_gain.c -------------------------------------------------------------------------------- /lib/opus/silk/LP_variable_cutoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/LP_variable_cutoff.c -------------------------------------------------------------------------------- /lib/opus/silk/MacroCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/MacroCount.h -------------------------------------------------------------------------------- /lib/opus/silk/MacroDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/MacroDebug.h -------------------------------------------------------------------------------- /lib/opus/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF2A.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_VQ_weights_laroia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_VQ_weights_laroia.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_decode.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_del_dec_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_del_dec_quant.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_encode.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_stabilize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_stabilize.c -------------------------------------------------------------------------------- /lib/opus/silk/NLSF_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NLSF_unpack.c -------------------------------------------------------------------------------- /lib/opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NSQ.c -------------------------------------------------------------------------------- /lib/opus/silk/NSQ_del_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/NSQ_del_dec.c -------------------------------------------------------------------------------- /lib/opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/PLC.c -------------------------------------------------------------------------------- /lib/opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/PLC.h -------------------------------------------------------------------------------- /lib/opus/silk/SigProc_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/SigProc_FIX.h -------------------------------------------------------------------------------- /lib/opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/VAD.c -------------------------------------------------------------------------------- /lib/opus/silk/VQ_WMat_EC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/VQ_WMat_EC.c -------------------------------------------------------------------------------- /lib/opus/silk/ana_filt_bank_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/ana_filt_bank_1.c -------------------------------------------------------------------------------- /lib/opus/silk/biquad_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/biquad_alt.c -------------------------------------------------------------------------------- /lib/opus/silk/bwexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/bwexpander.c -------------------------------------------------------------------------------- /lib/opus/silk/bwexpander_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/bwexpander_32.c -------------------------------------------------------------------------------- /lib/opus/silk/check_control_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/check_control_input.c -------------------------------------------------------------------------------- /lib/opus/silk/code_signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/code_signs.c -------------------------------------------------------------------------------- /lib/opus/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/control.h -------------------------------------------------------------------------------- /lib/opus/silk/control_SNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/control_SNR.c -------------------------------------------------------------------------------- /lib/opus/silk/control_audio_bandwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/control_audio_bandwidth.c -------------------------------------------------------------------------------- /lib/opus/silk/control_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/control_codec.c -------------------------------------------------------------------------------- /lib/opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/debug.c -------------------------------------------------------------------------------- /lib/opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/debug.h -------------------------------------------------------------------------------- /lib/opus/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/dec_API.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_core.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_frame.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_indices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_indices.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_parameters.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_pitch.c -------------------------------------------------------------------------------- /lib/opus/silk/decode_pulses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decode_pulses.c -------------------------------------------------------------------------------- /lib/opus/silk/decoder_set_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/decoder_set_fs.c -------------------------------------------------------------------------------- /lib/opus/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/define.h -------------------------------------------------------------------------------- /lib/opus/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/enc_API.c -------------------------------------------------------------------------------- /lib/opus/silk/encode_indices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/encode_indices.c -------------------------------------------------------------------------------- /lib/opus/silk/encode_pulses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/encode_pulses.c -------------------------------------------------------------------------------- /lib/opus/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/errors.h -------------------------------------------------------------------------------- /lib/opus/silk/fixed/LTP_analysis_filter_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/LTP_analysis_filter_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/LTP_scale_ctrl_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/LTP_scale_ctrl_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/apply_sine_window_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/apply_sine_window_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/autocorr_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/autocorr_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/burg_modified_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/burg_modified_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/corrMatrix_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/corrMatrix_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/encode_frame_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/encode_frame_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/find_LPC_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/find_LPC_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/find_LTP_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/find_LTP_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/find_pitch_lags_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/find_pitch_lags_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/find_pred_coefs_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/find_pred_coefs_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/k2a_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/k2a_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/k2a_Q16_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/k2a_Q16_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/main_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/main_FIX.h -------------------------------------------------------------------------------- /lib/opus/silk/fixed/noise_shape_analysis_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/noise_shape_analysis_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/pitch_analysis_core_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/pitch_analysis_core_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/prefilter_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/prefilter_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/process_gains_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/process_gains_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/regularize_correlations_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/regularize_correlations_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/residual_energy16_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/residual_energy16_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/residual_energy_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/residual_energy_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/schur64_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/schur64_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/schur_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/schur_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/solve_LS_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/solve_LS_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/structs_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/structs_FIX.h -------------------------------------------------------------------------------- /lib/opus/silk/fixed/vector_ops_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/vector_ops_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/fixed/warped_autocorrelation_FIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/fixed/warped_autocorrelation_FIX.c -------------------------------------------------------------------------------- /lib/opus/silk/float/LPC_analysis_filter_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/LPC_analysis_filter_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/LPC_inv_pred_gain_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/LPC_inv_pred_gain_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/LTP_analysis_filter_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/LTP_analysis_filter_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/LTP_scale_ctrl_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/LTP_scale_ctrl_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/SigProc_FLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/SigProc_FLP.h -------------------------------------------------------------------------------- /lib/opus/silk/float/apply_sine_window_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/apply_sine_window_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/autocorrelation_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/autocorrelation_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/burg_modified_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/burg_modified_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/bwexpander_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/bwexpander_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/corrMatrix_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/corrMatrix_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/encode_frame_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/encode_frame_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/energy_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/energy_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/find_LPC_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/find_LPC_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/find_LTP_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/find_LTP_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/find_pitch_lags_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/find_pitch_lags_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/find_pred_coefs_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/find_pred_coefs_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/inner_product_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/inner_product_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/k2a_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/k2a_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/levinsondurbin_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/levinsondurbin_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/main_FLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/main_FLP.h -------------------------------------------------------------------------------- /lib/opus/silk/float/noise_shape_analysis_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/noise_shape_analysis_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/pitch_analysis_core_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/pitch_analysis_core_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/prefilter_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/prefilter_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/process_gains_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/process_gains_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/regularize_correlations_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/regularize_correlations_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/residual_energy_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/residual_energy_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/scale_copy_vector_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/scale_copy_vector_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/scale_vector_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/scale_vector_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/schur_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/schur_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/solve_LS_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/solve_LS_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/sort_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/sort_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/structs_FLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/structs_FLP.h -------------------------------------------------------------------------------- /lib/opus/silk/float/warped_autocorrelation_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/warped_autocorrelation_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/float/wrappers_FLP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/float/wrappers_FLP.c -------------------------------------------------------------------------------- /lib/opus/silk/gain_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/gain_quant.c -------------------------------------------------------------------------------- /lib/opus/silk/init_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/init_decoder.c -------------------------------------------------------------------------------- /lib/opus/silk/init_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/init_encoder.c -------------------------------------------------------------------------------- /lib/opus/silk/inner_prod_aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/inner_prod_aligned.c -------------------------------------------------------------------------------- /lib/opus/silk/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/interpolate.c -------------------------------------------------------------------------------- /lib/opus/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/lin2log.c -------------------------------------------------------------------------------- /lib/opus/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/log2lin.c -------------------------------------------------------------------------------- /lib/opus/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/macros.h -------------------------------------------------------------------------------- /lib/opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/main.h -------------------------------------------------------------------------------- /lib/opus/silk/pitch_est_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/pitch_est_defines.h -------------------------------------------------------------------------------- /lib/opus/silk/pitch_est_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/pitch_est_tables.c -------------------------------------------------------------------------------- /lib/opus/silk/process_NLSFs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/process_NLSFs.c -------------------------------------------------------------------------------- /lib/opus/silk/quant_LTP_gains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/quant_LTP_gains.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_down2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_down2.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_down2_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_down2_3.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_private.h -------------------------------------------------------------------------------- /lib/opus/silk/resampler_private_AR2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_private_AR2.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_private_IIR_FIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_private_IIR_FIR.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_private_down_FIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_private_down_FIR.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_private_up2_HQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_private_up2_HQ.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_rom.c -------------------------------------------------------------------------------- /lib/opus/silk/resampler_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_rom.h -------------------------------------------------------------------------------- /lib/opus/silk/resampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/resampler_structs.h -------------------------------------------------------------------------------- /lib/opus/silk/shell_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/shell_coder.c -------------------------------------------------------------------------------- /lib/opus/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/sigm_Q15.c -------------------------------------------------------------------------------- /lib/opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/sort.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_LR_to_MS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_LR_to_MS.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_MS_to_LR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_MS_to_LR.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_decode_pred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_decode_pred.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_encode_pred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_encode_pred.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_find_predictor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_find_predictor.c -------------------------------------------------------------------------------- /lib/opus/silk/stereo_quant_pred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/stereo_quant_pred.c -------------------------------------------------------------------------------- /lib/opus/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/structs.h -------------------------------------------------------------------------------- /lib/opus/silk/sum_sqr_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/sum_sqr_shift.c -------------------------------------------------------------------------------- /lib/opus/silk/table_LSF_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/table_LSF_cos.c -------------------------------------------------------------------------------- /lib/opus/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables.h -------------------------------------------------------------------------------- /lib/opus/silk/tables_LTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_LTP.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_NLSF_CB_NB_MB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_NLSF_CB_NB_MB.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_NLSF_CB_WB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_NLSF_CB_WB.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_gain.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_other.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_pitch_lag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_pitch_lag.c -------------------------------------------------------------------------------- /lib/opus/silk/tables_pulses_per_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tables_pulses_per_block.c -------------------------------------------------------------------------------- /lib/opus/silk/tuning_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/tuning_parameters.h -------------------------------------------------------------------------------- /lib/opus/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/silk/typedef.h -------------------------------------------------------------------------------- /lib/opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/src/opus.c -------------------------------------------------------------------------------- /lib/opus/src/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/src/opus_decoder.c -------------------------------------------------------------------------------- /lib/opus/src/opus_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/src/opus_header.c -------------------------------------------------------------------------------- /lib/opus/src/opus_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/src/opus_private.h -------------------------------------------------------------------------------- /lib/opus/src/repacketizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/lib/opus/src/repacketizer.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/main.c -------------------------------------------------------------------------------- /mkindex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/mkindex.sh -------------------------------------------------------------------------------- /openocd_stlinkv2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/openocd_stlinkv2.cfg -------------------------------------------------------------------------------- /patch_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/patch_cmake.sh -------------------------------------------------------------------------------- /pcb/.gitignore: -------------------------------------------------------------------------------- 1 | *.[bsl]#[1-9] 2 | eagle.epf 3 | -------------------------------------------------------------------------------- /pcb/gerber-txt-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber-txt-info.sh -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_board_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_board_edge.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_bottom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_bottom.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_bottom_components.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_bottom_components.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_bottom_copper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_bottom_copper.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_bottom_stop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_bottom_stop.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_bottommask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_bottommask.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_drill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_drill.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_top.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_top_components.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_top_components.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_top_copper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_top_copper.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_top_stop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_top_stop.pdf -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_topmask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_topmask.txt -------------------------------------------------------------------------------- /pcb/gerber/info/walkgeek_topsilk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/info/walkgeek_topsilk.txt -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_board_edge.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_board_edge.gbr -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_bottom.gbr -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_bottommask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_bottommask.gbr -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_drill.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_drill.xln -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_top.gbr -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_topmask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_topmask.gbr -------------------------------------------------------------------------------- /pcb/gerber/walkgeek_topsilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/gerber/walkgeek_topsilk.gbr -------------------------------------------------------------------------------- /pcb/sfe-gerb274x.cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/sfe-gerb274x.cam -------------------------------------------------------------------------------- /pcb/walkgeek-eagle.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/walkgeek-eagle.lbr -------------------------------------------------------------------------------- /pcb/walkgeek.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/walkgeek.brd -------------------------------------------------------------------------------- /pcb/walkgeek.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/pcb/walkgeek.sch -------------------------------------------------------------------------------- /src/audio_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/audio_buffer.c -------------------------------------------------------------------------------- /src/navigator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/navigator.c -------------------------------------------------------------------------------- /src/nestedfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/nestedfilter.c -------------------------------------------------------------------------------- /src/player/mediafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/mediafile.c -------------------------------------------------------------------------------- /src/player/mediafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/mediafile.h -------------------------------------------------------------------------------- /src/player/mp3_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/mp3_decoder.c -------------------------------------------------------------------------------- /src/player/mp3_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/mp3_decoder.h -------------------------------------------------------------------------------- /src/player/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/opus_decoder.c -------------------------------------------------------------------------------- /src/player/opus_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/opus_decoder.h -------------------------------------------------------------------------------- /src/player/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/player.c -------------------------------------------------------------------------------- /src/player/wav_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/wav_decoder.c -------------------------------------------------------------------------------- /src/player/wav_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/player/wav_decoder.h -------------------------------------------------------------------------------- /src/powermanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/powermanager.c -------------------------------------------------------------------------------- /src/ui/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/ui/display.c -------------------------------------------------------------------------------- /src/ui/player_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/ui/player_ui.c -------------------------------------------------------------------------------- /src/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/ui/ui.c -------------------------------------------------------------------------------- /src/ui/usb_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/ui/usb_ui.c -------------------------------------------------------------------------------- /src/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/src/usbd.c -------------------------------------------------------------------------------- /stm32f4x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-it-com/walkgeek/HEAD/stm32f4x.cfg --------------------------------------------------------------------------------