├── .build ├── .version ├── README.md ├── common ├── arm │ ├── arm_timer.c │ ├── arm_timer.h │ ├── irq.c │ ├── irq.h │ ├── mmu.c │ └── mmu.h ├── aw │ ├── ccu.c │ ├── ccu.h │ ├── de.c │ ├── de.h │ ├── de_priv.h │ ├── dmac.c │ ├── dmac.h │ ├── gpio.c │ ├── gpio.h │ ├── smhc.c │ ├── smhc.h │ ├── tcon_lcd.c │ ├── tcon_lcd.h │ ├── timer.c │ ├── timer.h │ ├── twi.c │ ├── twi.h │ ├── uart.c │ └── uart.h ├── fifo.c ├── fifo.h ├── gr.c ├── gr.h ├── memmgr.c ├── memmgr.h ├── random.c └── random.h ├── doc ├── DDI0406B_arm_architecture_reference_manual.pdf ├── DDI0462F_cortex_a7_neon_mpe_r0p5_trm.pdf ├── DDI0464F_cortex_a7_mpcore_r0p5_trm.pdf └── IHI0048B_b_gic_architecture_specification.pdf ├── fw_lite ├── .gdbinit ├── AW_T113S2.ld ├── FreeRTOSConfig.h ├── Makefile ├── asm │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.S │ └── memset.S ├── chip.h ├── diskio.c ├── event.h ├── ffconf.h ├── hid_app.c ├── led.c ├── led.h ├── main.c ├── openocd.cfg ├── platform.h ├── sdfs.c ├── sdfs.h ├── start.S ├── start.sh ├── syscalls.c ├── syscalls.h ├── tusb_config.h ├── usb_task.c └── usb_task.h ├── fw_main ├── .gdbinit ├── AW_T113S2.ld ├── FreeRTOSConfig.h ├── Makefile ├── arm_timer.c ├── arm_timer.h ├── asm │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.S │ └── memset.S ├── assets │ ├── bin2c │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin2c.c │ │ └── test │ │ │ ├── test.bin │ │ │ └── test.c │ ├── fat16.bin.lzg │ └── liblzg │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── liblzg-logo.png │ │ └── liblzg-logo.svg │ │ └── src │ │ ├── Makefile │ │ ├── extra │ │ ├── README.txt │ │ ├── lzgmini.c │ │ ├── lzgmini.js │ │ ├── lzgmini.lua │ │ ├── lzgmini.pas │ │ ├── lzgmini_6502.s │ │ ├── lzgmini_68k.h │ │ └── lzgmini_68k.s │ │ ├── include │ │ └── lzg.h │ │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── TODO.txt │ │ ├── checksum.c │ │ ├── decode.c │ │ ├── encode.c │ │ ├── internal.h │ │ ├── liblzg.so │ │ └── version.c │ │ └── tools │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── benchmark.c │ │ ├── lzg.c │ │ └── unlzg.c ├── ccu.c ├── ccu.h ├── chip.h ├── chocdoom │ ├── am_map.c │ ├── am_map.h │ ├── config.h │ ├── d_englsh.h │ ├── d_event.c │ ├── d_event.h │ ├── d_items.c │ ├── d_items.h │ ├── d_iwad.c │ ├── d_iwad.h │ ├── d_loop.c │ ├── d_loop.h │ ├── d_main.c │ ├── d_main.h │ ├── d_mode.c │ ├── d_mode.h │ ├── d_net.c │ ├── d_player.h │ ├── d_textur.h │ ├── d_think.h │ ├── d_ticcmd.h │ ├── deh_main.h │ ├── deh_misc.h │ ├── deh_str.h │ ├── doom.h │ ├── doomdata.h │ ├── doomdef.c │ ├── doomdef.h │ ├── doomfeatures.h │ ├── doomkeys.h │ ├── doomstat.c │ ├── doomstat.h │ ├── doomtype.h │ ├── dstrings.c │ ├── dstrings.h │ ├── dummy.c │ ├── f_finale.c │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── g_game.c │ ├── g_game.h │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── i_cdmus.c │ ├── i_cdmus.h │ ├── i_endoom.c │ ├── i_endoom.h │ ├── i_joystick.c │ ├── i_joystick.h │ ├── i_main.c │ ├── i_scale.c │ ├── i_scale.h │ ├── i_sound.c │ ├── i_sound.h │ ├── i_swap.h │ ├── i_system.c │ ├── i_system.h │ ├── i_timer.c │ ├── i_timer.h │ ├── i_video.c │ ├── i_video.h │ ├── i_videohr.c │ ├── i_videohr.h │ ├── info.c │ ├── info.h │ ├── m_argv.c │ ├── m_argv.h │ ├── m_bbox.c │ ├── m_bbox.h │ ├── m_cheat.c │ ├── m_cheat.h │ ├── m_config.c │ ├── m_config.h │ ├── m_controls.c │ ├── m_controls.h │ ├── m_fixed.c │ ├── m_fixed.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_misc.c │ ├── m_misc.h │ ├── m_random.c │ ├── m_random.h │ ├── memio.c │ ├── memio.h │ ├── net_client.h │ ├── net_dedicated.h │ ├── net_defs.h │ ├── net_gui.h │ ├── net_io.h │ ├── net_loop.h │ ├── net_query.h │ ├── net_sdl.h │ ├── net_server.h │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_inter.h │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_mobj.h │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_pspr.h │ ├── p_saveg.c │ ├── p_saveg.h │ ├── p_setup.c │ ├── p_setup.h │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_tick.h │ ├── p_user.c │ ├── r_bsp.c │ ├── r_bsp.h │ ├── r_data.c │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.c │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.c │ ├── r_main.h │ ├── r_plane.c │ ├── r_plane.h │ ├── r_segs.c │ ├── r_segs.h │ ├── r_sky.c │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.c │ ├── r_things.h │ ├── s_sound.c │ ├── s_sound.h │ ├── sha1.c │ ├── sha1.h │ ├── sounds.c │ ├── sounds.h │ ├── st_lib.c │ ├── st_lib.h │ ├── st_stuff.c │ ├── st_stuff.h │ ├── statdump.c │ ├── statdump.h │ ├── tables.c │ ├── tables.h │ ├── v_patch.h │ ├── v_video.c │ ├── v_video.h │ ├── w_checksum.c │ ├── w_checksum.h │ ├── w_file.c │ ├── w_file.h │ ├── w_file_stdc.c │ ├── w_main.c │ ├── w_main.h │ ├── w_merge.h │ ├── w_wad.c │ ├── w_wad.h │ ├── wi_stuff.c │ ├── wi_stuff.h │ ├── z_zone.c │ └── z_zone.h ├── de.c ├── de.h ├── de_priv.h ├── de_scaler_table.c ├── de_scaler_table.h ├── diskimg.c ├── diskio.c ├── dmac.c ├── dmac.h ├── doom_task.c ├── doom_task.h ├── event.h ├── ffconf.h ├── fifo.c ├── fifo.h ├── gpio.c ├── gpio.h ├── gr.c ├── gr.h ├── hid_app.c ├── irq.c ├── irq.h ├── led.c ├── led.h ├── lzg.h ├── lzgmini.c ├── main.c ├── memmgr.c ├── memmgr.h ├── mmu.c ├── mmu.h ├── openocd.cfg ├── platform.h ├── random.c ├── random.h ├── start.S ├── start.sh ├── syscalls.c ├── syscalls.h ├── tcon_lcd-lvds.c ├── tcon_lcd-rgb.c ├── tcon_lcd.h ├── timer.c ├── timer.h ├── tusb_config.h ├── twi.c ├── twi.h ├── uart.c ├── uart.h ├── usb_task.c └── usb_task.h └── lib ├── CMSIS_5 └── CMSIS │ ├── Core │ ├── Include │ │ ├── cachel1_armv7.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_armclang_ltm.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv81mml.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm35p.h │ │ ├── core_cm4.h │ │ ├── core_cm55.h │ │ ├── core_cm7.h │ │ ├── core_cm85.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── core_starmc1.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ ├── pac_armv81.h │ │ ├── pmu_armv8.h │ │ └── tz_context.h │ └── Template │ │ └── ARMv8-M │ │ ├── main_s.c │ │ └── tz_context.c │ └── Core_A │ ├── Include │ ├── cmsis_armcc.h │ ├── cmsis_armclang.h │ ├── cmsis_compiler.h │ ├── cmsis_cp15.h │ ├── cmsis_gcc.h │ ├── cmsis_iccarm.h │ ├── core_ca.h │ └── irq_ctrl.h │ └── Source │ └── irq_ctrl_gic.c ├── FreeRTOS-Kernel-main ├── .github │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.md │ │ ├── config.yml │ │ ├── documentation-issue.md │ │ └── feature_request.md │ ├── SECURITY.md │ ├── actions │ │ └── url_verifier.sh │ ├── lexicon.txt │ ├── pull_request_template.md │ ├── scripts │ │ ├── find_replace.sh │ │ └── kernel_checker.py │ ├── uncrustify.cfg │ └── workflows │ │ ├── auto-release.yml │ │ ├── ci.yml │ │ ├── git-secrets.yml │ │ ├── kernel-checks.yml │ │ └── unit-tests.yml ├── .gitmodules ├── CMakeLists.txt ├── GitHub-FreeRTOS-Kernel-Home.url ├── History.txt ├── LICENSE.md ├── Quick_Start_Guide.url ├── README.md ├── croutine.c ├── event_groups.c ├── include │ ├── FreeRTOS.h │ ├── StackMacros.h │ ├── atomic.h │ ├── croutine.h │ ├── deprecated_definitions.h │ ├── event_groups.h │ ├── list.h │ ├── message_buffer.h │ ├── mpu_prototypes.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── stack_macros.h │ ├── stdint.readme │ ├── stream_buffer.h │ ├── task.h │ └── timers.h ├── list.c ├── manifest.yml ├── portable │ ├── GCC │ │ └── ARM_CA9 │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ └── MemMang │ │ ├── ReadMe.url │ │ ├── heap_1.c │ │ ├── heap_2.c │ │ ├── heap_3.c │ │ ├── heap_4.c │ │ └── heap_5.c ├── queue.c ├── stream_buffer.c ├── tasks.c └── timers.c ├── aw └── aw_t113s2.h ├── ff ├── diskio.h ├── ff.c ├── ff.h ├── ffsystem.c └── ffunicode.c ├── tinyprintf ├── LICENSE.BSD-new ├── LICENSE.LGPL-2.1 ├── Makefile ├── README ├── tinyprintf.c └── tinyprintf.h ├── tinyusb-ohci ├── .gitattributes ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows │ │ ├── build_aarch64.yml │ │ ├── build_arm.yml │ │ ├── build_esp.yml │ │ ├── build_msp430.yml │ │ ├── build_renesas.yml │ │ ├── build_riscv.yml │ │ └── trigger.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── README.rst ├── docs │ ├── assets │ │ ├── logo.svg │ │ └── stack.svg │ ├── conf.py │ ├── contributing │ │ ├── code_of_conduct.rst │ │ ├── index.rst │ │ ├── porting.rst │ │ └── structure.rst │ ├── index.rst │ ├── info │ │ ├── changelog.rst │ │ ├── contributors.rst │ │ ├── index.rst │ │ └── uses.rst │ ├── reference │ │ ├── concurrency.rst │ │ ├── getting_started.rst │ │ ├── index.rst │ │ └── supported.rst │ └── requirements.txt ├── examples │ ├── device │ │ ├── 99-tinyusb.rules │ │ ├── CMakeLists.txt │ │ ├── audio_4_channel_mic │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── plot_audio_samples.py │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── audio_test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── plot_audio_samples.py │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── board_test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── sdkconfig.defaults │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.c │ │ │ │ └── tusb_config.h │ │ ├── cdc_dual_ports │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── cdc_msc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── msc_disk.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── cdc_msc_freertos │ │ │ ├── .skip.MCU_F1C100S │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── sdkconfig.defaults │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FreeRTOSConfig │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── freertos_hook.c │ │ │ │ ├── main.c │ │ │ │ ├── msc_disk.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── dfu_runtime │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── dynamic_configuration │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── msc_disk.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── hid_boot_interface │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── hid_composite │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── hid_composite_freertos │ │ │ ├── .skip.MCU_F1C100S │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── sdkconfig.defaults │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FreeRTOSConfig │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── freertos_hook.c │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── hid_generic_inout │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── boards.js │ │ │ ├── hid_test.js │ │ │ ├── hid_test.py │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── hid_multiple_interface │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── midi_test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── msc_dual_lun │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── msc_disk_dual.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── net_lwip_webserver │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── arch │ │ │ │ └── cc.h │ │ │ │ ├── lwipopts.h │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── uac2_headset │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── usbtmc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── main.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ ├── usbtmc_app.c │ │ │ │ └── usbtmc_app.h │ │ │ └── visaQuery.py │ │ ├── video_capture │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── skip.txt │ │ │ └── src │ │ │ │ ├── images.h │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ └── webusb_serial │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ └── usb_descriptors.h │ ├── dual │ │ ├── CMakeLists.txt │ │ └── host_hid_to_device_cdc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── only.txt │ │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── host │ │ ├── CMakeLists.txt │ │ ├── bare_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── only.txt │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── tusb_config.h │ │ ├── cdc_msc_hid │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── only.txt │ │ │ └── src │ │ │ │ ├── hid_app.c │ │ │ │ ├── main.c │ │ │ │ ├── msc_app.c │ │ │ │ └── tusb_config.h │ │ └── hid_controller │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── only.txt │ │ │ └── src │ │ │ ├── hid_app.c │ │ │ ├── main.c │ │ │ └── tusb_config.h │ ├── make.mk │ └── rules.mk ├── hw │ ├── bsp │ │ ├── ansi_escape.h │ │ ├── board.c │ │ ├── board.h │ │ ├── board_mcu.h │ │ ├── broadcom_32bit │ │ │ ├── boards │ │ │ │ └── raspberrypi_zero_w │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── broadcom_64bit │ │ │ ├── boards │ │ │ │ ├── raspberrypi_cm4 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── raspberrypi_zero2w │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── brtmm90x │ │ │ ├── boards │ │ │ │ └── mm900evxb │ │ │ │ │ └── board.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── d5035_01 │ │ │ ├── board.mk │ │ │ ├── d5035_01.c │ │ │ └── same51j19a_flash.ld │ │ ├── da14695_dk_usb │ │ │ ├── board.mk │ │ │ ├── da14695_dk_usb.c │ │ │ ├── da1469x.ld │ │ │ ├── gcc_startup_da1469x.S │ │ │ ├── product_header.dump │ │ │ └── syscfg │ │ │ │ └── syscfg.h │ │ ├── da1469x_dk_pro │ │ │ ├── board.mk │ │ │ ├── da1469x-dk-pro.c │ │ │ ├── da1469x.ld │ │ │ ├── gcc_startup_da1469x.S │ │ │ ├── product_header.dump │ │ │ └── syscfg │ │ │ │ └── syscfg.h │ │ ├── ea4088qs │ │ │ ├── board.mk │ │ │ ├── ea4088qs.c │ │ │ └── lpc4088.ld │ │ ├── ea4357 │ │ │ ├── board.mk │ │ │ ├── ea4357.c │ │ │ ├── lpc4357.ld │ │ │ ├── pca9532.c │ │ │ └── pca9532.h │ │ ├── esp32s2 │ │ │ ├── boards │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adafruit_feather_esp32s2 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── adafruit_magtag_29gray │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── adafruit_metro_esp32s2 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── esp32s2.c │ │ │ │ ├── espressif_kaluga_1 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ └── espressif_saola_1 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ ├── components │ │ │ │ └── led_strip │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include │ │ │ │ │ └── led_strip.h │ │ │ │ │ └── src │ │ │ │ │ └── led_strip_rmt_ws2812.c │ │ │ ├── family.cmake │ │ │ └── family.mk │ │ ├── esp32s3 │ │ │ ├── boards │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── esp32s3.c │ │ │ │ ├── espressif_addax_1 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── espressif_s3_devkitc │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ └── espressif_s3_devkitm │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ ├── components │ │ │ │ └── led_strip │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include │ │ │ │ │ └── led_strip.h │ │ │ │ │ └── src │ │ │ │ │ └── led_strip_rmt_ws2812.c │ │ │ ├── family.cmake │ │ │ └── family.mk │ │ ├── f1c100s │ │ │ ├── README.md │ │ │ ├── board.h │ │ │ ├── board.mk │ │ │ └── f1c100s.c │ │ ├── family_support.cmake │ │ ├── fomu │ │ │ ├── boards │ │ │ │ └── fomu │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── crt0-vexriscv.S │ │ │ ├── dfu.py │ │ │ ├── family.mk │ │ │ ├── fomu.c │ │ │ ├── fomu.ld │ │ │ ├── include │ │ │ │ ├── csr.h │ │ │ │ ├── hw │ │ │ │ │ └── common.h │ │ │ │ └── irq.h │ │ │ ├── output_format.ld │ │ │ └── regions.ld │ │ ├── frdm_k32l2b │ │ │ ├── board.h │ │ │ ├── board.mk │ │ │ └── frdm_k32l2b.c │ │ ├── frdm_kl25z │ │ │ ├── board.mk │ │ │ └── frdm_kl25z.c │ │ ├── gd32vf103 │ │ │ ├── boards │ │ │ │ └── sipeed_longan_nano │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── system_gd32vf103.c │ │ ├── imxrt │ │ │ ├── boards │ │ │ │ ├── mimxrt1010_evk │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkmimxrt1010_flexspi_nor_config.c │ │ │ │ │ └── evkmimxrt1010_flexspi_nor_config.h │ │ │ │ ├── mimxrt1015_evk │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkmimxrt1015_flexspi_nor_config.c │ │ │ │ │ └── evkmimxrt1015_flexspi_nor_config.h │ │ │ │ ├── mimxrt1020_evk │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkmimxrt1020_flexspi_nor_config.c │ │ │ │ │ └── evkmimxrt1020_flexspi_nor_config.h │ │ │ │ ├── mimxrt1050_evkb │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkbimxrt1050_flexspi_nor_config.c │ │ │ │ │ └── evkbimxrt1050_flexspi_nor_config.h │ │ │ │ ├── mimxrt1060_evk │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkmimxrt1060_flexspi_nor_config.c │ │ │ │ │ └── evkmimxrt1060_flexspi_nor_config.h │ │ │ │ ├── mimxrt1064_evk │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── evkmimxrt1064_flexspi_nor_config.c │ │ │ │ │ └── evkmimxrt1064_flexspi_nor_config.h │ │ │ │ └── teensy_40 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── teensy40_flexspi_nor_config.c │ │ │ │ │ └── teensy40_flexspi_nor_config.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── kuiic │ │ │ ├── K32L2B31xxxxA_flash.ld │ │ │ ├── board.h │ │ │ ├── board.mk │ │ │ └── kuiic.c │ │ ├── lpc15 │ │ │ ├── boards │ │ │ │ └── lpcxpresso1549 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── lpc1549.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── lpc18 │ │ │ ├── boards │ │ │ │ ├── lpcxpresso18s37 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── lpc1837.ld │ │ │ │ └── mcb1800 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── lpc1857.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── lpc54 │ │ │ ├── boards │ │ │ │ ├── lpcxpresso54114 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── lpcxpresso54628 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── lpc55 │ │ │ ├── boards │ │ │ │ ├── double_m33_express │ │ │ │ │ ├── LPC55S69_cm33_core0_uf2.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── lpcxpresso55s28 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── lpcxpresso55s69 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── mcu_link │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── lpcxpresso11u37 │ │ │ ├── board.mk │ │ │ ├── lpc11u37.ld │ │ │ └── lpcxpresso11u37.c │ │ ├── lpcxpresso11u68 │ │ │ ├── board.mk │ │ │ ├── lpc11u68.ld │ │ │ └── lpcxpresso11u68.c │ │ ├── lpcxpresso1347 │ │ │ ├── board.mk │ │ │ ├── lpc1347.ld │ │ │ └── lpcxpresso1347.c │ │ ├── lpcxpresso1769 │ │ │ ├── board.mk │ │ │ ├── lpc1769.ld │ │ │ └── lpcxpresso1769.c │ │ ├── lpcxpresso51u68 │ │ │ ├── board.mk │ │ │ └── lpcxpresso51u68.c │ │ ├── mbed1768 │ │ │ ├── board.mk │ │ │ ├── lpc1768.ld │ │ │ └── mbed1768.c │ │ ├── mm32 │ │ │ ├── boards │ │ │ │ └── mm32f327x_mb39 │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── flash.ld │ │ │ │ │ └── mm32f327x_mb39.c │ │ │ └── family.mk │ │ ├── msp430 │ │ │ ├── boards │ │ │ │ └── msp_exp430f5529lp │ │ │ │ │ └── board.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── msp432e4 │ │ │ ├── boards │ │ │ │ └── msp_exp432e401y │ │ │ │ │ └── board.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── ngx4330 │ │ │ ├── board.mk │ │ │ ├── ngx4330.c │ │ │ └── ngx4330.ld │ │ ├── nrf │ │ │ ├── boards │ │ │ │ ├── adafruit_clue │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── arduino_nano33_ble │ │ │ │ │ ├── arduino_nano33_ble.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── circuitplayground_bluefruit │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── feather_nrf52840_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── feather_nrf52840_sense │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── itsybitsy_nrf52840 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── nrf52840_mdk_dongle │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── nrf52840_mdk_dongle.ld │ │ │ │ ├── pca10056 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── pca10059 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── pca10059.ld │ │ │ │ ├── pca10100 │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── raytac_mdbt50q_rx │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── nutiny_nuc121s │ │ │ ├── board.mk │ │ │ ├── nuc121_flash.ld │ │ │ └── nutiny_nuc121.c │ │ ├── nutiny_nuc125s │ │ │ ├── board.mk │ │ │ ├── nuc125_flash.ld │ │ │ └── nutiny_nuc125.c │ │ ├── nutiny_nuc126v │ │ │ ├── board.mk │ │ │ ├── nuc126_flash.ld │ │ │ └── nutiny_nuc126.c │ │ ├── nutiny_sdk_nuc120 │ │ │ ├── board.mk │ │ │ ├── nuc120_flash.ld │ │ │ └── nutiny_sdk_nuc120.c │ │ ├── nutiny_sdk_nuc505 │ │ │ ├── board.mk │ │ │ ├── nuc505_flashtoram.ld │ │ │ └── nutiny_sdk_nuc505.c │ │ ├── pic32mz │ │ │ ├── boards │ │ │ │ ├── olimex_emz64 │ │ │ │ │ ├── board.mk │ │ │ │ │ └── olimex_emz64.c │ │ │ │ └── olimex_hmz144 │ │ │ │ │ ├── board.mk │ │ │ │ │ └── olimex_hmz144.c │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── rp2040 │ │ │ ├── board.h │ │ │ ├── boards │ │ │ │ ├── adafruit_feather_rp2040 │ │ │ │ │ └── board.cmake │ │ │ │ ├── adafruit_itsybitsy_rp2040 │ │ │ │ │ └── board.cmake │ │ │ │ ├── adafruit_qtpy_rp2040 │ │ │ │ │ └── board.cmake │ │ │ │ ├── pico_sdk │ │ │ │ │ └── board.cmake │ │ │ │ └── raspberry_pi_pico │ │ │ │ │ └── board.cmake │ │ │ ├── family.c │ │ │ ├── family.cmake │ │ │ ├── family.mk │ │ │ └── pico_sdk_import.cmake │ │ ├── rx │ │ │ ├── boards │ │ │ │ ├── gr_citrus │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── gr_citrus.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ └── r5f5631fd.ld │ │ │ │ └── rx65n_target │ │ │ │ │ ├── board.mk │ │ │ │ │ ├── r5f565ne.ld │ │ │ │ │ └── rx65n_target.c │ │ │ └── family.mk │ │ ├── samd11 │ │ │ ├── boards │ │ │ │ ├── luna_d11 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── samd11d14am_flash.ld │ │ │ │ └── samd11_xplained │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── samd11d14am_flash.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── samd21 │ │ │ ├── boards │ │ │ │ ├── atsamd21_xpro │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── samd21j18a_flash.ld │ │ │ │ ├── circuitplayground_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── circuitplayground_express.ld │ │ │ │ ├── curiosity_nano │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── samd21g17a_flash.ld │ │ │ │ ├── feather_m0_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── feather_m0_express.ld │ │ │ │ ├── itsybitsy_m0 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── itsybitsy_m0.ld │ │ │ │ ├── luna_d21 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── samd21g18a_flash.ld │ │ │ │ ├── metro_m0_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── metro_m0_express.ld │ │ │ │ ├── qtpy │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── qtpy.ld │ │ │ │ ├── seeeduino_xiao │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── seeeduino_xiao.ld │ │ │ │ └── trinket_m0 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── trinket_m0.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── samd51 │ │ │ ├── boards │ │ │ │ ├── feather_m4_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── feather_m4_express.ld │ │ │ │ ├── itsybitsy_m4 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── itsybitsy_m4.ld │ │ │ │ ├── metro_m4_express │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── metro_m4_express.ld │ │ │ │ ├── pybadge │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── pybadge.ld │ │ │ │ └── pyportal │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── pyportal.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── same54xplainedpro │ │ │ ├── board.mk │ │ │ ├── same54p20a_flash.ld │ │ │ ├── same54p20a_sram.ld │ │ │ └── same54xplainedpro.c │ │ ├── same70_qmtech │ │ │ ├── board.mk │ │ │ ├── hpl_pmc_config.h │ │ │ ├── hpl_usart_config.h │ │ │ ├── hpl_xdmac_config.h │ │ │ ├── peripheral_clk_config.h │ │ │ └── same70_qmtech.c │ │ ├── same70_xplained │ │ │ ├── board.mk │ │ │ ├── hpl_pmc_config.h │ │ │ ├── hpl_usart_config.h │ │ │ ├── hpl_xdmac_config.h │ │ │ ├── peripheral_clk_config.h │ │ │ └── same70_xplained.c │ │ ├── samg55xplained │ │ │ ├── board.mk │ │ │ ├── hpl_usart_config.h │ │ │ ├── peripheral_clk_config.h │ │ │ ├── samg55j19_flash.ld │ │ │ └── samg55xplained.c │ │ ├── saml2x │ │ │ ├── boards │ │ │ │ ├── atsaml21_xpro │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── saml21j18b_flash.ld │ │ │ │ ├── saml22_feather │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── saml22_feather.ld │ │ │ │ └── sensorwatch_m0 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── sensorwatch_m0.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── sltb009a │ │ │ ├── board.mk │ │ │ └── sltb009a.c │ │ ├── spresense │ │ │ ├── board.mk │ │ │ └── board_spresense.c │ │ ├── stm32f0 │ │ │ ├── boards │ │ │ │ ├── stm32f070rbnucleo │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32F070rbtx_flash.ld │ │ │ │ ├── stm32f072disco │ │ │ │ │ ├── STM32F072RBTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── stm32f072eval │ │ │ │ │ ├── STM32F072VBTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32f0xx_hal_conf.h │ │ ├── stm32f1 │ │ │ ├── boards │ │ │ │ ├── stm32f103_bluepill │ │ │ │ │ ├── STM32F103X8_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── stm32f103_mini_2 │ │ │ │ │ ├── STM32F103XC_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32f1xx_hal_conf.h │ │ ├── stm32f207nucleo │ │ │ ├── STM32F207ZGTx_FLASH.ld │ │ │ ├── board.mk │ │ │ ├── stm32f207nucleo.c │ │ │ └── stm32f2xx_hal_conf.h │ │ ├── stm32f303disco │ │ │ ├── STM32F303VCTx_FLASH.ld │ │ │ ├── board.mk │ │ │ ├── stm32f303disco.c │ │ │ └── stm32f3xx_hal_conf.h │ │ ├── stm32f4 │ │ │ ├── boards │ │ │ │ ├── feather_stm32f405 │ │ │ │ │ ├── STM32F405RGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── pyboardv11 │ │ │ │ │ ├── STM32F405RGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f401blackpill │ │ │ │ │ ├── STM32F401VCTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f407disco │ │ │ │ │ ├── STM32F407VGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f411blackpill │ │ │ │ │ ├── STM32F411CEUx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f411disco │ │ │ │ │ ├── STM32F411VETx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f412disco │ │ │ │ │ ├── STM32F412ZGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── stm32f412nucleo │ │ │ │ │ ├── STM32F412ZGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ └── stm32f439nucleo │ │ │ │ │ ├── STM32F439ZITX_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── stm32f7 │ │ │ ├── boards │ │ │ │ ├── stlinkv3mini │ │ │ │ │ ├── STM32F723xE_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ │ ├── stm32f723disco │ │ │ │ │ ├── STM32F723xE_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ │ ├── stm32f746disco │ │ │ │ │ ├── STM32F746ZGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ │ ├── stm32f746nucleo │ │ │ │ │ ├── STM32F746ZGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ │ ├── stm32f767nucleo │ │ │ │ │ ├── STM32F767ZITx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ │ └── stm32f769disco │ │ │ │ │ ├── STM32F769ZITx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ ├── family.c │ │ │ └── family.mk │ │ ├── stm32g4 │ │ │ ├── boards │ │ │ │ └── stm32g474nucleo │ │ │ │ │ ├── STM32G474RETx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32g4xx_hal_conf.h │ │ ├── stm32h7 │ │ │ ├── boards │ │ │ │ ├── stm32h743eval │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32h743xx_flash.ld │ │ │ │ ├── stm32h743nucleo │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32h743xx_flash.ld │ │ │ │ ├── stm32h745disco │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── waveshare_openh743i │ │ │ │ │ ├── STM32H743IITX_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32h7xx_hal_conf.h │ │ ├── stm32l0538disco │ │ │ ├── STM32L053C8Tx_FLASH.ld │ │ │ ├── board.mk │ │ │ ├── stm32l0538disco.c │ │ │ └── stm32l0xx_hal_conf.h │ │ ├── stm32l4 │ │ │ ├── boards │ │ │ │ ├── stm32l476disco │ │ │ │ │ ├── STM32L476VGTx_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── stm32l4p5nucleo │ │ │ │ │ ├── STM32L4P5ZGTX_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ └── stm32l4r5nucleo │ │ │ │ │ ├── STM32L4RXxI_FLASH.ld │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32l4xx_hal_conf.h │ │ ├── stm32wb │ │ │ ├── boards │ │ │ │ └── stm32wb55nucleo │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── stm32wb55xx_flash_cm4.ld │ │ │ ├── family.c │ │ │ ├── family.mk │ │ │ └── stm32wbxx_hal_conf.h │ │ ├── tm4c123 │ │ │ ├── boards │ │ │ │ └── ek-tm4c123gxl │ │ │ │ │ ├── board.h │ │ │ │ │ ├── board.mk │ │ │ │ │ └── tm4c123.ld │ │ │ ├── family.c │ │ │ └── family.mk │ │ └── xmc4000 │ │ │ ├── boards │ │ │ └── xmc4500_relax │ │ │ │ ├── board.h │ │ │ │ └── board.mk │ │ │ ├── family.c │ │ │ └── family.mk │ └── mcu │ │ ├── bridgetek │ │ └── ft9xx │ │ │ ├── Readme.md │ │ │ └── scripts │ │ │ ├── crt0.S │ │ │ └── ldscript.ld │ │ ├── dialog │ │ ├── README.md │ │ └── da1469x │ │ │ ├── SDK_10.0.8.105 │ │ │ └── sdk │ │ │ │ └── bsp │ │ │ │ ├── arm_license.txt │ │ │ │ └── include │ │ │ │ ├── DA1469xAB.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ ├── system_ARMCM0.h │ │ │ │ └── system_DA1469x.h │ │ │ ├── da1469x.ld │ │ │ ├── include │ │ │ ├── hal │ │ │ │ └── hal_gpio.h │ │ │ └── mcu │ │ │ │ ├── da1469x_clock.h │ │ │ │ ├── da1469x_hal.h │ │ │ │ └── mcu.h │ │ │ └── src │ │ │ ├── da1469x_clock.c │ │ │ ├── hal_gpio.c │ │ │ ├── hal_system.c │ │ │ ├── hal_system_start.c │ │ │ └── system_da1469x.c │ │ ├── nordic │ │ ├── nrf5x │ │ │ └── s140_nrf52_6.1.1_API │ │ │ │ └── include │ │ │ │ ├── ble.h │ │ │ │ ├── ble_err.h │ │ │ │ ├── ble_gap.h │ │ │ │ ├── ble_gatt.h │ │ │ │ ├── ble_gattc.h │ │ │ │ ├── ble_gatts.h │ │ │ │ ├── ble_hci.h │ │ │ │ ├── ble_l2cap.h │ │ │ │ ├── ble_ranges.h │ │ │ │ ├── ble_types.h │ │ │ │ ├── nrf52 │ │ │ │ └── nrf_mbr.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_error_sdm.h │ │ │ │ ├── nrf_error_soc.h │ │ │ │ ├── nrf_nvic.h │ │ │ │ ├── nrf_sdm.h │ │ │ │ ├── nrf_soc.h │ │ │ │ └── nrf_svc.h │ │ ├── nrfx_config.h │ │ ├── nrfx_glue.h │ │ └── nrfx_log.h │ │ └── sony │ │ └── cxd56 │ │ ├── mkspk │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── clefia.c │ │ ├── clefia.h │ │ ├── elf32.h │ │ ├── mkspk.c │ │ └── mkspk.h │ │ └── tools │ │ ├── flash_writer.py │ │ └── xmodem.py ├── lib │ ├── SEGGER_RTT │ │ ├── License.txt │ │ ├── README.txt │ │ ├── RTT │ │ │ ├── SEGGER_RTT.c │ │ │ ├── SEGGER_RTT.h │ │ │ ├── SEGGER_RTT_ASM_ARMv7M.S │ │ │ ├── SEGGER_RTT_Conf.h │ │ │ └── SEGGER_RTT_printf.c │ │ └── Syscalls │ │ │ ├── SEGGER_RTT_Syscalls_GCC.c │ │ │ ├── SEGGER_RTT_Syscalls_IAR.c │ │ │ ├── SEGGER_RTT_Syscalls_KEIL.c │ │ │ └── SEGGER_RTT_Syscalls_SES.c │ ├── fatfs │ │ ├── 00readme.txt │ │ ├── ccsbcs.c │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ └── integer.h │ └── networking │ │ ├── dhserver.c │ │ ├── dhserver.h │ │ ├── dnserver.c │ │ ├── dnserver.h │ │ ├── ndis.h │ │ ├── rndis_protocol.h │ │ └── rndis_reports.c ├── pkg.yml ├── repository.yml ├── src │ ├── class │ │ ├── audio │ │ │ ├── audio.h │ │ │ ├── audio_device.c │ │ │ └── audio_device.h │ │ ├── bth │ │ │ ├── bth_device.c │ │ │ └── bth_device.h │ │ ├── cdc │ │ │ ├── cdc.h │ │ │ ├── cdc_device.c │ │ │ ├── cdc_device.h │ │ │ ├── cdc_host.c │ │ │ ├── cdc_host.h │ │ │ ├── cdc_rndis.h │ │ │ ├── cdc_rndis_host.c │ │ │ └── cdc_rndis_host.h │ │ ├── dfu │ │ │ ├── dfu.h │ │ │ ├── dfu_device.c │ │ │ ├── dfu_device.h │ │ │ ├── dfu_rt_device.c │ │ │ └── dfu_rt_device.h │ │ ├── hid │ │ │ ├── hid.h │ │ │ ├── hid_device.c │ │ │ ├── hid_device.h │ │ │ ├── hid_host.c │ │ │ └── hid_host.h │ │ ├── midi │ │ │ ├── midi.h │ │ │ ├── midi_device.c │ │ │ └── midi_device.h │ │ ├── msc │ │ │ ├── msc.h │ │ │ ├── msc_device.c │ │ │ ├── msc_device.h │ │ │ ├── msc_host.c │ │ │ └── msc_host.h │ │ ├── net │ │ │ ├── ecm_rndis_device.c │ │ │ ├── ncm.h │ │ │ ├── ncm_device.c │ │ │ └── net_device.h │ │ ├── usbtmc │ │ │ ├── usbtmc.h │ │ │ ├── usbtmc_device.c │ │ │ └── usbtmc_device.h │ │ ├── vendor │ │ │ ├── vendor_device.c │ │ │ ├── vendor_device.h │ │ │ ├── vendor_host.c │ │ │ └── vendor_host.h │ │ └── video │ │ │ ├── video.h │ │ │ ├── video_device.c │ │ │ └── video_device.h │ ├── common │ │ ├── tusb_common.h │ │ ├── tusb_compiler.h │ │ ├── tusb_debug.h │ │ ├── tusb_fifo.c │ │ ├── tusb_fifo.h │ │ ├── tusb_mcu.h │ │ ├── tusb_private.h │ │ ├── tusb_timeout.h │ │ ├── tusb_types.h │ │ └── tusb_verify.h │ ├── device │ │ ├── dcd.h │ │ ├── usbd.c │ │ ├── usbd.h │ │ ├── usbd_control.c │ │ └── usbd_pvt.h │ ├── host │ │ ├── hcd.h │ │ ├── hub.c │ │ ├── hub.h │ │ ├── usbh.c │ │ ├── usbh.h │ │ └── usbh_classdriver.h │ ├── osal │ │ ├── osal.h │ │ ├── osal_freertos.h │ │ ├── osal_mynewt.h │ │ ├── osal_none.h │ │ ├── osal_pico.h │ │ ├── osal_rtthread.h │ │ └── osal_rtx4.h │ ├── portable │ │ ├── bridgetek │ │ │ └── ft9xx │ │ │ │ └── dcd_ft9xx.c │ │ ├── chipidea │ │ │ └── ci_hs │ │ │ │ ├── ci_hs_imxrt.h │ │ │ │ ├── ci_hs_lpc18_43.h │ │ │ │ ├── ci_hs_type.h │ │ │ │ ├── dcd_ci_hs.c │ │ │ │ └── hcd_ci_hs.c │ │ ├── dialog │ │ │ └── da146xx │ │ │ │ └── dcd_da146xx.c │ │ ├── ehci │ │ │ ├── ehci.c │ │ │ ├── ehci.h │ │ │ └── ehci_api.h │ │ ├── espressif │ │ │ └── esp32sx │ │ │ │ └── dcd_esp32sx.c │ │ ├── mentor │ │ │ └── musb │ │ │ │ ├── dcd_musb.c │ │ │ │ ├── hcd_musb.c │ │ │ │ ├── musb_msp432e.h │ │ │ │ ├── musb_tm4c.h │ │ │ │ └── musb_type.h │ │ ├── microchip │ │ │ ├── pic32mz │ │ │ │ ├── dcd_pic32mz.c │ │ │ │ └── usbhs_registers.h │ │ │ ├── samd │ │ │ │ └── dcd_samd.c │ │ │ ├── samg │ │ │ │ └── dcd_samg.c │ │ │ └── samx7x │ │ │ │ ├── common_usb_regs.h │ │ │ │ └── dcd_samx7x.c │ │ ├── mindmotion │ │ │ └── mm32 │ │ │ │ └── dcd_mm32f327x_otg.c │ │ ├── nordic │ │ │ └── nrf5x │ │ │ │ └── dcd_nrf5x.c │ │ ├── nuvoton │ │ │ ├── nuc120 │ │ │ │ └── dcd_nuc120.c │ │ │ ├── nuc121 │ │ │ │ └── dcd_nuc121.c │ │ │ └── nuc505 │ │ │ │ └── dcd_nuc505.c │ │ ├── nxp │ │ │ ├── khci │ │ │ │ ├── dcd_khci.c │ │ │ │ └── hcd_khci.c │ │ │ ├── lpc17_40 │ │ │ │ ├── dcd_lpc17_40.c │ │ │ │ ├── dcd_lpc17_40.h │ │ │ │ └── hcd_lpc17_40.c │ │ │ ├── lpc_ip3511 │ │ │ │ └── dcd_lpc_ip3511.c │ │ │ └── transdimension │ │ │ │ ├── common_transdimension.h │ │ │ │ ├── dcd_transdimension.c │ │ │ │ └── hcd_transdimension.c │ │ ├── ohci │ │ │ ├── ohci.c │ │ │ └── ohci.h │ │ ├── raspberrypi │ │ │ ├── pio_usb │ │ │ │ ├── dcd_pio_usb.c │ │ │ │ └── hcd_pio_usb.c │ │ │ └── rp2040 │ │ │ │ ├── dcd_rp2040.c │ │ │ │ ├── hcd_rp2040.c │ │ │ │ ├── rp2040_usb.c │ │ │ │ └── rp2040_usb.h │ │ ├── renesas │ │ │ └── usba │ │ │ │ ├── dcd_usba.c │ │ │ │ └── hcd_usba.c │ │ ├── sony │ │ │ └── cxd56 │ │ │ │ └── dcd_cxd56.c │ │ ├── st │ │ │ ├── stm32_fsdev │ │ │ │ ├── dcd_stm32_fsdev.c │ │ │ │ └── dcd_stm32_fsdev_pvt_st.h │ │ │ └── synopsys │ │ │ │ ├── dcd_synopsys.c │ │ │ │ └── synopsys_common.h │ │ ├── sunxi │ │ │ ├── dcd_sunxi_musb.c │ │ │ └── musb_def.h │ │ ├── synopsys │ │ │ └── dwc2 │ │ │ │ ├── dcd_dwc2.c │ │ │ │ ├── dwc2_bcm.h │ │ │ │ ├── dwc2_efm32.h │ │ │ │ ├── dwc2_esp32.h │ │ │ │ ├── dwc2_gd32.h │ │ │ │ ├── dwc2_stm32.h │ │ │ │ ├── dwc2_type.h │ │ │ │ ├── dwc2_xmc.h │ │ │ │ └── hwcfg_list.md │ │ ├── template │ │ │ └── dcd_template.c │ │ ├── ti │ │ │ └── msp430x5xx │ │ │ │ └── dcd_msp430x5xx.c │ │ └── valentyusb │ │ │ └── eptri │ │ │ ├── dcd_eptri.c │ │ │ └── dcd_eptri.h │ ├── tusb.c │ ├── tusb.h │ └── tusb_option.h ├── test │ ├── ceedling │ ├── project.yml │ ├── test │ │ ├── device │ │ │ ├── msc │ │ │ │ └── test_msc_device.c │ │ │ └── usbd │ │ │ │ └── test_usbd.c │ │ ├── support │ │ │ └── tusb_config.h │ │ └── test_fifo.c │ └── vendor │ │ └── ceedling │ │ ├── bin │ │ └── ceedling │ │ ├── docs │ │ ├── CException.md │ │ ├── CMock_Summary.md │ │ ├── CeedlingPacket.md │ │ ├── ThrowTheSwitchCodingStandard.md │ │ ├── UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf │ │ ├── UnityAssertionsReference.md │ │ ├── UnityConfigurationGuide.md │ │ ├── UnityGettingStartedGuide.md │ │ └── UnityHelperScriptsGuide.md │ │ ├── lib │ │ ├── ceedling.rb │ │ └── ceedling │ │ │ ├── build_invoker_utils.rb │ │ │ ├── cacheinator.rb │ │ │ ├── cacheinator_helper.rb │ │ │ ├── cmock_builder.rb │ │ │ ├── configurator.rb │ │ │ ├── configurator_builder.rb │ │ │ ├── configurator_plugins.rb │ │ │ ├── configurator_setup.rb │ │ │ ├── configurator_validator.rb │ │ │ ├── constants.rb │ │ │ ├── defaults.rb │ │ │ ├── dependinator.rb │ │ │ ├── erb_wrapper.rb │ │ │ ├── file_finder.rb │ │ │ ├── file_finder_helper.rb │ │ │ ├── file_path_utils.rb │ │ │ ├── file_system_utils.rb │ │ │ ├── file_system_wrapper.rb │ │ │ ├── file_wrapper.rb │ │ │ ├── flaginator.rb │ │ │ ├── generator.rb │ │ │ ├── generator_helper.rb │ │ │ ├── generator_test_results.rb │ │ │ ├── generator_test_results_sanity_checker.rb │ │ │ ├── generator_test_runner.rb │ │ │ ├── loginator.rb │ │ │ ├── makefile.rb │ │ │ ├── objects.yml │ │ │ ├── par_map.rb │ │ │ ├── plugin.rb │ │ │ ├── plugin_builder.rb │ │ │ ├── plugin_manager.rb │ │ │ ├── plugin_manager_helper.rb │ │ │ ├── plugin_reportinator.rb │ │ │ ├── plugin_reportinator_helper.rb │ │ │ ├── preprocessinator.rb │ │ │ ├── preprocessinator_extractor.rb │ │ │ ├── preprocessinator_file_handler.rb │ │ │ ├── preprocessinator_helper.rb │ │ │ ├── preprocessinator_includes_handler.rb │ │ │ ├── project_config_manager.rb │ │ │ ├── project_file_loader.rb │ │ │ ├── rake_utils.rb │ │ │ ├── rake_wrapper.rb │ │ │ ├── rakefile.rb │ │ │ ├── release_invoker.rb │ │ │ ├── release_invoker_helper.rb │ │ │ ├── reportinator.rb │ │ │ ├── rules_cmock.rake │ │ │ ├── rules_preprocess.rake │ │ │ ├── rules_release.rake │ │ │ ├── rules_release_deep_dependencies.rake │ │ │ ├── rules_tests.rake │ │ │ ├── rules_tests_deep_dependencies.rake │ │ │ ├── setupinator.rb │ │ │ ├── stream_wrapper.rb │ │ │ ├── streaminator.rb │ │ │ ├── streaminator_helper.rb │ │ │ ├── system_utils.rb │ │ │ ├── system_wrapper.rb │ │ │ ├── target_loader.rb │ │ │ ├── task_invoker.rb │ │ │ ├── tasks_base.rake │ │ │ ├── tasks_filesystem.rake │ │ │ ├── tasks_release.rake │ │ │ ├── tasks_release_deep_dependencies.rake │ │ │ ├── tasks_tests.rake │ │ │ ├── tasks_tests_deep_dependencies.rake │ │ │ ├── tasks_vendor.rake │ │ │ ├── test_includes_extractor.rb │ │ │ ├── test_invoker.rb │ │ │ ├── test_invoker_helper.rb │ │ │ ├── tool_executor.rb │ │ │ ├── tool_executor_helper.rb │ │ │ ├── verbosinator.rb │ │ │ ├── version.rb │ │ │ ├── version.rb.erb │ │ │ └── yaml_wrapper.rb │ │ ├── plugins │ │ ├── beep │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ └── beep.rb │ │ ├── bullseye │ │ │ ├── assets │ │ │ │ └── template.erb │ │ │ ├── bullseye.rake │ │ │ ├── config │ │ │ │ └── defaults.yml │ │ │ ├── lib │ │ │ │ └── bullseye.rb │ │ │ └── readme.txt │ │ ├── colour_report │ │ │ └── lib │ │ │ │ └── colour_report.rb │ │ ├── command_hooks │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ └── command_hooks.rb │ │ ├── fake_function_framework │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── examples │ │ │ │ └── fff_example │ │ │ │ │ ├── project.yml │ │ │ │ │ ├── rakefile.rb │ │ │ │ │ ├── src │ │ │ │ │ ├── bar.c │ │ │ │ │ ├── bar.h │ │ │ │ │ ├── custom_types.h │ │ │ │ │ ├── display.c │ │ │ │ │ ├── display.h │ │ │ │ │ ├── event_processor.c │ │ │ │ │ ├── event_processor.h │ │ │ │ │ ├── foo.c │ │ │ │ │ ├── foo.h │ │ │ │ │ └── subfolder │ │ │ │ │ │ ├── zzz.c │ │ │ │ │ │ └── zzz.h │ │ │ │ │ └── test │ │ │ │ │ ├── test_event_processor.c │ │ │ │ │ └── test_foo.c │ │ │ ├── lib │ │ │ │ ├── fake_function_framework.rb │ │ │ │ └── fff_mock_generator.rb │ │ │ ├── spec │ │ │ │ ├── fff_mock_header_generator_spec.rb │ │ │ │ ├── fff_mock_source_generator_spec.rb │ │ │ │ ├── header_generator.rb │ │ │ │ └── spec_helper.rb │ │ │ └── src │ │ │ │ └── fff_unity_helper.h │ │ ├── gcov │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── template.erb │ │ │ ├── config │ │ │ │ └── defaults.yml │ │ │ ├── gcov.rake │ │ │ └── lib │ │ │ │ ├── gcov.rb │ │ │ │ └── gcov_constants.rb │ │ ├── junit_tests_report │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ └── junit_tests_report.rb │ │ ├── module_generator │ │ │ ├── config │ │ │ │ └── module_generator.yml │ │ │ ├── lib │ │ │ │ └── module_generator.rb │ │ │ └── module_generator.rake │ │ ├── raw_output_report │ │ │ └── lib │ │ │ │ └── raw_output_report.rb │ │ ├── stdout_gtestlike_tests_report │ │ │ ├── assets │ │ │ │ ├── template.erb │ │ │ │ └── template.erb copy │ │ │ ├── config │ │ │ │ └── stdout_gtestlike_tests_report.yml │ │ │ └── lib │ │ │ │ └── stdout_gtestlike_tests_report.rb │ │ ├── stdout_ide_tests_report │ │ │ ├── config │ │ │ │ └── stdout_ide_tests_report.yml │ │ │ └── lib │ │ │ │ └── stdout_ide_tests_report.rb │ │ ├── stdout_pretty_tests_report │ │ │ ├── assets │ │ │ │ └── template.erb │ │ │ ├── config │ │ │ │ └── stdout_pretty_tests_report.yml │ │ │ └── lib │ │ │ │ └── stdout_pretty_tests_report.rb │ │ ├── subprojects │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── defaults.yml │ │ │ ├── lib │ │ │ │ └── subprojects.rb │ │ │ └── subprojects.rake │ │ ├── teamcity_tests_report │ │ │ ├── config │ │ │ │ └── teamcity_tests_report.yml │ │ │ └── lib │ │ │ │ └── teamcity_tests_report.rb │ │ ├── warnings_report │ │ │ └── lib │ │ │ │ └── warnings_report.rb │ │ └── xml_tests_report │ │ │ ├── README.md │ │ │ └── lib │ │ │ └── xml_tests_report.rb │ │ └── vendor │ │ ├── c_exception │ │ ├── lib │ │ │ ├── CException.c │ │ │ └── CException.h │ │ └── release │ │ │ ├── build.info │ │ │ └── version.info │ │ ├── cmock │ │ ├── config │ │ │ ├── production_environment.rb │ │ │ └── test_environment.rb │ │ ├── lib │ │ │ ├── cmock.rb │ │ │ ├── cmock_config.rb │ │ │ ├── cmock_file_writer.rb │ │ │ ├── cmock_generator.rb │ │ │ ├── cmock_generator_plugin_array.rb │ │ │ ├── cmock_generator_plugin_callback.rb │ │ │ ├── cmock_generator_plugin_cexception.rb │ │ │ ├── cmock_generator_plugin_expect.rb │ │ │ ├── cmock_generator_plugin_expect_any_args.rb │ │ │ ├── cmock_generator_plugin_ignore.rb │ │ │ ├── cmock_generator_plugin_ignore_arg.rb │ │ │ ├── cmock_generator_plugin_return_thru_ptr.rb │ │ │ ├── cmock_generator_utils.rb │ │ │ ├── cmock_header_parser.rb │ │ │ ├── cmock_plugin_manager.rb │ │ │ └── cmock_unityhelper_parser.rb │ │ ├── release │ │ │ ├── build.info │ │ │ └── version.info │ │ └── src │ │ │ ├── cmock.c │ │ │ ├── cmock.h │ │ │ ├── cmock_internals.h │ │ │ └── meson.build │ │ ├── deep_merge │ │ └── lib │ │ │ └── deep_merge.rb │ │ ├── diy │ │ └── lib │ │ │ ├── diy.rb │ │ │ └── diy │ │ │ └── factory.rb │ │ └── unity │ │ ├── auto │ │ ├── colour_prompt.rb │ │ ├── colour_reporter.rb │ │ ├── generate_config.yml │ │ ├── generate_module.rb │ │ ├── generate_test_runner.rb │ │ ├── parse_output.rb │ │ ├── run_test.erb │ │ ├── stylize_as_junit.rb │ │ ├── test_file_filter.rb │ │ ├── type_sanitizer.rb │ │ ├── unity_test_summary.py │ │ ├── unity_test_summary.rb │ │ └── unity_to_junit.py │ │ ├── release │ │ ├── build.info │ │ └── version.info │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── meson.build │ │ ├── unity.c │ │ ├── unity.h │ │ └── unity_internals.h ├── tools │ ├── build_board.py │ ├── build_esp32sx.py │ ├── build_family.py │ ├── build_utils.py │ ├── iar_gen.py │ ├── iar_template.ipcf │ ├── mksunxi.py │ ├── top.mk │ └── usb_drivers │ │ └── tinyusb_win_usbser.inf └── version.yml └── tlsf ├── tlsf.c └── tlsf.h /.build: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/README.md -------------------------------------------------------------------------------- /common/arm/arm_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/arm_timer.c -------------------------------------------------------------------------------- /common/arm/arm_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/arm_timer.h -------------------------------------------------------------------------------- /common/arm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/irq.c -------------------------------------------------------------------------------- /common/arm/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/irq.h -------------------------------------------------------------------------------- /common/arm/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/mmu.c -------------------------------------------------------------------------------- /common/arm/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/arm/mmu.h -------------------------------------------------------------------------------- /common/aw/ccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/ccu.c -------------------------------------------------------------------------------- /common/aw/ccu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/ccu.h -------------------------------------------------------------------------------- /common/aw/de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/de.c -------------------------------------------------------------------------------- /common/aw/de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/de.h -------------------------------------------------------------------------------- /common/aw/de_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/de_priv.h -------------------------------------------------------------------------------- /common/aw/dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/dmac.c -------------------------------------------------------------------------------- /common/aw/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/dmac.h -------------------------------------------------------------------------------- /common/aw/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/gpio.c -------------------------------------------------------------------------------- /common/aw/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/gpio.h -------------------------------------------------------------------------------- /common/aw/smhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/smhc.c -------------------------------------------------------------------------------- /common/aw/smhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/smhc.h -------------------------------------------------------------------------------- /common/aw/tcon_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/tcon_lcd.c -------------------------------------------------------------------------------- /common/aw/tcon_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/tcon_lcd.h -------------------------------------------------------------------------------- /common/aw/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/timer.c -------------------------------------------------------------------------------- /common/aw/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/timer.h -------------------------------------------------------------------------------- /common/aw/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/twi.c -------------------------------------------------------------------------------- /common/aw/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/twi.h -------------------------------------------------------------------------------- /common/aw/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/uart.c -------------------------------------------------------------------------------- /common/aw/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/aw/uart.h -------------------------------------------------------------------------------- /common/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/fifo.c -------------------------------------------------------------------------------- /common/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/fifo.h -------------------------------------------------------------------------------- /common/gr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/gr.c -------------------------------------------------------------------------------- /common/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/gr.h -------------------------------------------------------------------------------- /common/memmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/memmgr.c -------------------------------------------------------------------------------- /common/memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/memmgr.h -------------------------------------------------------------------------------- /common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/random.c -------------------------------------------------------------------------------- /common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/common/random.h -------------------------------------------------------------------------------- /doc/DDI0406B_arm_architecture_reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/doc/DDI0406B_arm_architecture_reference_manual.pdf -------------------------------------------------------------------------------- /doc/DDI0462F_cortex_a7_neon_mpe_r0p5_trm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/doc/DDI0462F_cortex_a7_neon_mpe_r0p5_trm.pdf -------------------------------------------------------------------------------- /doc/DDI0464F_cortex_a7_mpcore_r0p5_trm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/doc/DDI0464F_cortex_a7_mpcore_r0p5_trm.pdf -------------------------------------------------------------------------------- /doc/IHI0048B_b_gic_architecture_specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/doc/IHI0048B_b_gic_architecture_specification.pdf -------------------------------------------------------------------------------- /fw_lite/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/.gdbinit -------------------------------------------------------------------------------- /fw_lite/AW_T113S2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/AW_T113S2.ld -------------------------------------------------------------------------------- /fw_lite/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/FreeRTOSConfig.h -------------------------------------------------------------------------------- /fw_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/Makefile -------------------------------------------------------------------------------- /fw_lite/asm/memcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/asm/memcmp.S -------------------------------------------------------------------------------- /fw_lite/asm/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/asm/memcpy.S -------------------------------------------------------------------------------- /fw_lite/asm/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/asm/memmove.S -------------------------------------------------------------------------------- /fw_lite/asm/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/asm/memset.S -------------------------------------------------------------------------------- /fw_lite/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/chip.h -------------------------------------------------------------------------------- /fw_lite/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/diskio.c -------------------------------------------------------------------------------- /fw_lite/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/event.h -------------------------------------------------------------------------------- /fw_lite/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/ffconf.h -------------------------------------------------------------------------------- /fw_lite/hid_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/hid_app.c -------------------------------------------------------------------------------- /fw_lite/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/led.c -------------------------------------------------------------------------------- /fw_lite/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/led.h -------------------------------------------------------------------------------- /fw_lite/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/main.c -------------------------------------------------------------------------------- /fw_lite/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/openocd.cfg -------------------------------------------------------------------------------- /fw_lite/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/platform.h -------------------------------------------------------------------------------- /fw_lite/sdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/sdfs.c -------------------------------------------------------------------------------- /fw_lite/sdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/sdfs.h -------------------------------------------------------------------------------- /fw_lite/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/start.S -------------------------------------------------------------------------------- /fw_lite/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/start.sh -------------------------------------------------------------------------------- /fw_lite/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/syscalls.c -------------------------------------------------------------------------------- /fw_lite/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/syscalls.h -------------------------------------------------------------------------------- /fw_lite/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/tusb_config.h -------------------------------------------------------------------------------- /fw_lite/usb_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/usb_task.c -------------------------------------------------------------------------------- /fw_lite/usb_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_lite/usb_task.h -------------------------------------------------------------------------------- /fw_main/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/.gdbinit -------------------------------------------------------------------------------- /fw_main/AW_T113S2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/AW_T113S2.ld -------------------------------------------------------------------------------- /fw_main/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/FreeRTOSConfig.h -------------------------------------------------------------------------------- /fw_main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/Makefile -------------------------------------------------------------------------------- /fw_main/arm_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/arm_timer.c -------------------------------------------------------------------------------- /fw_main/arm_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/arm_timer.h -------------------------------------------------------------------------------- /fw_main/asm/memcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/asm/memcmp.S -------------------------------------------------------------------------------- /fw_main/asm/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/asm/memcpy.S -------------------------------------------------------------------------------- /fw_main/asm/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/asm/memmove.S -------------------------------------------------------------------------------- /fw_main/asm/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/asm/memset.S -------------------------------------------------------------------------------- /fw_main/assets/bin2c/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/.clang-format -------------------------------------------------------------------------------- /fw_main/assets/bin2c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/.gitignore -------------------------------------------------------------------------------- /fw_main/assets/bin2c/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/LICENCE -------------------------------------------------------------------------------- /fw_main/assets/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/Makefile -------------------------------------------------------------------------------- /fw_main/assets/bin2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/README.md -------------------------------------------------------------------------------- /fw_main/assets/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/bin2c.c -------------------------------------------------------------------------------- /fw_main/assets/bin2c/test/test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/test/test.bin -------------------------------------------------------------------------------- /fw_main/assets/bin2c/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/bin2c/test/test.c -------------------------------------------------------------------------------- /fw_main/assets/fat16.bin.lzg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/fat16.bin.lzg -------------------------------------------------------------------------------- /fw_main/assets/liblzg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/.gitignore -------------------------------------------------------------------------------- /fw_main/assets/liblzg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/LICENSE.txt -------------------------------------------------------------------------------- /fw_main/assets/liblzg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/README.txt -------------------------------------------------------------------------------- /fw_main/assets/liblzg/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/doc/Doxyfile -------------------------------------------------------------------------------- /fw_main/assets/liblzg/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/doc/Makefile -------------------------------------------------------------------------------- /fw_main/assets/liblzg/doc/liblzg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/doc/liblzg-logo.png -------------------------------------------------------------------------------- /fw_main/assets/liblzg/doc/liblzg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/doc/liblzg-logo.svg -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/Makefile -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/README.txt -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini.js -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini.lua -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini.pas -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini_6502.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini_6502.s -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini_68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini_68k.h -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/extra/lzgmini_68k.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/extra/lzgmini_68k.s -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/include/lzg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/include/lzg.h -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | 4 | -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/Makefile -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/TODO.txt -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/checksum.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/decode.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/encode.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/internal.h -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/liblzg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/liblzg.so -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/lib/version.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/tools/.gitignore -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/tools/Makefile -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/tools/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/tools/benchmark.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/tools/lzg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/tools/lzg.c -------------------------------------------------------------------------------- /fw_main/assets/liblzg/src/tools/unlzg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/assets/liblzg/src/tools/unlzg.c -------------------------------------------------------------------------------- /fw_main/ccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/ccu.c -------------------------------------------------------------------------------- /fw_main/ccu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/ccu.h -------------------------------------------------------------------------------- /fw_main/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chip.h -------------------------------------------------------------------------------- /fw_main/chocdoom/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/am_map.c -------------------------------------------------------------------------------- /fw_main/chocdoom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/am_map.h -------------------------------------------------------------------------------- /fw_main/chocdoom/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/config.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_englsh.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_event.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_event.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_items.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_items.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_iwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_iwad.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_iwad.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_loop.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_loop.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_main.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_main.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_mode.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_mode.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_net.c -------------------------------------------------------------------------------- /fw_main/chocdoom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_player.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_textur.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_think.h -------------------------------------------------------------------------------- /fw_main/chocdoom/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/d_ticcmd.h -------------------------------------------------------------------------------- /fw_main/chocdoom/deh_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/deh_main.h -------------------------------------------------------------------------------- /fw_main/chocdoom/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/deh_misc.h -------------------------------------------------------------------------------- /fw_main/chocdoom/deh_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/deh_str.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doom.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomdata.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomdef.c -------------------------------------------------------------------------------- /fw_main/chocdoom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomdef.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomfeatures.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomkeys.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomstat.c -------------------------------------------------------------------------------- /fw_main/chocdoom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomstat.h -------------------------------------------------------------------------------- /fw_main/chocdoom/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/doomtype.h -------------------------------------------------------------------------------- /fw_main/chocdoom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/dstrings.c -------------------------------------------------------------------------------- /fw_main/chocdoom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/dstrings.h -------------------------------------------------------------------------------- /fw_main/chocdoom/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/dummy.c -------------------------------------------------------------------------------- /fw_main/chocdoom/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/f_finale.c -------------------------------------------------------------------------------- /fw_main/chocdoom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/f_finale.h -------------------------------------------------------------------------------- /fw_main/chocdoom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/f_wipe.c -------------------------------------------------------------------------------- /fw_main/chocdoom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/f_wipe.h -------------------------------------------------------------------------------- /fw_main/chocdoom/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/g_game.c -------------------------------------------------------------------------------- /fw_main/chocdoom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/g_game.h -------------------------------------------------------------------------------- /fw_main/chocdoom/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/hu_lib.c -------------------------------------------------------------------------------- /fw_main/chocdoom/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/hu_lib.h -------------------------------------------------------------------------------- /fw_main/chocdoom/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/hu_stuff.c -------------------------------------------------------------------------------- /fw_main/chocdoom/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/hu_stuff.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_cdmus.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_cdmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_cdmus.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_endoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_endoom.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_endoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_endoom.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_joystick.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_joystick.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_main.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_scale.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_scale.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_sound.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_sound.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_swap.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_system.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_system.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_timer.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_timer.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_video.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_video.h -------------------------------------------------------------------------------- /fw_main/chocdoom/i_videohr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_videohr.c -------------------------------------------------------------------------------- /fw_main/chocdoom/i_videohr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/i_videohr.h -------------------------------------------------------------------------------- /fw_main/chocdoom/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/info.c -------------------------------------------------------------------------------- /fw_main/chocdoom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/info.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_argv.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_argv.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_bbox.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_bbox.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_cheat.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_cheat.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_config.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_config.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_controls.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_controls.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_fixed.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_fixed.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_menu.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_menu.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_misc.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_misc.h -------------------------------------------------------------------------------- /fw_main/chocdoom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_random.c -------------------------------------------------------------------------------- /fw_main/chocdoom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/m_random.h -------------------------------------------------------------------------------- /fw_main/chocdoom/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/memio.c -------------------------------------------------------------------------------- /fw_main/chocdoom/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/memio.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_client.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_dedicated.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_defs.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_gui.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_io.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_loop.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_query.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_sdl.h -------------------------------------------------------------------------------- /fw_main/chocdoom/net_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/net_server.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_ceilng.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_doors.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_enemy.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_floor.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_inter.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_inter.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_lights.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_local.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_map.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_maputl.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_mobj.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_mobj.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_plats.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_pspr.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_pspr.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_saveg.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_saveg.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_setup.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_setup.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_sight.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_spec.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_spec.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_switch.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_telept.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_tick.c -------------------------------------------------------------------------------- /fw_main/chocdoom/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_tick.h -------------------------------------------------------------------------------- /fw_main/chocdoom/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/p_user.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_bsp.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_bsp.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_data.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_data.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_defs.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_draw.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_draw.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_local.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_main.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_main.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_plane.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_plane.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_segs.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_segs.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_sky.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_sky.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_state.h -------------------------------------------------------------------------------- /fw_main/chocdoom/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_things.c -------------------------------------------------------------------------------- /fw_main/chocdoom/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/r_things.h -------------------------------------------------------------------------------- /fw_main/chocdoom/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/s_sound.c -------------------------------------------------------------------------------- /fw_main/chocdoom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/s_sound.h -------------------------------------------------------------------------------- /fw_main/chocdoom/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/sha1.c -------------------------------------------------------------------------------- /fw_main/chocdoom/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/sha1.h -------------------------------------------------------------------------------- /fw_main/chocdoom/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/sounds.c -------------------------------------------------------------------------------- /fw_main/chocdoom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/sounds.h -------------------------------------------------------------------------------- /fw_main/chocdoom/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/st_lib.c -------------------------------------------------------------------------------- /fw_main/chocdoom/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/st_lib.h -------------------------------------------------------------------------------- /fw_main/chocdoom/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/st_stuff.c -------------------------------------------------------------------------------- /fw_main/chocdoom/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/st_stuff.h -------------------------------------------------------------------------------- /fw_main/chocdoom/statdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/statdump.c -------------------------------------------------------------------------------- /fw_main/chocdoom/statdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/statdump.h -------------------------------------------------------------------------------- /fw_main/chocdoom/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/tables.c -------------------------------------------------------------------------------- /fw_main/chocdoom/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/tables.h -------------------------------------------------------------------------------- /fw_main/chocdoom/v_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/v_patch.h -------------------------------------------------------------------------------- /fw_main/chocdoom/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/v_video.c -------------------------------------------------------------------------------- /fw_main/chocdoom/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/v_video.h -------------------------------------------------------------------------------- /fw_main/chocdoom/w_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_checksum.c -------------------------------------------------------------------------------- /fw_main/chocdoom/w_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_checksum.h -------------------------------------------------------------------------------- /fw_main/chocdoom/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_file.c -------------------------------------------------------------------------------- /fw_main/chocdoom/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_file.h -------------------------------------------------------------------------------- /fw_main/chocdoom/w_file_stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_file_stdc.c -------------------------------------------------------------------------------- /fw_main/chocdoom/w_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_main.c -------------------------------------------------------------------------------- /fw_main/chocdoom/w_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_main.h -------------------------------------------------------------------------------- /fw_main/chocdoom/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_merge.h -------------------------------------------------------------------------------- /fw_main/chocdoom/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_wad.c -------------------------------------------------------------------------------- /fw_main/chocdoom/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/w_wad.h -------------------------------------------------------------------------------- /fw_main/chocdoom/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/wi_stuff.c -------------------------------------------------------------------------------- /fw_main/chocdoom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/wi_stuff.h -------------------------------------------------------------------------------- /fw_main/chocdoom/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/z_zone.c -------------------------------------------------------------------------------- /fw_main/chocdoom/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/chocdoom/z_zone.h -------------------------------------------------------------------------------- /fw_main/de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/de.c -------------------------------------------------------------------------------- /fw_main/de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/de.h -------------------------------------------------------------------------------- /fw_main/de_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/de_priv.h -------------------------------------------------------------------------------- /fw_main/de_scaler_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/de_scaler_table.c -------------------------------------------------------------------------------- /fw_main/de_scaler_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/de_scaler_table.h -------------------------------------------------------------------------------- /fw_main/diskimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/diskimg.c -------------------------------------------------------------------------------- /fw_main/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/diskio.c -------------------------------------------------------------------------------- /fw_main/dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/dmac.c -------------------------------------------------------------------------------- /fw_main/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/dmac.h -------------------------------------------------------------------------------- /fw_main/doom_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/doom_task.c -------------------------------------------------------------------------------- /fw_main/doom_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/doom_task.h -------------------------------------------------------------------------------- /fw_main/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/event.h -------------------------------------------------------------------------------- /fw_main/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/ffconf.h -------------------------------------------------------------------------------- /fw_main/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/fifo.c -------------------------------------------------------------------------------- /fw_main/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/fifo.h -------------------------------------------------------------------------------- /fw_main/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/gpio.c -------------------------------------------------------------------------------- /fw_main/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/gpio.h -------------------------------------------------------------------------------- /fw_main/gr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/gr.c -------------------------------------------------------------------------------- /fw_main/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/gr.h -------------------------------------------------------------------------------- /fw_main/hid_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/hid_app.c -------------------------------------------------------------------------------- /fw_main/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/irq.c -------------------------------------------------------------------------------- /fw_main/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/irq.h -------------------------------------------------------------------------------- /fw_main/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/led.c -------------------------------------------------------------------------------- /fw_main/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/led.h -------------------------------------------------------------------------------- /fw_main/lzg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/lzg.h -------------------------------------------------------------------------------- /fw_main/lzgmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/lzgmini.c -------------------------------------------------------------------------------- /fw_main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/main.c -------------------------------------------------------------------------------- /fw_main/memmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/memmgr.c -------------------------------------------------------------------------------- /fw_main/memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/memmgr.h -------------------------------------------------------------------------------- /fw_main/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/mmu.c -------------------------------------------------------------------------------- /fw_main/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/mmu.h -------------------------------------------------------------------------------- /fw_main/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/openocd.cfg -------------------------------------------------------------------------------- /fw_main/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/platform.h -------------------------------------------------------------------------------- /fw_main/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/random.c -------------------------------------------------------------------------------- /fw_main/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/random.h -------------------------------------------------------------------------------- /fw_main/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/start.S -------------------------------------------------------------------------------- /fw_main/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/start.sh -------------------------------------------------------------------------------- /fw_main/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/syscalls.c -------------------------------------------------------------------------------- /fw_main/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/syscalls.h -------------------------------------------------------------------------------- /fw_main/tcon_lcd-lvds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/tcon_lcd-lvds.c -------------------------------------------------------------------------------- /fw_main/tcon_lcd-rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/tcon_lcd-rgb.c -------------------------------------------------------------------------------- /fw_main/tcon_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/tcon_lcd.h -------------------------------------------------------------------------------- /fw_main/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/timer.c -------------------------------------------------------------------------------- /fw_main/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/timer.h -------------------------------------------------------------------------------- /fw_main/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/tusb_config.h -------------------------------------------------------------------------------- /fw_main/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/twi.c -------------------------------------------------------------------------------- /fw_main/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/twi.h -------------------------------------------------------------------------------- /fw_main/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/uart.c -------------------------------------------------------------------------------- /fw_main/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/uart.h -------------------------------------------------------------------------------- /fw_main/usb_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/usb_task.c -------------------------------------------------------------------------------- /fw_main/usb_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/fw_main/usb_task.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cachel1_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cachel1_armv7.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_armv81mml.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm35p.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm55.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_cm85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_cm85.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/core_starmc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/core_starmc1.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/pac_armv81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/pac_armv81.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/pmu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/pmu_armv8.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Template/ARMv8-M/main_s.c -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core/Template/ARMv8-M/tz_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core/Template/ARMv8-M/tz_context.c -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_cp15.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/core_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/core_ca.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Include/irq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Include/irq_ctrl.h -------------------------------------------------------------------------------- /lib/CMSIS_5/CMSIS/Core_A/Source/irq_ctrl_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/CMSIS_5/CMSIS/Core_A/Source/irq_ctrl_gic.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/CODEOWNERS -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/SECURITY.md -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/lexicon.txt -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/uncrustify.cfg -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.github/workflows/ci.yml -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/.gitmodules -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/CMakeLists.txt -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/History.txt -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/LICENSE.md -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/Quick_Start_Guide.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/Quick_Start_Guide.url -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/README.md -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/croutine.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/event_groups.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/FreeRTOS.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/StackMacros.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/atomic.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/croutine.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/event_groups.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/list.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/message_buffer.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/mpu_prototypes.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/mpu_wrappers.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/portable.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/projdefs.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/queue.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/semphr.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/stack_macros.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/stdint.readme -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/stream_buffer.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/task.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/include/timers.h -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/list.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/manifest.yml -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/GCC/ARM_CA9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/GCC/ARM_CA9/port.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/ReadMe.url -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/heap_1.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/heap_2.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/portable/MemMang/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/portable/MemMang/heap_5.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/queue.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/stream_buffer.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/tasks.c -------------------------------------------------------------------------------- /lib/FreeRTOS-Kernel-main/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/FreeRTOS-Kernel-main/timers.c -------------------------------------------------------------------------------- /lib/aw/aw_t113s2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/aw/aw_t113s2.h -------------------------------------------------------------------------------- /lib/ff/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/ff/diskio.h -------------------------------------------------------------------------------- /lib/ff/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/ff/ff.c -------------------------------------------------------------------------------- /lib/ff/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/ff/ff.h -------------------------------------------------------------------------------- /lib/ff/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/ff/ffsystem.c -------------------------------------------------------------------------------- /lib/ff/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/ff/ffunicode.c -------------------------------------------------------------------------------- /lib/tinyprintf/LICENSE.BSD-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/LICENSE.BSD-new -------------------------------------------------------------------------------- /lib/tinyprintf/LICENSE.LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/LICENSE.LGPL-2.1 -------------------------------------------------------------------------------- /lib/tinyprintf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/Makefile -------------------------------------------------------------------------------- /lib/tinyprintf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/README -------------------------------------------------------------------------------- /lib/tinyprintf/tinyprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/tinyprintf.c -------------------------------------------------------------------------------- /lib/tinyprintf/tinyprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyprintf/tinyprintf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.gitattributes -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/pull_request_template.md -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_aarch64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_aarch64.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_arm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_arm.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_esp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_esp.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_msp430.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_msp430.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_renesas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_renesas.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/build_riscv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/build_riscv.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.github/workflows/trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.github/workflows/trigger.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.gitignore -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.gitmodules -------------------------------------------------------------------------------- /lib/tinyusb-ohci/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/.readthedocs.yaml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/LICENSE -------------------------------------------------------------------------------- /lib/tinyusb-ohci/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/README.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/assets/logo.svg -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/assets/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/assets/stack.svg -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/conf.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/contributing/code_of_conduct.rst: -------------------------------------------------------------------------------- 1 | ../../CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/contributing/index.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/contributing/porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/contributing/porting.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/contributing/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/contributing/structure.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/index.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/info/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/info/changelog.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/info/contributors.rst: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTORS.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/info/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/info/index.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/info/uses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/info/uses.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/reference/concurrency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/reference/concurrency.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/reference/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/reference/getting_started.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/reference/index.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/reference/supported.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/reference/supported.rst -------------------------------------------------------------------------------- /lib/tinyusb-ohci/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/docs/requirements.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/99-tinyusb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/99-tinyusb.rules -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/audio_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/audio_test/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/audio_test/skip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/audio_test/skip.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/board_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/board_test/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/cdc_msc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/cdc_msc/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/cdc_msc/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/cdc_msc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/cdc_msc/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/cdc_msc_freertos/.skip.MCU_F1C100S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dfu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/dfu/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dfu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/dfu/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dfu/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:TM4C123 2 | mcu:BCM2835 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dfu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/dfu/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dfu_runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/dfu_runtime/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/dynamic_configuration/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/hid_composite_freertos/.skip.MCU_F1C100S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/midi_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/midi_test/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/midi_test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/midi_test/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/msc_dual_lun/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 2 | mcu:MKL25ZXX -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/usbtmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/usbtmc/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/usbtmc/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:BCM2835 2 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/usbtmc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/usbtmc/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/usbtmc/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/usbtmc/src/main.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/usbtmc/visaQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/device/usbtmc/visaQuery.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/device/video_capture/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:MSP430x5xx 2 | mcu:SAMD11 -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/dual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/dual/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/bare_api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/bare_api/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/bare_api/only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/bare_api/only.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/bare_api/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/bare_api/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/cdc_msc_hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/cdc_msc_hid/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/cdc_msc_hid/only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/cdc_msc_hid/only.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/host/cdc_msc_hid/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/host/cdc_msc_hid/src/main.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/make.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/examples/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/examples/rules.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ansi_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ansi_escape.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/board.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/board_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/board_mcu.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/broadcom_32bit/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/broadcom_32bit/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/broadcom_32bit/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/broadcom_32bit/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/broadcom_64bit/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/broadcom_64bit/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/broadcom_64bit/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/broadcom_64bit/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/brtmm90x/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/brtmm90x/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/brtmm90x/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/brtmm90x/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/d5035_01/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/d5035_01/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/d5035_01/d5035_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/d5035_01/d5035_01.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/d5035_01/same51j19a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/d5035_01/same51j19a_flash.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/da14695_dk_usb/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/da14695_dk_usb/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/da14695_dk_usb/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/da14695_dk_usb/da1469x.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/da1469x_dk_pro/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/da1469x_dk_pro/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/da1469x_dk_pro/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/da1469x_dk_pro/da1469x.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4088qs/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4088qs/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4088qs/ea4088qs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4088qs/ea4088qs.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4088qs/lpc4088.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4088qs/lpc4088.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4357/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4357/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4357/ea4357.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4357/ea4357.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4357/lpc4357.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4357/lpc4357.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4357/pca9532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4357/pca9532.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ea4357/pca9532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ea4357/pca9532.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s2/boards/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s2/boards/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s2/boards/esp32s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s2/boards/esp32s2.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s2/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s2/family.cmake -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s2/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s2/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s3/boards/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s3/boards/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s3/boards/esp32s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s3/boards/esp32s3.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s3/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s3/family.cmake -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/esp32s3/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/esp32s3/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/f1c100s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/f1c100s/README.md -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/f1c100s/board.h: -------------------------------------------------------------------------------- 1 | // Nothing valuable here -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/f1c100s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/f1c100s/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/f1c100s/f1c100s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/f1c100s/f1c100s.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/family_support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/family_support.cmake -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/boards/fomu/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/boards/fomu/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/boards/fomu/board.mk: -------------------------------------------------------------------------------- 1 | # place holder -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/crt0-vexriscv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/crt0-vexriscv.S -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/dfu.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/fomu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/fomu.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/fomu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/fomu.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/include/csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/include/csr.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/include/hw/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/include/hw/common.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/include/irq.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/output_format.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("elf32-littleriscv") 2 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/fomu/regions.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/fomu/regions.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/frdm_k32l2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/frdm_k32l2b/frdm_k32l2b.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/frdm_kl25z/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/frdm_kl25z/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/frdm_kl25z/frdm_kl25z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/frdm_kl25z/frdm_kl25z.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/gd32vf103/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/gd32vf103/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/gd32vf103/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/gd32vf103/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/gd32vf103/system_gd32vf103.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/gd32vf103/system_gd32vf103.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/imxrt/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/imxrt/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/imxrt/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/imxrt/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/kuiic/K32L2B31xxxxA_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/kuiic/K32L2B31xxxxA_flash.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/kuiic/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/kuiic/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/kuiic/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/kuiic/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/kuiic/kuiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/kuiic/kuiic.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc15/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc15/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc15/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc15/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc18/boards/mcb1800/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc18/boards/mcb1800/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc18/boards/mcb1800/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc18/boards/mcb1800/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc18/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc18/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc18/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc18/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc54/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc54/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc54/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc54/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc55/boards/mcu_link/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc55/boards/mcu_link/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc55/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc55/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpc55/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpc55/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso11u37/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso11u37/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso11u37/lpc11u37.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso11u37/lpc11u37.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso11u68/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso11u68/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso11u68/lpc11u68.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso11u68/lpc11u68.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso1347/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso1347/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso1347/lpc1347.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso1347/lpc1347.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso1769/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso1769/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso1769/lpc1769.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso1769/lpc1769.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/lpcxpresso51u68/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/lpcxpresso51u68/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/mbed1768/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/mbed1768/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/mbed1768/lpc1768.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/mbed1768/lpc1768.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/mbed1768/mbed1768.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/mbed1768/mbed1768.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/mm32/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/mm32/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/msp430/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/msp430/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/msp430/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/msp430/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/msp432e4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/msp432e4/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/msp432e4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/msp432e4/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ngx4330/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ngx4330/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ngx4330/ngx4330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ngx4330/ngx4330.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/ngx4330/ngx4330.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/ngx4330/ngx4330.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10056/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10056/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10056/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10056/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10059/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10059/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10059/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10059/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10100/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10100/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10100/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/boards/pca10100/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nrf/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nrf/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nutiny_nuc121s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nutiny_nuc121s/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nutiny_nuc125s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nutiny_nuc125s/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nutiny_nuc126v/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nutiny_nuc126v/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nutiny_sdk_nuc120/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nutiny_sdk_nuc120/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/nutiny_sdk_nuc505/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/nutiny_sdk_nuc505/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/pic32mz/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/pic32mz/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/pic32mz/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/pic32mz/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rp2040/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.cmake: -------------------------------------------------------------------------------- 1 | set(PICO_BOARD adafruit_feather_rp2040) -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/boards/adafruit_qtpy_rp2040/board.cmake: -------------------------------------------------------------------------------- 1 | set(PICO_BOARD adafruit_qtpy_rp2040) -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/boards/raspberry_pi_pico/board.cmake: -------------------------------------------------------------------------------- 1 | set(PICO_BOARD pico) -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rp2040/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rp2040/family.cmake -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rp2040/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rp2040/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rp2040/pico_sdk_import.cmake -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rx/boards/gr_citrus/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rx/boards/gr_citrus/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rx/boards/gr_citrus/hwinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rx/boards/gr_citrus/hwinit.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/rx/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/rx/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd11/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd11/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd11/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd11/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/qtpy.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd21/boards/qtpy/qtpy.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd21/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd21/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd21/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd21/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd51/boards/pybadge/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd51/boards/pybadge/board.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd51/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd51/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samd51/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samd51/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/same54xplainedpro/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/same54xplainedpro/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/same70_qmtech/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/same70_qmtech/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/same70_qmtech/same70_qmtech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/same70_qmtech/same70_qmtech.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/same70_xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/same70_xplained/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/samg55xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/samg55xplained/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/saml2x/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/saml2x/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/saml2x/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/saml2x/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/sltb009a/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/sltb009a/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/sltb009a/sltb009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/sltb009a/sltb009a.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/spresense/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/spresense/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/spresense/board_spresense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/spresense/board_spresense.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f0/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f0/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f0/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f0/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f0/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f0/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f1/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f1/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f1/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f1/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f1/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f1/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f207nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f207nucleo/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f303disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f303disco/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f4/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f4/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f7/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f7/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32f7/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32f7/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32g4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32g4/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32g4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32g4/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32g4/stm32g4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32g4/stm32g4xx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32h7/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32h7/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32h7/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32h7/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32h7/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32h7/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32l0538disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32l0538disco/board.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32l4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32l4/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32l4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32l4/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32l4/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32l4/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32wb/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32wb/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32wb/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32wb/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/stm32wb/stm32wbxx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/stm32wb/stm32wbxx_hal_conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/tm4c123/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/tm4c123/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/tm4c123/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/tm4c123/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/xmc4000/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/xmc4000/family.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/bsp/xmc4000/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/bsp/xmc4000/family.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/bridgetek/ft9xx/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/bridgetek/ft9xx/Readme.md -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/dialog/README.md -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/dialog/da1469x/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/dialog/da1469x/da1469x.ld -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/dialog/da1469x/src/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/dialog/da1469x/src/hal_gpio.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/nordic/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/nordic/nrfx_config.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/nordic/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/nordic/nrfx_glue.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/nordic/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/nordic/nrfx_log.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/.gitignore -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/Makefile -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/clefia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/clefia.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/clefia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/clefia.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/elf32.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/mkspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/mkspk.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/mkspk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/mkspk/mkspk.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/hw/mcu/sony/cxd56/tools/xmodem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/hw/mcu/sony/cxd56/tools/xmodem.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/SEGGER_RTT/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/SEGGER_RTT/License.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/SEGGER_RTT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/SEGGER_RTT/README.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/SEGGER_RTT/RTT/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/00readme.txt -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/ccsbcs.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/diskio.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/diskio.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/ff.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/ff.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/ffconf.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/fatfs/integer.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/dhserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/dhserver.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/dhserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/dhserver.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/dnserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/dnserver.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/dnserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/dnserver.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/ndis.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/rndis_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/rndis_protocol.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/lib/networking/rndis_reports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/lib/networking/rndis_reports.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/pkg.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/repository.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/audio/audio.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/audio/audio_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/audio/audio_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/audio/audio_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/audio/audio_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/bth/bth_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/bth/bth_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/bth/bth_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/bth/bth_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_host.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_host.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_rndis.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_rndis_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_rndis_host.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/cdc/cdc_rndis_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/cdc/cdc_rndis_host.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/dfu/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/dfu/dfu.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/dfu/dfu_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/dfu/dfu_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/dfu/dfu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/dfu/dfu_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/dfu/dfu_rt_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/dfu/dfu_rt_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/dfu/dfu_rt_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/dfu/dfu_rt_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/hid/hid.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/hid/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/hid/hid_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/hid/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/hid/hid_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/hid/hid_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/hid/hid_host.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/hid/hid_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/hid/hid_host.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/midi/midi.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/midi/midi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/midi/midi_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/midi/midi_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/midi/midi_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/msc/msc.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/msc/msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/msc/msc_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/msc/msc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/msc/msc_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/msc/msc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/msc/msc_host.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/msc/msc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/msc/msc_host.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/net/ecm_rndis_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/net/ecm_rndis_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/net/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/net/ncm.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/net/ncm_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/net/ncm_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/net/net_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/net/net_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/usbtmc/usbtmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/usbtmc/usbtmc.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/usbtmc/usbtmc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/usbtmc/usbtmc_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/usbtmc/usbtmc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/usbtmc/usbtmc_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/vendor/vendor_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/vendor/vendor_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/vendor/vendor_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/vendor/vendor_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/vendor/vendor_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/vendor/vendor_host.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/vendor/vendor_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/vendor/vendor_host.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/video/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/video/video.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/video/video_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/video/video_device.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/class/video/video_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/class/video/video_device.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_common.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_compiler.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_debug.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_mcu.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_private.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_timeout.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_types.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/common/tusb_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/common/tusb_verify.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/device/dcd.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/device/usbd.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/device/usbd.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/device/usbd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/device/usbd_control.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/hcd.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/hub.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/hub.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/usbh.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/usbh.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/host/usbh_classdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/host/usbh_classdriver.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_freertos.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_none.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_pico.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_rtthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_rtthread.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/osal/osal_rtx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/osal/osal_rtx4.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/ehci/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/ehci/ehci.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/ehci/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/ehci/ehci.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/ehci/ehci_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/ehci/ehci_api.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/mentor/musb/dcd_musb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/mentor/musb/dcd_musb.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/mentor/musb/hcd_musb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/mentor/musb/hcd_musb.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/mentor/musb/musb_tm4c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/mentor/musb/musb_tm4c.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/mentor/musb/musb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/mentor/musb/musb_type.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/nxp/khci/dcd_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/nxp/khci/dcd_khci.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/nxp/khci/hcd_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/nxp/khci/hcd_khci.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/ohci/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/ohci/ohci.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/ohci/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/ohci/ohci.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/renesas/usba/dcd_usba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/renesas/usba/dcd_usba.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/renesas/usba/hcd_usba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/renesas/usba/hcd_usba.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/sony/cxd56/dcd_cxd56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/sony/cxd56/dcd_cxd56.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/portable/sunxi/musb_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/portable/sunxi/musb_def.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/tusb.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/tusb.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/src/tusb_option.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/ceedling -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/project.yml -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/test/device/usbd/test_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/test/device/usbd/test_usbd.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/test/support/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/test/support/tusb_config.h -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/test/test_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/test/test_fifo.c -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/bin/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/test/vendor/ceedling/bin/ceedling -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/plugins/bullseye/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/bar.c: -------------------------------------------------------------------------------- 1 | #include "bar.h" 2 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.c: -------------------------------------------------------------------------------- 1 | #include "zzz.h" 2 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/c_exception/release/build.info: -------------------------------------------------------------------------------- 1 | 18 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/c_exception/release/version.info: -------------------------------------------------------------------------------- 1 | 1.3.1 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/cmock/release/build.info: -------------------------------------------------------------------------------- 1 | 217 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/cmock/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.6 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/unity/release/build.info: -------------------------------------------------------------------------------- 1 | 122 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/test/vendor/ceedling/vendor/unity/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | 3 | -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/build_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/build_board.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/build_esp32sx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/build_esp32sx.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/build_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/build_family.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/build_utils.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/iar_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/iar_gen.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/iar_template.ipcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/iar_template.ipcf -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/mksunxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/mksunxi.py -------------------------------------------------------------------------------- /lib/tinyusb-ohci/tools/top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/tools/top.mk -------------------------------------------------------------------------------- /lib/tinyusb-ohci/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tinyusb-ohci/version.yml -------------------------------------------------------------------------------- /lib/tlsf/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tlsf/tlsf.c -------------------------------------------------------------------------------- /lib/tlsf/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots/allwinner_t113/HEAD/lib/tlsf/tlsf.h --------------------------------------------------------------------------------