├── .gitignore ├── LICENCE ├── Makefile ├── README ├── audio.h ├── audio_hdmi.c ├── audio_i2s.c ├── boot.S ├── cache.S ├── ccu.h ├── common.mk ├── configure.sh ├── crosstool-ng.config ├── dirent.h ├── display.c ├── display.h ├── display_filter.c ├── dma.c ├── dma.h ├── dw_hdmi.h ├── examples └── demo │ ├── Makefile │ ├── demo.c │ ├── demo_data.h │ ├── main.c │ ├── spritelayers.c │ └── spritelayers.h ├── exceptions.c ├── fatfs ├── 00history.txt ├── 00readme.txt ├── Makefile ├── README.md ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── ffsystem.c ├── ffunicode.c ├── mmc_sunxi.c └── mmcbb.c ├── fixed_addr.h ├── fs.c ├── fs.h ├── gdb ├── README ├── assembly.h ├── debug.h ├── gdbstub.c ├── gdbstub.h ├── gdbstub_jh.c ├── kernel.h ├── printk.c ├── printk.h ├── regs.h ├── string.c ├── string.h ├── types.h └── tzvecs.S ├── h264enc ├── README ├── audio_in.c ├── audio_in.h ├── h264avi.c ├── h264avi.h ├── h264enc.c ├── h264enc.h ├── main.c ├── ve.c └── ve.h ├── init_comms.c ├── interrupts.c ├── interrupts.h ├── jailgdb.c ├── lib-h3 ├── .gitignore ├── E131 │ ├── .classpath │ ├── .project │ ├── DiscoverySniffer.jar │ ├── DiscoverySniffer.jardesc │ ├── README.md │ ├── bin │ │ └── org │ │ │ └── raspberrypi │ │ │ └── dmx │ │ │ └── DiscoverySniffer.class │ └── src │ │ └── org │ │ └── raspberrypi │ │ └── dmx │ │ └── DiscoverySniffer.java ├── LICENSE ├── README.md ├── RemoteConfigUI │ ├── .classpath │ ├── .project │ └── src │ │ └── org │ │ └── orangepi │ │ └── dmx │ │ ├── About.java │ │ ├── BackupConfiguration.java │ │ ├── BroadcastSelect.java │ │ ├── FirmwareInstallation.java │ │ ├── FirstNetworkInterface.java │ │ ├── JTextFieldLimit.java │ │ ├── LTCGenerator.java │ │ ├── MIDI.java │ │ ├── MyDefaultMutableTreeNode.java │ │ ├── NetworkInterfaces.java │ │ ├── OrangePi.java │ │ ├── RemoteConfig.java │ │ ├── RestoreConfiguration.java │ │ ├── RgbDisplay.java │ │ ├── SystemTime.java │ │ ├── TCNet.java │ │ ├── TFTPClient.java │ │ ├── UdpSerial.java │ │ └── package-info.java ├── firmware-template │ ├── .project │ ├── Rules.mk │ ├── lib │ │ └── Rules.mk │ ├── memmap │ └── vectors.s ├── h3-firmware-template │ ├── .project │ ├── Rules.mk │ ├── lib │ │ └── Rules.mk │ ├── memmap │ └── vectors.S ├── include │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── algorithm │ ├── arpa │ │ └── inet.h │ ├── assert.h │ ├── cassert │ ├── cstddef │ ├── ctype.h │ ├── dirent.h │ ├── errno.h │ ├── limits.h │ ├── math.h │ ├── net │ │ └── if.h │ ├── netinet │ │ └── in.h │ ├── poll.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── time.h │ │ └── timerfd.h │ ├── time.h │ ├── unistd.h │ └── uuid │ │ └── uuid.h ├── lib-arm │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ ├── include │ │ └── arm │ │ │ ├── arm.h │ │ │ ├── arm_dump.h │ │ │ ├── pl011.h │ │ │ ├── spinlock.h │ │ │ └── synchronize.h │ └── src │ │ ├── cache-v7.S │ │ ├── debug │ │ ├── arm_dump_memmap.c │ │ ├── arm_dump_page_table.c │ │ └── arm_dump_vector_table.c │ │ ├── fiq.c │ │ ├── irq.c │ │ ├── memcpy_blk.S │ │ ├── spinlock.S │ │ └── vfp.c ├── lib-artnet │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.core.resources.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── artnet.h │ │ ├── artnet4handler.h │ │ ├── artnetconst.h │ │ ├── artnetcontroller.h │ │ ├── artnetdisplay.h │ │ ├── artnetdmx.h │ │ ├── artnetipprog.h │ │ ├── artnetmsgconst.h │ │ ├── artnetnode.h │ │ ├── artnetparams.h │ │ ├── artnetparamsconst.h │ │ ├── artnetpolltable.h │ │ ├── artnetrdm.h │ │ ├── artnetstore.h │ │ ├── artnettimecode.h │ │ ├── artnettimesync.h │ │ ├── artnettrigger.h │ │ └── packets.h │ └── src │ │ ├── artnet4handler.cpp │ │ ├── artnetconst.cpp │ │ ├── artnetcontroller.cpp │ │ ├── artnetdiag.cpp │ │ ├── artnetipprog.cpp │ │ ├── artnetmsgconst.cpp │ │ ├── artnetnode.cpp │ │ ├── artnetnode_internal.h │ │ ├── artnetnodehandledmxin.cpp │ │ ├── artnetnodeprint.cpp │ │ ├── artnetparams.cpp │ │ ├── artnetparamsconst.cpp │ │ ├── artnetparamsdump.cpp │ │ ├── artnetparamssave.cpp │ │ ├── artnetparamsset.cpp │ │ ├── artnetpolltable.cpp │ │ ├── artnetrdm.cpp │ │ ├── artnettimecode.cpp │ │ ├── artnettimesync.cpp │ │ └── artnettrigger.cpp ├── lib-artnet4 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── artnet4node.h │ │ ├── artnet4params.h │ │ └── artnet4paramsconst.h │ └── src │ │ ├── artnet4node.cpp │ │ ├── artnet4params.cpp │ │ ├── artnet4paramsconst.cpp │ │ ├── artnet4paramssave.cpp │ │ └── artnet4paramsset.cpp ├── lib-artnethandlers │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── artnetreboot.h │ │ ├── displayudfhandler.h │ │ ├── ipprog.h │ │ └── timesync.h │ └── src │ │ ├── ipprog.cpp │ │ └── timesync.cpp ├── lib-bcm2835 │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.core.resources.prefs │ ├── Makefile │ ├── README.md │ ├── arm │ │ ├── arm.c │ │ ├── mmu.c │ │ └── smp.c │ ├── device │ │ ├── emmc │ │ │ ├── README.md │ │ │ ├── sd.c │ │ │ └── sd.h │ │ └── fb │ │ │ ├── README.md │ │ │ └── fb.c │ ├── include │ │ ├── arm │ │ │ └── smp.h │ │ ├── bcm2835.h │ │ ├── bcm2835_aux.h │ │ ├── bcm2835_aux_spi.h │ │ ├── bcm2835_emmc.h │ │ ├── bcm2835_gpio.h │ │ ├── bcm2835_i2c.h │ │ ├── bcm2835_led.h │ │ ├── bcm2835_mailbox.h │ │ ├── bcm2835_pl011.h │ │ ├── bcm2835_rng.h │ │ ├── bcm2835_spi.h │ │ ├── bcm2835_st.h │ │ ├── bcm2835_uart.h │ │ ├── bcm2835_vc.h │ │ ├── bcm2835_wdog.h │ │ ├── bcm2837_gpio_virt.h │ │ ├── device │ │ │ ├── fb.h │ │ │ └── sdhci.h │ │ └── irq_timer.h │ └── src │ │ ├── bcm2835_aux_spi.c │ │ ├── bcm2835_gpio.c │ │ ├── bcm2835_gpio_fsel.S │ │ ├── bcm2835_i2c.c │ │ ├── bcm2835_led.c │ │ ├── bcm2835_mailbox.c │ │ ├── bcm2835_pl011.c │ │ ├── bcm2835_rng.c │ │ ├── bcm2835_spi.c │ │ ├── bcm2835_spi_transfer.c │ │ ├── bcm2835_spi_write.c │ │ ├── bcm2835_spi_writenb.c │ │ ├── bcm2835_st_read.S │ │ ├── bcm2835_uart.c │ │ ├── bcm2835_vc.c │ │ ├── bcm2835_wdog.c │ │ ├── bcm2837_gpio_virt.c │ │ ├── irq_timer.c │ │ └── udelay.c ├── lib-c++ │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ └── src │ │ ├── delete.cpp │ │ ├── new.cpp │ │ └── purecall.cpp ├── lib-c │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ └── src │ │ ├── asctime.c │ │ ├── assert.c │ │ ├── errno.c │ │ ├── h3 │ │ ├── clock.c │ │ └── time.c │ │ ├── inet_aton.c │ │ ├── log.c │ │ ├── malloc.c │ │ ├── memcpy.c │ │ ├── memset.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── random.c │ │ └── time.c ├── lib-debug │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ └── debug.h │ └── src │ │ ├── debug.cpp │ │ ├── debug_dump.c │ │ ├── debug_exception.c │ │ └── debug_print_bits.c ├── lib-device │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── examples │ │ ├── Makefile │ │ └── max7219matrix.cpp │ ├── include │ │ ├── bh1750.h │ │ ├── bw.h │ │ ├── bwspi7fets.h │ │ ├── bwspidimmer.h │ │ ├── bwspidio.h │ │ ├── bwspilcd.h │ │ ├── bwspirelay.h │ │ ├── htu21d.h │ │ ├── ina219.h │ │ ├── max7219.h │ │ ├── max72197segment.h │ │ ├── max7219matrix.h │ │ ├── mcp23s08.h │ │ ├── mcp23s17.h │ │ ├── mcp23x17.h │ │ ├── mcp48x2.h │ │ ├── mcp49x2.h │ │ ├── mcp9808.h │ │ ├── sc16is740.h │ │ ├── sc16is7x0.h │ │ ├── si5351a.h │ │ └── si7021.h │ └── src │ │ ├── bh1750.cpp │ │ ├── font_cp437.c │ │ ├── font_cp437.h │ │ ├── htu21d.cpp │ │ ├── ina219.cpp │ │ ├── max7219matrix.cpp │ │ ├── mcp9808.cpp │ │ ├── sc16is740.cpp │ │ ├── si5351a.cpp │ │ └── si7021.cpp ├── lib-display │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── examples │ │ ├── Makefile │ │ ├── detect.cpp │ │ ├── lcd1602.cpp │ │ ├── lcd2004.cpp │ │ ├── micros.c │ │ ├── oled128x32.cpp │ │ ├── ssd1306.cpp │ │ └── ssd1311.cpp │ ├── include │ │ ├── display.h │ │ ├── display7segment.h │ │ ├── displayhandler.h │ │ ├── displayset.h │ │ ├── lcdbw.h │ │ ├── ssd1306.h │ │ ├── ssd1311.h │ │ └── tc1602.h │ └── src │ │ ├── display.cpp │ │ ├── display7segment.cpp │ │ ├── lcdbw.cpp │ │ ├── ssd1306.cpp │ │ ├── ssd1311.cpp │ │ └── tc1602.cpp ├── lib-displayudf │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── displayudf.h │ │ ├── displayudfnetworkhandler.h │ │ ├── displayudfparams.h │ │ └── displayudfparamsconst.h │ └── src │ │ ├── displayudf.cpp │ │ ├── displayudfparams.cpp │ │ ├── displayudfparamsconst.cpp │ │ ├── displayudfshowartnet.cpp │ │ └── displayudfshowe131.cpp ├── lib-e131 │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.core.resources.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── e117.h │ │ ├── e117const.h │ │ ├── e131.h │ │ ├── e131bridge.h │ │ ├── e131bridgeconst.h │ │ ├── e131controller.h │ │ ├── e131dmx.h │ │ ├── e131msgconst.h │ │ ├── e131packets.h │ │ ├── e131params.h │ │ ├── e131paramsconst.h │ │ ├── e131reboot.h │ │ ├── e131sync.h │ │ └── e131uuid.h │ └── src │ │ ├── e117const.cpp │ │ ├── e131bridge.cpp │ │ ├── e131bridgeconst.cpp │ │ ├── e131bridgediscoverypacket.cpp │ │ ├── e131bridgehandledmxin.cpp │ │ ├── e131bridgeprint.cpp │ │ ├── e131controller.cpp │ │ ├── e131msgconst.cpp │ │ ├── e131params.cpp │ │ ├── e131paramsconst.cpp │ │ ├── e131paramsdump.cpp │ │ ├── e131paramssave.cpp │ │ ├── e131paramsset.cpp │ │ └── e131uuid.cpp ├── lib-gps │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── include │ │ ├── gps.h │ │ ├── gpsconst.h │ │ ├── gpsparams.h │ │ ├── gpsparamsconst.h │ │ └── gpstimeclient.h │ └── src │ │ ├── gps.cpp │ │ ├── gpsconst.cpp │ │ ├── gpsdump.cpp │ │ ├── gpsparams.cpp │ │ ├── gpsparamsconst.cpp │ │ ├── gpsparamsdump.cpp │ │ ├── gpsprint.cpp │ │ ├── gpsstatic.cpp │ │ └── h3 │ │ ├── gpstimeclient.cpp │ │ └── gpsuart.cpp ├── lib-h3 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── arm │ │ ├── arm.c │ │ ├── gic.c │ │ └── mmu.c │ ├── device │ │ ├── emac │ │ │ ├── emac.c │ │ │ ├── mii.h │ │ │ ├── phy.c │ │ │ └── phy.h │ │ ├── fb │ │ │ ├── display_timing.h │ │ │ ├── dw_hdmi.c │ │ │ ├── dw_hdmi.h │ │ │ ├── edid.h │ │ │ ├── fb.c │ │ │ ├── h3_de2.c │ │ │ ├── h3_de2.h │ │ │ ├── h3_de2_dump.c │ │ │ ├── h3_hdmi.c │ │ │ ├── h3_hdmi_phy_dump.c │ │ │ ├── h3_lcd.c │ │ │ ├── h3_lcdc_dump.c │ │ │ └── media_bus_format.h │ │ └── mmc │ │ │ ├── mmc.c │ │ │ ├── mmc_bsp.c │ │ │ └── mmc_internal.h │ ├── include │ │ ├── arm │ │ │ └── gic.h │ │ ├── board │ │ │ ├── h3_opi_one.h │ │ │ └── h3_opi_zero.h │ │ ├── device │ │ │ ├── emac.h │ │ │ └── fb.h │ │ ├── h3.h │ │ ├── h3_board.h │ │ ├── h3_ccu.h │ │ ├── h3_codec.h │ │ ├── h3_cpu.h │ │ ├── h3_dma.h │ │ ├── h3_gpio.h │ │ ├── h3_hs_timer.h │ │ ├── h3_i2c.h │ │ ├── h3_sid.h │ │ ├── h3_smp.h │ │ ├── h3_spi.h │ │ ├── h3_spinlock.h │ │ ├── h3_thermal.h │ │ ├── h3_timer.h │ │ ├── h3_uart0_debug.h │ │ ├── h3_watchdog.h │ │ ├── irq_timer.h │ │ ├── net │ │ │ └── net.h │ │ └── uart.h │ ├── net │ │ ├── arp.c │ │ ├── arp_cache.c │ │ ├── dhcp.c │ │ ├── dhcp_internal.h │ │ ├── icmp.c │ │ ├── igmp.c │ │ ├── ip.c │ │ ├── net.c │ │ ├── net_chksum.c │ │ ├── net_debug.h │ │ ├── net_packets.h │ │ ├── net_timers.c │ │ ├── ntp_internal.h │ │ ├── rfc3927.c │ │ ├── tftp_internal.h │ │ └── udp.c │ └── src │ │ ├── debug │ │ ├── h3_ccu_pll_dump.c │ │ ├── h3_dma_dump.c │ │ └── h3_dump_memory_mapping.c │ │ ├── h3.c │ │ ├── h3_board.c │ │ ├── h3_ccu.c │ │ ├── h3_codec.c │ │ ├── h3_cpu.c │ │ ├── h3_gpio_fsel.c │ │ ├── h3_gpio_int_cfg.c │ │ ├── h3_gpio_pud.c │ │ ├── h3_gpu.c │ │ ├── h3_hs_timer.c │ │ ├── h3_i2c.c │ │ ├── h3_memcpy.c │ │ ├── h3_sid.c │ │ ├── h3_smp.c │ │ ├── h3_spi.c │ │ ├── h3_spi_internal.h │ │ ├── h3_spinlock.c │ │ ├── h3_thermal.c │ │ ├── h3_timer.c │ │ ├── h3_uart0_debug.c │ │ ├── h3_uart0_printf.c │ │ ├── h3_usb.c │ │ ├── h3_watchdog.c │ │ ├── hardware_init.c │ │ ├── irq_timer.c │ │ └── udelay.c ├── lib-hal │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── debug │ │ ├── i2cdetect.cpp │ │ └── i2cdetect.h │ ├── ff12c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── integer.h │ │ └── option │ │ │ └── ccsbcs.c │ ├── include │ │ ├── c │ │ │ ├── h3 │ │ │ │ └── hardware.h │ │ │ ├── hardware.h │ │ │ └── rpi │ │ │ │ └── hardware.h │ │ ├── console.h │ │ ├── firmwareversion.h │ │ ├── h3 │ │ │ ├── console_fb.h │ │ │ ├── console_uart0.h │ │ │ ├── hal_api.h │ │ │ ├── hal_gpio.h │ │ │ ├── hal_i2c.h │ │ │ ├── hal_spi.h │ │ │ ├── hardware.h │ │ │ └── ledblink.h │ │ ├── hal_gpio.h │ │ ├── hal_i2c.h │ │ ├── hal_spi.h │ │ ├── hardware.h │ │ ├── hwclock.h │ │ ├── ledblink.h │ │ ├── linux │ │ │ ├── hal_api.h │ │ │ ├── hal_gpio.h │ │ │ ├── hal_i2c.h │ │ │ ├── hal_spi.h │ │ │ ├── hardware.h │ │ │ └── ledblink.h │ │ ├── rpi │ │ │ ├── console_fb.h │ │ │ ├── hal_api.h │ │ │ ├── hal_gpio.h │ │ │ ├── hal_i2c.h │ │ │ ├── hal_spi.h │ │ │ ├── hardware.h │ │ │ └── ledblink.h │ │ └── utc.h │ ├── posix │ │ └── file.c │ ├── rtc │ │ ├── hwclock.cpp │ │ ├── hwclockrtc.cpp │ │ ├── hwclockrun.cpp │ │ └── hwclockset.cpp │ └── src │ │ ├── firmwareversion.cpp │ │ ├── font.S │ │ ├── font.bin │ │ ├── h3 │ │ ├── console_fb.c │ │ ├── console_uart0.c │ │ ├── hardware.cpp │ │ ├── hardware_init.c │ │ ├── sdcard │ │ │ └── diskio.c │ │ └── sys_time.c │ │ ├── ledblink.cpp │ │ ├── linux │ │ ├── hardware.cpp │ │ ├── ledblink.cpp │ │ └── micros.c │ │ ├── rpi │ │ ├── console_fb.c │ │ ├── hardware.cpp │ │ ├── hardware_firmware.c │ │ ├── hardware_init.c │ │ ├── hardware_reboot.c │ │ ├── hardware_rtc.c │ │ ├── rtc.c │ │ ├── rtc.h │ │ ├── sdcard │ │ │ └── diskio.c │ │ └── sys_time.c │ │ └── utc.cpp ├── lib-input │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── buttonsadafruit.h │ │ ├── buttonsbw.h │ │ ├── input.h │ │ ├── inputset.h │ │ ├── ir_linux.h │ │ ├── kb_linux.h │ │ └── rotaryencoder.h │ └── src │ │ ├── buttonsadafruit.cpp │ │ ├── buttonsbw.cpp │ │ ├── linux │ │ ├── ir_linux.cpp │ │ └── kb_linux.cpp │ │ └── rotaryencoder.cpp ├── lib-jamstapl │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── IDCODE_v5.0 │ │ ├── idcode.jam │ │ └── idcode.jbc │ ├── Makefile.H3 │ ├── include │ │ ├── jamstapl.h │ │ ├── jamstaplutil.h │ │ └── jbiport.h │ ├── jbi_22 │ │ └── code │ │ │ ├── jbicomp.c │ │ │ ├── jbicomp.h │ │ │ ├── jbiexprt.h │ │ │ ├── jbijtag.c │ │ │ ├── jbijtag.h │ │ │ └── jbimain.c │ └── src │ │ ├── jamstapl.cpp │ │ └── jbistub.cpp ├── lib-l6470 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── examples │ │ ├── slush │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── get_set_param_test.cpp │ │ │ ├── get_temp.cpp │ │ │ ├── input_output.cpp │ │ │ ├── limit_switch.cpp │ │ │ ├── precise_move.cpp │ │ │ └── simple_move.cpp │ │ └── sparkfun │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SparkFunGetSetParamTest.cpp │ │ │ └── simple_move.cpp │ ├── include │ │ ├── autodriver.h │ │ ├── l6470.h │ │ ├── l6470constants.h │ │ ├── slushboard.h │ │ └── slushmotor.h │ └── src │ │ ├── autodriver.cpp │ │ ├── autodriverprint.cpp │ │ ├── l6470.cpp │ │ ├── l6470commands.cpp │ │ ├── l6470config.cpp │ │ ├── l6470dump.cpp │ │ ├── l6470support.cpp │ │ ├── slushboard.cpp │ │ ├── slushmotor.cpp │ │ └── slushtemp.cpp ├── lib-l6470dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── l6470dmxconst.h │ │ ├── l6470dmxmode.h │ │ ├── l6470dmxmode0.h │ │ ├── l6470dmxmode1.h │ │ ├── l6470dmxmode2.h │ │ ├── l6470dmxmode3.h │ │ ├── l6470dmxmode4.h │ │ ├── l6470dmxmode5.h │ │ ├── l6470dmxmode6.h │ │ ├── l6470dmxmodes.h │ │ ├── l6470params.h │ │ ├── l6470paramsconst.h │ │ ├── modeparams.h │ │ ├── modeparamsconst.h │ │ ├── modestore.h │ │ ├── motorparams.h │ │ ├── motorparamsconst.h │ │ ├── slushdmx.h │ │ ├── slushdmxparams.h │ │ ├── slushdmxparamsconst.h │ │ ├── sparkfundmx.h │ │ ├── sparkfundmxconst.h │ │ ├── sparkfundmxparams.h │ │ └── sparkfundmxparamsconst.h │ └── src │ │ ├── l6470dmxconst.cpp │ │ ├── l6470dmxmode.cpp │ │ ├── l6470dmxmode0.cpp │ │ ├── l6470dmxmode1.cpp │ │ ├── l6470dmxmode2.cpp │ │ ├── l6470dmxmode3.cpp │ │ ├── l6470dmxmode4.cpp │ │ ├── l6470dmxmode5.cpp │ │ ├── l6470dmxmode6.cpp │ │ ├── l6470dmxmodes.cpp │ │ ├── l6470dmxmodesprint.cpp │ │ ├── l6470params.cpp │ │ ├── l6470paramsconst.cpp │ │ ├── modeparams.cpp │ │ ├── modeparamsconst.cpp │ │ ├── motorparams.cpp │ │ ├── motorparamsconst.cpp │ │ ├── slushdmx.cpp │ │ ├── slushdmxparams.cpp │ │ ├── slushdmxparamsconst.cpp │ │ ├── sparkfundmx.cpp │ │ ├── sparkfundmx_internal.h │ │ ├── sparkfundmxconst.cpp │ │ ├── sparkfundmxparams.cpp │ │ ├── sparkfundmxparamsconst.cpp │ │ └── sparkfundmxprint.cpp ├── lib-lightset │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── dmxslotinfo.h │ │ ├── lightset.h │ │ ├── lightsetchain.h │ │ ├── lightsetconst.h │ │ └── lightsetdebug.h │ └── src │ │ ├── dmxslotinfo.cpp │ │ ├── lightset.cpp │ │ ├── lightsetchain.cpp │ │ ├── lightsetconst.cpp │ │ ├── lightsetdebug.cpp │ │ ├── lightsetdmx.cpp │ │ ├── lightsetgetoutputtype.cpp │ │ └── lightsetgetslotinfo.cpp ├── lib-ltc │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── h3 │ │ │ ├── artnetreader.h │ │ │ ├── ltc.h │ │ │ ├── ltcgenerator.h │ │ │ ├── ltcoutputs.h │ │ │ ├── ltcreader.h │ │ │ ├── ltcsender.h │ │ │ ├── midireader.h │ │ │ ├── rtpmidireader.h │ │ │ ├── systimereader.h │ │ │ └── tcnetreader.h │ │ ├── ltc.h │ │ ├── ltc7segment.h │ │ ├── ltcdisplaymax7219.h │ │ ├── ltcdisplaymax72197segment.h │ │ ├── ltcdisplaymax7219matrix.h │ │ ├── ltcdisplaymax7219set.h │ │ ├── ltcdisplayparams.h │ │ ├── ltcdisplayparamsconst.h │ │ ├── ltcdisplayrgb.h │ │ ├── ltcdisplayrgbpanel.h │ │ ├── ltcdisplayrgbset.h │ │ ├── ltcdisplayws28xx7segment.h │ │ ├── ltcdisplayws28xxmatrix.h │ │ ├── ltcencoder.h │ │ ├── ltcmidisystemrealtime.h │ │ ├── ltcparams.h │ │ ├── ltcparamsconst.h │ │ ├── ntpserver.h │ │ ├── tcnetdisplay.h │ │ └── timecodeconst.h │ └── src │ │ ├── h3 │ │ ├── artnetreader.cpp │ │ ├── ltcgenerator.cpp │ │ ├── ltcmidisystemrealtime.cpp │ │ ├── ltcoutputs.cpp │ │ ├── ltcreader.cpp │ │ ├── ltcsender.cpp │ │ ├── midireader.cpp │ │ ├── rtpmidireader.cpp │ │ ├── systimereader.cpp │ │ └── tcnetreader.cpp │ │ ├── ltc.cpp │ │ ├── ltc7segment.cpp │ │ ├── ltcdisplaymax7219.cpp │ │ ├── ltcdisplaymax72197segment.cpp │ │ ├── ltcdisplaymax7219matrix.cpp │ │ ├── ltcdisplayparams.cpp │ │ ├── ltcdisplayparamsconst.cpp │ │ ├── ltcdisplayparamsdump.cpp │ │ ├── ltcdisplayparamssave.cpp │ │ ├── ltcdisplayrgb.cpp │ │ ├── ltcdisplayrgbpanel.cpp │ │ ├── ltcdisplayrgbset.cpp │ │ ├── ltcdisplayrgbsetrgb.cpp │ │ ├── ltcdisplayws28xx7segment.cpp │ │ ├── ltcdisplayws28xxmatrix.cpp │ │ ├── ltcencoder.cpp │ │ ├── ltcmidisystemrealtime.cpp │ │ ├── ltcparams.cpp │ │ ├── ltcparamsconst.cpp │ │ ├── ltcparamscopydisabledoutputs.cpp │ │ ├── ltcparamsdump.cpp │ │ ├── ltcparamsgetsourcetype.cpp │ │ ├── ltcparamssave.cpp │ │ ├── ntpserver.cpp │ │ ├── tcnetdisplay.cpp │ │ └── timecodeconst.cpp ├── lib-midi │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── applemidi.h │ │ ├── midi.h │ │ ├── midibpm.h │ │ ├── mididescription.h │ │ ├── midiparams.h │ │ ├── midiparamsconst.h │ │ ├── rtpmidi.h │ │ └── rtpmidihandler.h │ └── src │ │ ├── applemidi.cpp │ │ ├── h3 │ │ └── midi.cpp │ │ ├── midi.cpp │ │ ├── mididescription.cpp │ │ ├── midiparams.cpp │ │ ├── midiparamsconst.cpp │ │ ├── midiprint.cpp │ │ ├── midiqf.cpp │ │ └── rtpmidi.cpp ├── lib-network │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.cdt.codan.core.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── example │ │ ├── tftpfileserver.cpp │ │ └── tftpfileserver.h │ ├── include │ │ ├── mdns.h │ │ ├── mdnsservices.h │ │ ├── network.h │ │ ├── networkbaremetalmacaddress.h │ │ ├── networkconst.h │ │ ├── networkesp8266.h │ │ ├── networkh3emac.h │ │ ├── networklinux.h │ │ ├── networkparams.h │ │ ├── networkparamsconst.h │ │ ├── ntp.h │ │ ├── ntpclient.h │ │ └── tftpdaemon.h │ └── src │ │ ├── h3 │ │ └── networkh3emac.cpp │ │ ├── linux │ │ ├── networklinux.cpp │ │ └── osxgetmacaddress.cpp │ │ ├── mdns.cpp │ │ ├── mdnsprint.cpp │ │ ├── network.cpp │ │ ├── networkbaremetalmacaddress.cpp │ │ ├── networkconst.cpp │ │ ├── networkparams.cpp │ │ ├── networkparamsconst.cpp │ │ ├── networkparamsdump.cpp │ │ ├── networkparamssave.cpp │ │ ├── networkprint.cpp │ │ ├── ntpclient.cpp │ │ └── tftpdaemon.cpp ├── lib-osc │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.cdt.codan.core.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── osc.h │ │ ├── oscblob.h │ │ ├── oscparamsconst.h │ │ ├── oscsimplemessage.h │ │ ├── oscsimplesend.h │ │ └── oscstring.h │ └── src │ │ ├── oscparamsconst.cpp │ │ ├── oscsimplemessage.cpp │ │ ├── oscsimplesend.cpp │ │ ├── oscstring.cpp │ │ └── pattern_match.c ├── lib-oscclient │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── oscclient.h │ │ ├── oscclientled.h │ │ ├── oscclientmsgconst.h │ │ ├── oscclientparams.h │ │ └── oscclientparamsconst.h │ └── src │ │ ├── oscclient.cpp │ │ ├── oscclientmsgconst.cpp │ │ ├── oscclientparams.cpp │ │ ├── oscclientparamsconst.cpp │ │ ├── oscclientparamssave.cpp │ │ └── oscclientsend.cpp ├── lib-oscserver │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.cdt.codan.core.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── oscserver.h │ │ ├── oscserverconst.h │ │ ├── oscserverhandler.h │ │ ├── oscservermsgconst.h │ │ └── oscserverparms.h │ └── src │ │ ├── oscserver.cpp │ │ ├── oscserverconst.cpp │ │ ├── oscservermsgconst.cpp │ │ ├── oscserverparams.cpp │ │ ├── oscserverparamssave.cpp │ │ ├── oscserverparamsset.cpp │ │ └── oscserverprint.cpp ├── lib-pca9685 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── examples │ │ ├── Makefile │ │ ├── pwmled.cpp │ │ ├── servo.cpp │ │ └── simple.cpp │ ├── include │ │ ├── pca9685.h │ │ ├── pca9685pwmled.h │ │ └── pca9685servo.h │ └── src │ │ ├── pca9685.cpp │ │ ├── pca9685pwmled.cpp │ │ └── pca9685servo.cpp ├── lib-pca9685dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── pca9685dmxled.h │ │ ├── pca9685dmxledparams.h │ │ ├── pca9685dmxparams.h │ │ ├── pca9685dmxservo.h │ │ └── pca9685dmxservoparams.h │ └── src │ │ ├── pca9685dmxled.cpp │ │ ├── pca9685dmxledparams.cpp │ │ ├── pca9685dmxparams.cpp │ │ ├── pca9685dmxservo.cpp │ │ └── pca9685dmxservoparams.cpp ├── lib-properties │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── devicesparamsconst.h │ │ ├── parse.h │ │ ├── propertiesbuilder.h │ │ ├── readconfigfile.h │ │ └── sscan.h │ └── src │ │ ├── devicesparamsconst.cpp │ │ ├── parse.cpp │ │ ├── propertiesbuilder.cpp │ │ ├── propertiesbuilderaddhex.cpp │ │ ├── readconfigfile.cpp │ │ ├── sscan.cpp │ │ ├── sscanchar.cpp │ │ ├── sscanfloat.cpp │ │ ├── sscanhex24uint32.cpp │ │ ├── sscanhexuint16.cpp │ │ ├── sscani2c.cpp │ │ ├── sscani2caddress.cpp │ │ ├── sscanipaddress.cpp │ │ ├── sscanspi.cpp │ │ ├── sscanuint16.cpp │ │ ├── sscanuint32.cpp │ │ └── sscanuint8.cpp ├── lib-remoteconfig │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── h3 │ │ │ └── shell.h │ │ ├── remoteconfig.h │ │ ├── remoteconfigconst.h │ │ ├── remoteconfigparams.h │ │ └── tftpfileserver.h │ └── src │ │ ├── h3 │ │ ├── shell.cpp │ │ ├── shellcmd.cpp │ │ └── tftpfileserver.cpp │ │ ├── linux │ │ ├── display.cpp │ │ ├── display7segment.cpp │ │ └── tftpfileserver.cpp │ │ ├── remoteconfig.cpp │ │ ├── remoteconfigconst.cpp │ │ ├── remoteconfigparams.cpp │ │ ├── remoteconfigparamsdump.cpp │ │ ├── remoteconfigreboot.cpp │ │ └── remoteconfigstatic.cpp ├── lib-rgbpanel │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── include │ │ ├── rgbpanel.h │ │ ├── rgbpanelconst.h │ │ ├── rgbpanelparams.h │ │ └── rgbpanelparamsconst.h │ └── src │ │ ├── h3 │ │ └── rgbpanel.cpp │ │ ├── rgbpanel.cpp │ │ ├── rgbpanelconst.cpp │ │ ├── rgbpanelparams.cpp │ │ ├── rgbpanelparamsconst.cpp │ │ ├── rgbpanelparamsdump.cpp │ │ └── rgbpanelstatic.cpp ├── lib-showfile │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── olashowfile.h │ │ ├── showfile.h │ │ ├── showfileconst.h │ │ ├── showfiledisplay.h │ │ ├── showfileosc.h │ │ ├── showfileparams.h │ │ ├── showfileparamsconst.h │ │ ├── showfileprotocolartnet.h │ │ ├── showfileprotocole131.h │ │ ├── showfileprotocolhandler.h │ │ └── showfiletftp.h │ └── src │ │ ├── olashowfile.cpp │ │ ├── showfile.cpp │ │ ├── showfileconst.cpp │ │ ├── showfileosc.cpp │ │ ├── showfileparams.cpp │ │ ├── showfileparamsconst.cpp │ │ ├── showfileprotocolartnettrigger.cpp │ │ ├── showfilestatic.cpp │ │ └── showfiletftp.cpp ├── lib-spiflash │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── examples │ │ ├── Makefile │ │ └── detect.c │ ├── include │ │ └── spi_flash.h │ └── src │ │ ├── get_timer.c │ │ ├── h3 │ │ └── spi_flash.c │ │ ├── linux │ │ └── spi_flash.c │ │ ├── macronix.c │ │ ├── spi_flash.c │ │ ├── spi_flash_internal.h │ │ └── winbond.c ├── lib-spiflashinstall │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── compressed.h │ │ ├── spiflashinstall.h │ │ ├── spiflashinstallparams.h │ │ └── ubootheader.h │ └── src │ │ ├── h3 │ │ ├── compressed.cpp │ │ ├── spiflashinstall.cpp │ │ └── ubootheader.cpp │ │ ├── linux │ │ └── spiflashinstall.cpp │ │ ├── spiflashinstallparams.cpp │ │ ├── spiflashinstallparamsconst.cpp │ │ ├── spiflashinstallparamsconst.h │ │ └── spiflashinstallparamsdump.cpp ├── lib-spiflashstore │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── spiflashstore.h │ │ ├── storeartnet.h │ │ ├── storeartnet4.h │ │ ├── storedisplayudf.h │ │ ├── storedmxsend.h │ │ ├── storedmxserial.h │ │ ├── storee131.h │ │ ├── storegps.h │ │ ├── storeltc.h │ │ ├── storeltcdisplay.h │ │ ├── storemidi.h │ │ ├── storemonitor.h │ │ ├── storemotors.h │ │ ├── storenetwork.h │ │ ├── storeoscclient.h │ │ ├── storeoscserver.h │ │ ├── storerdmdevice.h │ │ ├── storerdmsensors.h │ │ ├── storerdmsubdevices.h │ │ ├── storeremoteconfig.h │ │ ├── storergbpanel.h │ │ ├── storeshowfile.h │ │ ├── storeslushdmx.h │ │ ├── storesparkfundmx.h │ │ ├── storetcnet.h │ │ ├── storetlc59711.h │ │ ├── storewidget.h │ │ └── storews28xxdmx.h │ └── src │ │ ├── spiflashstore.cpp │ │ ├── storeartnet.cpp │ │ ├── storeartnet4.cpp │ │ ├── storedisplayudf.cpp │ │ ├── storedmxsend.cpp │ │ ├── storedmxserial.cpp │ │ ├── storee131.cpp │ │ ├── storegps.cpp │ │ ├── storeltc.cpp │ │ ├── storeltcdisplay.cpp │ │ ├── storemidi.cpp │ │ ├── storemonitor.cpp │ │ ├── storemotors.cpp │ │ ├── storenetwork.cpp │ │ ├── storeoscclient.cpp │ │ ├── storeoscserver.cpp │ │ ├── storerdmdevice.cpp │ │ ├── storerdmsensors.cpp │ │ ├── storerdmsubdevices.cpp │ │ ├── storeremoteconfig.cpp │ │ ├── storergbpanel.cpp │ │ ├── storeshowfile.cpp │ │ ├── storeslushdmx.cpp │ │ ├── storesparkfundmx.cpp │ │ ├── storetcnet.cpp │ │ ├── storetlc59711.cpp │ │ ├── storewidget.cpp │ │ └── storews28xxdmx.cpp ├── lib-tcnet │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── tcnet.h │ │ ├── tcnetconst.h │ │ ├── tcnetpackets.h │ │ ├── tcnetparams.h │ │ ├── tcnetparamsconst.h │ │ └── tcnettimecode.h │ └── src │ │ ├── tcnet.cpp │ │ ├── tcnetconst.cpp │ │ ├── tcnetdump.cpp │ │ ├── tcnetparams.cpp │ │ ├── tcnetparamsconst.cpp │ │ ├── tcnetparamsdump.cpp │ │ ├── tcnetparamssave.cpp │ │ └── tcnetprint.cpp ├── lib-tlc59711 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── examples │ │ ├── Makefile │ │ ├── pwmled │ │ └── pwmled.cpp │ ├── include │ │ └── tlc59711.h │ └── src │ │ └── tlc59711.cpp ├── lib-tlc59711dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── tlc59711dmx.h │ │ ├── tlc59711dmxparams.h │ │ └── tlc59711dmxstore.h │ └── src │ │ ├── tlc59711dmx.cpp │ │ ├── tlc59711dmxparams.cpp │ │ ├── tlc59711dmxparamsset.cpp │ │ ├── tlc59711dmxprint.cpp │ │ └── tlc59711paramssave.cpp ├── lib-usb │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── include │ │ ├── ft245rl.h │ │ └── usb.h │ └── src │ │ ├── h3 │ │ └── ft245rl.c │ │ ├── rpi │ │ └── ft245rl.c │ │ └── usb.c ├── lib-uuid │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ └── src │ │ ├── h3 │ │ └── uuid.c │ │ ├── rpi │ │ └── uuid.c │ │ ├── uuid_internal.h │ │ ├── uuid_parse.c │ │ └── uuid_unparse.c ├── lib-widget │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── include │ │ ├── h3 │ │ │ └── widgetstore.h │ │ ├── widget.h │ │ ├── widgetconfiguration.h │ │ ├── widgetmonitor.h │ │ ├── widgetparams.h │ │ ├── widgetparamsconst.h │ │ └── widgetstore.h │ └── src │ │ ├── h3 │ │ ├── widgetconfiguration.cpp │ │ └── widgetmonitor.cpp │ │ ├── rpi │ │ ├── widgetconfiguration.cpp │ │ └── widgetmonitor.cpp │ │ ├── widget.cpp │ │ ├── widgetconfiguration.cpp │ │ ├── widgetmonitor.cpp │ │ ├── widgetparams.cpp │ │ ├── widgetparamsconst.cpp │ │ ├── widgetparamsdump.cpp │ │ ├── widgetsniffer.cpp │ │ └── widgetusb.cpp ├── lib-ws28xx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── README.md │ ├── include │ │ ├── h3 │ │ │ └── ws28xxdma.h │ │ ├── pixelpatterns.h │ │ ├── rgbmapping.h │ │ ├── ws28xx.h │ │ ├── ws28xxconst.h │ │ └── ws28xxmulti.h │ ├── jbc │ │ ├── PIXEL8x4.jbc │ │ └── pixel8x4.S │ └── src │ │ ├── h3 │ │ ├── ws28xxdma.cpp │ │ ├── ws28xxmulti.cpp │ │ ├── ws28xxmulti4x.cpp │ │ └── ws28xxmulti8x.cpp │ │ ├── linux │ │ ├── ws28xxmulti.cpp │ │ └── ws28xxmulti8x.cpp │ │ ├── pixelpatterns.cpp │ │ ├── rgbmapping.cpp │ │ ├── ws28xx.cpp │ │ ├── ws28xxconst.cpp │ │ ├── ws28xxmulti.cpp │ │ ├── ws28xxmulti4x.cpp │ │ ├── ws28xxmulti8x.cpp │ │ ├── ws28xxset.cpp │ │ └── ws28xxstatic.cpp ├── lib-ws28xxdisplay │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── ws28xxdisplay7segment.h │ │ └── ws28xxdisplaymatrix.h │ └── src │ │ ├── ws28xxdisplay7segment.cpp │ │ └── ws28xxdisplaymatrix.cpp ├── lib-ws28xxdmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── Makefile.Linux │ ├── include │ │ ├── h3 │ │ │ └── ws28xxdmxstartstop.h │ │ ├── ws28xxdmx.h │ │ ├── ws28xxdmxgrouping.h │ │ ├── ws28xxdmxmulti.h │ │ ├── ws28xxdmxparams.h │ │ └── ws28xxdmxstore.h │ └── src │ │ ├── ws28xxdmx.cpp │ │ ├── ws28xxdmxgrouping.cpp │ │ ├── ws28xxdmxmulti.cpp │ │ ├── ws28xxdmxmultiparamsset.cpp │ │ ├── ws28xxdmxparams.cpp │ │ ├── ws28xxdmxparamsdump.cpp │ │ ├── ws28xxdmxparamssave.cpp │ │ ├── ws28xxdmxparamsset.cpp │ │ └── ws28xxdmxprint.cpp ├── opi_emac_artnet_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── dmxinput.h │ │ └── software_version.h │ └── lib │ │ └── dmxinput.cpp ├── opi_emac_artnet_dmx_multi │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── dmxinput.h │ │ └── software_version.h │ └── lib │ │ └── dmxinput.cpp ├── opi_emac_artnet_monitor │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── software_version.h │ │ └── timecode.h │ └── lib │ │ └── timecode.cpp ├── opi_emac_artnet_pixel │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── opi_emac_artnet_pixel_multi │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── factorydefaults.h │ │ ├── handleroled.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_emac_artnet_rdm_l6470 │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── identify.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_emac_artnet_serial │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── factorydefaults.h │ │ ├── identify.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_emac_e131_artnet │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── artnetoutput.h │ │ ├── factorydefaults.h │ │ ├── identify.h │ │ └── software_version.h │ └── lib │ │ ├── artnetoutput.cpp │ │ └── rdmsoftwareversion.cpp ├── opi_emac_e131_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── dmxinput.h │ │ └── software_version.h │ └── lib │ │ └── dmxinput.cpp ├── opi_emac_e131_dmx_multi │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── dmxinput.h │ │ └── software_version.h │ └── lib │ │ └── dmxinput.cpp ├── opi_emac_e131_monitor │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── opi_emac_e131_pixel │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── opi_emac_e131_pixel_multi │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── factorydefaults.h │ │ ├── handleroled.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_emac_llrp_tftpd │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── factorydefaults.h │ │ ├── reboot.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_emac_ltc_smpte │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── displayeditfps.h │ │ ├── displayedittimecode.h │ │ ├── factorydefaults.h │ │ ├── ltcoscserver.h │ │ ├── mcpbuttons.h │ │ ├── networkhandleroled.h │ │ ├── reboot.h │ │ ├── software_version.h │ │ ├── source.h │ │ └── sourceconst.h │ └── lib │ │ ├── displayeditfps.cpp │ │ ├── displayedittimecode.cpp │ │ ├── ltcoscserver.cpp │ │ ├── mcpbuttons.cpp │ │ ├── mcpbuttonstinternal.cpp │ │ ├── rdmsoftwareversion.cpp │ │ └── sourceconst.cpp ├── opi_emac_osc_client │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── buttonsgpio.h │ │ ├── buttonsmcp.h │ │ ├── buttonsset.h │ │ └── software_version.h │ └── lib │ │ ├── buttonsgpio.cpp │ │ └── buttonsmcp.cpp ├── opi_emac_osc_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── opi_emac_osc_monitor │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── opi_emac_osc_pixel │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── handler.h │ │ ├── handlertlc59711.h │ │ └── software_version.h │ └── lib │ │ ├── handler.cpp │ │ └── handlertlc59711.cpp ├── opi_emac_showfile │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── firmware │ │ └── main.cpp │ ├── generate_sofware_version_id.sh │ ├── include │ │ ├── displayhandler.h │ │ ├── factorydefaults.h │ │ ├── reboot.h │ │ └── software_version.h │ └── lib │ │ └── rdmsoftwareversion.cpp ├── opi_midi_monitor │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── midimonitor.h │ │ └── software_version.h │ └── lib │ │ └── midimonitor.cpp ├── rpi_wifi_artnet_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ ├── org.eclipse.cdt.codan.core.prefs │ │ └── org.eclipse.ltk.core.refactoring.prefs │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── software_version.h │ │ ├── timecode.h │ │ └── timesync.h │ └── lib │ │ ├── timecode.cpp │ │ └── timesync.cpp ├── rpi_wifi_e131_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ └── include │ │ └── software_version.h ├── rpi_wifi_osc_dmx │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── Makefile.H3 │ ├── README.md │ ├── firmware │ │ └── main.cpp │ ├── include │ │ ├── handler.h │ │ └── software_version.h │ └── lib │ │ └── handler.cpp └── scripts │ ├── .project │ ├── README.md │ ├── build_firmware.sh │ ├── build_h3-firmware.sh │ ├── build_linux.sh │ ├── build_this.sh │ ├── do-tftp-one.sh │ ├── libs-clean.sh │ ├── makeall_firmware-lib.sh │ ├── makeall_firmware.sh │ ├── makeall_firmware_h3-lib.sh │ ├── makeall_firmware_h3.sh │ ├── makeall_linux-lib.sh │ ├── reboot.sh │ └── upload_all.sh ├── libc_common.c ├── libc_io.c ├── libc_io_jh.c ├── libc_server.c ├── libc_server.h ├── linker.ld ├── linker_jh.ld ├── lwip ├── BUILDING ├── CHANGELOG ├── CMakeLists.txt ├── COPYING ├── FEATURES ├── FILES ├── README ├── UPGRADING ├── codespell_changed_files.sh ├── codespell_check.sh ├── contrib │ ├── Coverity │ │ └── coverity.c │ ├── Filelists.cmake │ ├── Filelists.mk │ ├── addons │ │ ├── ipv6_static_routing │ │ │ ├── README │ │ │ ├── ip6_route_table.c │ │ │ └── ip6_route_table.h │ │ ├── netconn │ │ │ └── external_resolve │ │ │ │ ├── dnssd.c │ │ │ │ └── dnssd.h │ │ ├── tcp_isn │ │ │ ├── tcp_isn.c │ │ │ └── tcp_isn.h │ │ └── tcp_md5 │ │ │ ├── README │ │ │ ├── tcp_md5.c │ │ │ └── tcp_md5.h │ ├── apps │ │ ├── LwipMibCompiler │ │ │ ├── CCodeGeneration │ │ │ │ ├── CCodeGeneration.csproj │ │ │ │ ├── CFile.cs │ │ │ │ ├── CGenerator.cs │ │ │ │ ├── Code.cs │ │ │ │ ├── CodeContainerBase.cs │ │ │ │ ├── CodeElement.cs │ │ │ │ ├── Comment.cs │ │ │ │ ├── EmptyLine.cs │ │ │ │ ├── Function.cs │ │ │ │ ├── FunctionDeclaration.cs │ │ │ │ ├── IfThenElse.cs │ │ │ │ ├── PP_If.cs │ │ │ │ ├── PP_Ifdef.cs │ │ │ │ ├── PP_Include.cs │ │ │ │ ├── PP_Macro.cs │ │ │ │ ├── PlainText.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Switch.cs │ │ │ │ ├── VariableDeclaration.cs │ │ │ │ ├── VariablePrototype.cs │ │ │ │ └── VariableType.cs │ │ │ ├── LwipMibCompiler.sln │ │ │ ├── LwipMibCompiler │ │ │ │ ├── LwipMibCompiler.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── app.config │ │ │ ├── LwipSnmpCodeGeneration │ │ │ │ ├── IRestriction.cs │ │ │ │ ├── LwipSnmp.cs │ │ │ │ ├── LwipSnmpCodeGeneration.csproj │ │ │ │ ├── MibCFile.cs │ │ │ │ ├── MibHeaderFile.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SnmpMib.cs │ │ │ │ ├── SnmpNode.cs │ │ │ │ ├── SnmpScalarAggregationNode.cs │ │ │ │ ├── SnmpScalarArrayNode.cs │ │ │ │ ├── SnmpScalarNode.cs │ │ │ │ ├── SnmpScalarNodeBits.cs │ │ │ │ ├── SnmpScalarNodeCounter64.cs │ │ │ │ ├── SnmpScalarNodeInt.cs │ │ │ │ ├── SnmpScalarNodeObjectIdentifier.cs │ │ │ │ ├── SnmpScalarNodeOctetString.cs │ │ │ │ ├── SnmpScalarNodeTruthValue.cs │ │ │ │ ├── SnmpScalarNodeUint.cs │ │ │ │ ├── SnmpTableNode.cs │ │ │ │ └── SnmpTreeNode.cs │ │ │ ├── MibViewer │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ ├── FormMain.cs │ │ │ │ ├── FormMain.resx │ │ │ │ ├── MibViewer.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── app.config │ │ │ ├── Mibs │ │ │ │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB │ │ │ │ ├── IANA-CHARSET-MIB │ │ │ │ ├── IANA │ │ │ │ │ ├── IANA-ITU-ALARM-TC-MIB │ │ │ │ │ ├── IANA-LANGUAGE-MIB │ │ │ │ │ ├── IANA-MALLOC-MIB │ │ │ │ │ ├── IANA-MAU-MIB │ │ │ │ │ ├── IANA-PRINTER-MIB │ │ │ │ │ ├── IANA-RTPROTO-MIB │ │ │ │ │ ├── IANATn3270eTC-MIB │ │ │ │ │ └── IANAifType-MIB │ │ │ │ ├── IF-MIB │ │ │ │ ├── INET-ADDRESS-MIB │ │ │ │ ├── IP-MIB │ │ │ │ ├── RFC-1212 │ │ │ │ ├── RFC-1215 │ │ │ │ ├── RFC1065-SMI │ │ │ │ ├── RFC1155-SMI │ │ │ │ ├── RFC1158-MIB │ │ │ │ ├── RFC1213-MIB │ │ │ │ ├── SNMPv2-CONF │ │ │ │ ├── SNMPv2-MIB │ │ │ │ ├── SNMPv2-SMI │ │ │ │ ├── SNMPv2-TC │ │ │ │ ├── SNMPv2-TM │ │ │ │ ├── TCP-MIB │ │ │ │ └── UDP-MIB │ │ │ ├── SharpSnmpLib │ │ │ │ ├── Mib │ │ │ │ │ ├── DisplayHint.cs │ │ │ │ │ ├── Elements │ │ │ │ │ │ ├── Entities │ │ │ │ │ │ │ ├── AgentCapabilities.cs │ │ │ │ │ │ │ ├── EntityBase.cs │ │ │ │ │ │ │ ├── IEntity.cs │ │ │ │ │ │ │ ├── ModuleCompliance.cs │ │ │ │ │ │ │ ├── ModuleIdentity.cs │ │ │ │ │ │ │ ├── NotificationGroup.cs │ │ │ │ │ │ │ ├── NotificationType.cs │ │ │ │ │ │ │ ├── ObjectGroup.cs │ │ │ │ │ │ │ ├── ObjectIdentity.cs │ │ │ │ │ │ │ ├── ObjectType.cs │ │ │ │ │ │ │ └── OidValueAssignment.cs │ │ │ │ │ │ ├── Exports.cs │ │ │ │ │ │ ├── IDeclaration.cs │ │ │ │ │ │ ├── IElement.cs │ │ │ │ │ │ ├── ITypeReferrer.cs │ │ │ │ │ │ ├── Imports.cs │ │ │ │ │ │ ├── ImportsFrom.cs │ │ │ │ │ │ ├── TrapType.cs │ │ │ │ │ │ └── Types │ │ │ │ │ │ │ ├── BaseType.cs │ │ │ │ │ │ │ ├── BitsType.cs │ │ │ │ │ │ │ ├── Choice.cs │ │ │ │ │ │ │ ├── ITypeAssignment.cs │ │ │ │ │ │ │ ├── IntegerType.cs │ │ │ │ │ │ │ ├── IpAddressType.cs │ │ │ │ │ │ │ ├── Macro.cs │ │ │ │ │ │ │ ├── ObjectIdentifierType.cs │ │ │ │ │ │ │ ├── OctetStringType.cs │ │ │ │ │ │ │ ├── OpaqueType.cs │ │ │ │ │ │ │ ├── Sequence.cs │ │ │ │ │ │ │ ├── SequenceOf.cs │ │ │ │ │ │ │ ├── TextualConvention.cs │ │ │ │ │ │ │ ├── TypeAssignment.cs │ │ │ │ │ │ │ └── UnsignedType.cs │ │ │ │ │ ├── IModule.cs │ │ │ │ │ ├── ISymbolEnumerator.cs │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── MaxAccess.cs │ │ │ │ │ ├── MibDocument.cs │ │ │ │ │ ├── MibException.cs │ │ │ │ │ ├── MibModule.cs │ │ │ │ │ ├── MibResolver.cs │ │ │ │ │ ├── MibTree.cs │ │ │ │ │ ├── MibTreeNode.cs │ │ │ │ │ ├── MibTypesResolver.cs │ │ │ │ │ ├── ObjectIdentifier.cs │ │ │ │ │ ├── Status.cs │ │ │ │ │ ├── Symbol.cs │ │ │ │ │ ├── SymbolList.cs │ │ │ │ │ ├── ValueMap.cs │ │ │ │ │ └── ValueRange.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── SharpSnmpLib.Mib.csproj │ │ │ │ ├── license.txt │ │ │ │ ├── readme.txt │ │ │ │ └── sharpsnmplib.snk │ │ │ └── example │ │ │ │ ├── compile_udp_mib.cmd │ │ │ │ └── compile_udp_mib.sh │ │ ├── chargen │ │ │ ├── README │ │ │ ├── chargen.c │ │ │ └── chargen.h │ │ ├── httpserver │ │ │ ├── README │ │ │ ├── httpserver-netconn.c │ │ │ └── httpserver-netconn.h │ │ ├── netio │ │ │ ├── netio.c │ │ │ └── netio.h │ │ ├── ping │ │ │ ├── ping.c │ │ │ └── ping.h │ │ ├── rtp │ │ │ ├── rtp.c │ │ │ ├── rtp.h │ │ │ └── rtpdata.h │ │ ├── shell │ │ │ ├── shell.c │ │ │ └── shell.h │ │ ├── socket_examples │ │ │ ├── socket_examples.c │ │ │ └── socket_examples.h │ │ ├── tcpecho │ │ │ ├── tcpecho.c │ │ │ └── tcpecho.h │ │ ├── tcpecho_raw │ │ │ ├── tcpecho_raw.c │ │ │ └── tcpecho_raw.h │ │ ├── udpecho │ │ │ ├── udpecho.c │ │ │ └── udpecho.h │ │ └── udpecho_raw │ │ │ ├── udpecho_raw.c │ │ │ └── udpecho_raw.h │ ├── examples │ │ ├── ethernetif │ │ │ └── ethernetif.c │ │ ├── example_app │ │ │ ├── default_netif.h │ │ │ ├── lwipcfg.h.example │ │ │ ├── lwipcfg.h.travis │ │ │ ├── lwipopts.h │ │ │ ├── lwippools.h │ │ │ ├── ppp_settings.h │ │ │ ├── test.c │ │ │ └── test_configs │ │ │ │ ├── opt_default.h │ │ │ │ ├── opt_dualstack.h │ │ │ │ ├── opt_ipv4only.h │ │ │ │ ├── opt_ipv6only.h │ │ │ │ ├── opt_no_tcp_dualstack.h │ │ │ │ ├── opt_no_tcp_ipv4only.h │ │ │ │ ├── opt_no_tcp_ipv6only.h │ │ │ │ ├── opt_no_udp_dualstack.h │ │ │ │ ├── opt_no_udp_ipv4only.h │ │ │ │ ├── opt_no_udp_ipv6only.h │ │ │ │ ├── opt_none.h │ │ │ │ ├── opt_nosys_dual.h │ │ │ │ ├── opt_nosys_ipv4.h │ │ │ │ └── opt_nosys_ipv6.h │ │ ├── httpd │ │ │ ├── cgi_example │ │ │ │ ├── cgi_example.c │ │ │ │ └── cgi_example.h │ │ │ ├── examples_fs │ │ │ │ ├── 404.html │ │ │ │ ├── img │ │ │ │ │ └── sics.gif │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── loginfail.html │ │ │ │ ├── session.html │ │ │ │ └── ssi.shtml │ │ │ ├── examples_fsdata.c │ │ │ ├── fs_example │ │ │ │ ├── fs_example.c │ │ │ │ └── fs_example.h │ │ │ ├── genfiles_example │ │ │ │ ├── genfiles_example.c │ │ │ │ └── genfiles_example.h │ │ │ ├── https_example │ │ │ │ ├── https_example.c │ │ │ │ └── https_example.h │ │ │ ├── post_example │ │ │ │ └── post_example.c │ │ │ └── ssi_example │ │ │ │ ├── ssi_example.c │ │ │ │ └── ssi_example.h │ │ ├── lwiperf │ │ │ ├── lwiperf_example.c │ │ │ └── lwiperf_example.h │ │ ├── mdns │ │ │ ├── mdns_example.c │ │ │ └── mdns_example.h │ │ ├── mqtt │ │ │ ├── mqtt_example.c │ │ │ └── mqtt_example.h │ │ ├── ppp │ │ │ ├── pppos_example.c │ │ │ └── pppos_example.h │ │ ├── snmp │ │ │ ├── snmp_example.c │ │ │ ├── snmp_example.h │ │ │ ├── snmp_private_mib │ │ │ │ ├── lwip_prvmib.c │ │ │ │ └── private_mib.h │ │ │ └── snmp_v3 │ │ │ │ ├── snmpv3_dummy.c │ │ │ │ └── snmpv3_dummy.h │ │ ├── sntp │ │ │ ├── sntp_example.c │ │ │ └── sntp_example.h │ │ └── tftp │ │ │ ├── tftp_example.c │ │ │ └── tftp_example.h │ └── ports │ │ ├── CMakeCommon.cmake │ │ ├── Common.allports.mk │ │ ├── freertos │ │ ├── include │ │ │ └── arch │ │ │ │ └── sys_arch.h │ │ └── sys_arch.c │ │ ├── unix │ │ ├── Common.mk │ │ ├── Filelists.cmake │ │ ├── README │ │ ├── check │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── config.h │ │ ├── example_app │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── default_netif.c │ │ │ └── iteropts.sh │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ └── lwipopts.h │ │ ├── port │ │ │ ├── include │ │ │ │ ├── arch │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── perf.h │ │ │ │ │ └── sys_arch.h │ │ │ │ └── netif │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── pcapif.h │ │ │ │ │ ├── sio.h │ │ │ │ │ └── tapif.h │ │ │ ├── netif │ │ │ │ ├── fifo.c │ │ │ │ ├── list.c │ │ │ │ ├── pcapif.c │ │ │ │ ├── sio.c │ │ │ │ └── tapif.c │ │ │ ├── perf.c │ │ │ └── sys_arch.c │ │ └── setup-tapif │ │ └── win32 │ │ ├── Common.mk │ │ ├── Filelists.cmake │ │ ├── check │ │ ├── check_stdint.h │ │ ├── config.h │ │ ├── stdbool.h │ │ ├── sys │ │ │ └── time.h │ │ ├── time.c │ │ └── unistd.h │ │ ├── example_app │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── default_netif.c │ │ ├── include │ │ └── arch │ │ │ ├── bpstruct.h │ │ │ ├── cc.h │ │ │ ├── epstruct.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── msvc │ │ ├── build_coverity.cmd │ │ ├── libcheck.vcxproj │ │ ├── libcheck.vcxproj.filters │ │ ├── lwIP.vcxproj │ │ ├── lwIP.vcxproj.filters │ │ ├── lwIP_Test.sln │ │ ├── lwIP_Test.vcxproj │ │ ├── lwIP_Test.vcxproj.filters │ │ ├── lwIP_pcapif.vcxproj │ │ ├── lwIP_pcapif.vcxproj.filters │ │ ├── lwIP_unittests.sln │ │ ├── lwip_unittests.vcxproj │ │ ├── lwip_unittests.vcxproj.filters │ │ ├── makefsdata.vcxproj │ │ └── makefsdata.vcxproj.filters │ │ ├── pcapif.c │ │ ├── pcapif.h │ │ ├── pcapif_helper.c │ │ ├── pcapif_helper.h │ │ ├── readme.txt │ │ ├── sio.c │ │ └── sys_arch.c ├── doc │ ├── FILES │ ├── NO_SYS_SampleCode.c │ ├── ZeroCopyRx.c │ ├── contrib.txt │ ├── doxygen │ │ ├── generate.bat │ │ ├── generate.sh │ │ ├── lwip.Doxyfile │ │ ├── lwip.Doxyfile.cmake.in │ │ ├── main_page.h │ │ └── output │ │ │ └── index.html │ ├── mdns.txt │ ├── mqtt_client.txt │ ├── ppp.txt │ └── savannah.txt ├── src │ ├── FILES │ ├── Filelists.cmake │ ├── Filelists.mk │ ├── api │ │ ├── api_lib.c │ │ ├── api_msg.c │ │ ├── err.c │ │ ├── if_api.c │ │ ├── netbuf.c │ │ ├── netdb.c │ │ ├── netifapi.c │ │ ├── sockets.c │ │ └── tcpip.c │ ├── apps │ │ ├── altcp_tls │ │ │ ├── altcp_tls_mbedtls.c │ │ │ ├── altcp_tls_mbedtls_mem.c │ │ │ ├── altcp_tls_mbedtls_mem.h │ │ │ └── altcp_tls_mbedtls_structs.h │ │ ├── http │ │ │ ├── altcp_proxyconnect.c │ │ │ ├── fs.c │ │ │ ├── fs │ │ │ │ ├── 404.html │ │ │ │ ├── img │ │ │ │ │ └── sics.gif │ │ │ │ └── index.html │ │ │ ├── fsdata.c │ │ │ ├── fsdata.h │ │ │ ├── http_client.c │ │ │ ├── httpd.c │ │ │ ├── httpd_structs.h │ │ │ └── makefsdata │ │ │ │ ├── makefsdata │ │ │ │ ├── makefsdata.c │ │ │ │ ├── readme.txt │ │ │ │ └── tinydir.h │ │ ├── lwiperf │ │ │ └── lwiperf.c │ │ ├── mdns │ │ │ ├── mdns.c │ │ │ ├── mdns_domain.c │ │ │ └── mdns_out.c │ │ ├── mqtt │ │ │ └── mqtt.c │ │ ├── netbiosns │ │ │ └── netbiosns.c │ │ ├── smtp │ │ │ └── smtp.c │ │ ├── snmp │ │ │ ├── snmp_asn1.c │ │ │ ├── snmp_asn1.h │ │ │ ├── snmp_core.c │ │ │ ├── snmp_core_priv.h │ │ │ ├── snmp_mib2.c │ │ │ ├── snmp_mib2_icmp.c │ │ │ ├── snmp_mib2_interfaces.c │ │ │ ├── snmp_mib2_ip.c │ │ │ ├── snmp_mib2_snmp.c │ │ │ ├── snmp_mib2_system.c │ │ │ ├── snmp_mib2_tcp.c │ │ │ ├── snmp_mib2_udp.c │ │ │ ├── snmp_msg.c │ │ │ ├── snmp_msg.h │ │ │ ├── snmp_netconn.c │ │ │ ├── snmp_pbuf_stream.c │ │ │ ├── snmp_pbuf_stream.h │ │ │ ├── snmp_raw.c │ │ │ ├── snmp_scalar.c │ │ │ ├── snmp_snmpv2_framework.c │ │ │ ├── snmp_snmpv2_usm.c │ │ │ ├── snmp_table.c │ │ │ ├── snmp_threadsync.c │ │ │ ├── snmp_traps.c │ │ │ ├── snmpv3.c │ │ │ ├── snmpv3_mbedtls.c │ │ │ └── snmpv3_priv.h │ │ ├── sntp │ │ │ └── sntp.c │ │ └── tftp │ │ │ └── tftp.c │ ├── core │ │ ├── altcp.c │ │ ├── altcp_alloc.c │ │ ├── altcp_tcp.c │ │ ├── def.c │ │ ├── dns.c │ │ ├── inet_chksum.c │ │ ├── init.c │ │ ├── ip.c │ │ ├── ipv4 │ │ │ ├── acd.c │ │ │ ├── autoip.c │ │ │ ├── dhcp.c │ │ │ ├── etharp.c │ │ │ ├── icmp.c │ │ │ ├── igmp.c │ │ │ ├── ip4.c │ │ │ ├── ip4_addr.c │ │ │ └── ip4_frag.c │ │ ├── ipv6 │ │ │ ├── dhcp6.c │ │ │ ├── ethip6.c │ │ │ ├── icmp6.c │ │ │ ├── inet6.c │ │ │ ├── ip6.c │ │ │ ├── ip6_addr.c │ │ │ ├── ip6_frag.c │ │ │ ├── mld6.c │ │ │ └── nd6.c │ │ ├── mem.c │ │ ├── memp.c │ │ ├── netif.c │ │ ├── pbuf.c │ │ ├── raw.c │ │ ├── stats.c │ │ ├── sys.c │ │ ├── tcp.c │ │ ├── tcp_in.c │ │ ├── tcp_out.c │ │ ├── timeouts.c │ │ └── udp.c │ ├── include │ │ ├── arch │ │ │ ├── cc.h │ │ │ └── sys_arch.h │ │ ├── compat │ │ │ ├── posix │ │ │ │ ├── arpa │ │ │ │ │ └── inet.h │ │ │ │ ├── net │ │ │ │ │ └── if.h │ │ │ │ ├── netdb.h │ │ │ │ └── sys │ │ │ │ │ └── socket.h │ │ │ └── stdc │ │ │ │ └── errno.h │ │ ├── lwip │ │ │ ├── acd.h │ │ │ ├── altcp.h │ │ │ ├── altcp_tcp.h │ │ │ ├── altcp_tls.h │ │ │ ├── api.h │ │ │ ├── apps │ │ │ │ ├── FILES │ │ │ │ ├── altcp_proxyconnect.h │ │ │ │ ├── altcp_tls_mbedtls_opts.h │ │ │ │ ├── fs.h │ │ │ │ ├── http_client.h │ │ │ │ ├── httpd.h │ │ │ │ ├── httpd_opts.h │ │ │ │ ├── lwiperf.h │ │ │ │ ├── mdns.h │ │ │ │ ├── mdns_domain.h │ │ │ │ ├── mdns_opts.h │ │ │ │ ├── mdns_out.h │ │ │ │ ├── mdns_priv.h │ │ │ │ ├── mqtt.h │ │ │ │ ├── mqtt_opts.h │ │ │ │ ├── mqtt_priv.h │ │ │ │ ├── netbiosns.h │ │ │ │ ├── netbiosns_opts.h │ │ │ │ ├── smtp.h │ │ │ │ ├── smtp_opts.h │ │ │ │ ├── snmp.h │ │ │ │ ├── snmp_core.h │ │ │ │ ├── snmp_mib2.h │ │ │ │ ├── snmp_opts.h │ │ │ │ ├── snmp_scalar.h │ │ │ │ ├── snmp_snmpv2_framework.h │ │ │ │ ├── snmp_snmpv2_usm.h │ │ │ │ ├── snmp_table.h │ │ │ │ ├── snmp_threadsync.h │ │ │ │ ├── snmpv3.h │ │ │ │ ├── sntp.h │ │ │ │ ├── sntp_opts.h │ │ │ │ ├── tftp_client.h │ │ │ │ ├── tftp_common.h │ │ │ │ ├── tftp_opts.h │ │ │ │ └── tftp_server.h │ │ │ ├── arch.h │ │ │ ├── autoip.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dhcp6.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── etharp.h │ │ │ ├── ethip6.h │ │ │ ├── icmp.h │ │ │ ├── icmp6.h │ │ │ ├── if_api.h │ │ │ ├── igmp.h │ │ │ ├── inet.h │ │ │ ├── inet_chksum.h │ │ │ ├── init.h │ │ │ ├── init.h.cmake.in │ │ │ ├── ip.h │ │ │ ├── ip4.h │ │ │ ├── ip4_addr.h │ │ │ ├── ip4_frag.h │ │ │ ├── ip6.h │ │ │ ├── ip6_addr.h │ │ │ ├── ip6_frag.h │ │ │ ├── ip6_zone.h │ │ │ ├── ip_addr.h │ │ │ ├── lwipopts.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── mld6.h │ │ │ ├── nd6.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── priv │ │ │ │ ├── altcp_priv.h │ │ │ │ ├── api_msg.h │ │ │ │ ├── mem_priv.h │ │ │ │ ├── memp_priv.h │ │ │ │ ├── memp_std.h │ │ │ │ ├── nd6_priv.h │ │ │ │ ├── raw_priv.h │ │ │ │ ├── sockets_priv.h │ │ │ │ ├── tcp_priv.h │ │ │ │ └── tcpip_priv.h │ │ │ ├── prot │ │ │ │ ├── acd.h │ │ │ │ ├── autoip.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp6.h │ │ │ │ ├── dns.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── iana.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── ieee.h │ │ │ │ ├── igmp.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip4.h │ │ │ │ ├── ip6.h │ │ │ │ ├── mld6.h │ │ │ │ ├── nd6.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcpbase.h │ │ │ ├── tcpip.h │ │ │ ├── timeouts.h │ │ │ └── udp.h │ │ └── netif │ │ │ ├── bridgeif.h │ │ │ ├── bridgeif_opts.h │ │ │ ├── etharp.h │ │ │ ├── ethernet.h │ │ │ ├── ieee802154.h │ │ │ ├── lowpan6.h │ │ │ ├── lowpan6_ble.h │ │ │ ├── lowpan6_common.h │ │ │ ├── lowpan6_opts.h │ │ │ ├── ppp │ │ │ ├── ccp.h │ │ │ ├── chap-md5.h │ │ │ ├── chap-new.h │ │ │ ├── chap_ms.h │ │ │ ├── eap.h │ │ │ ├── ecp.h │ │ │ ├── eui64.h │ │ │ ├── fsm.h │ │ │ ├── ipcp.h │ │ │ ├── ipv6cp.h │ │ │ ├── lcp.h │ │ │ ├── magic.h │ │ │ ├── mppe.h │ │ │ ├── polarssl │ │ │ │ ├── arc4.h │ │ │ │ ├── des.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ └── sha1.h │ │ │ ├── ppp.h │ │ │ ├── ppp_impl.h │ │ │ ├── ppp_opts.h │ │ │ ├── pppapi.h │ │ │ ├── pppcrypt.h │ │ │ ├── pppdebug.h │ │ │ ├── pppoe.h │ │ │ ├── pppol2tp.h │ │ │ ├── pppos.h │ │ │ ├── upap.h │ │ │ └── vj.h │ │ │ ├── slipif.h │ │ │ └── zepif.h │ └── netif │ │ ├── FILES │ │ ├── bridgeif.c │ │ ├── bridgeif_fdb.c │ │ ├── ethernet.c │ │ ├── lowpan6.c │ │ ├── lowpan6_ble.c │ │ ├── lowpan6_common.c │ │ ├── ppp │ │ ├── PPPD_FOLLOWUP │ │ ├── auth.c │ │ ├── ccp.c │ │ ├── chap-md5.c │ │ ├── chap-new.c │ │ ├── chap_ms.c │ │ ├── demand.c │ │ ├── eap.c │ │ ├── ecp.c │ │ ├── eui64.c │ │ ├── fsm.c │ │ ├── ipcp.c │ │ ├── ipv6cp.c │ │ ├── lcp.c │ │ ├── magic.c │ │ ├── mppe.c │ │ ├── multilink.c │ │ ├── polarssl │ │ │ ├── README │ │ │ ├── arc4.c │ │ │ ├── des.c │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ └── sha1.c │ │ ├── ppp.c │ │ ├── pppapi.c │ │ ├── pppcrypt.c │ │ ├── pppoe.c │ │ ├── pppol2tp.c │ │ ├── pppos.c │ │ ├── upap.c │ │ ├── utils.c │ │ └── vj.c │ │ ├── slipif.c │ │ └── zepif.c ├── test │ ├── fuzz │ │ ├── Makefile │ │ ├── README │ │ ├── config.h │ │ ├── fuzz.c │ │ ├── fuzz2.c │ │ ├── fuzz3.c │ │ ├── fuzz_common.c │ │ ├── fuzz_common.h │ │ ├── inputs │ │ │ ├── arp │ │ │ │ └── arp_req.bin │ │ │ ├── icmp │ │ │ │ └── icmp_ping.bin │ │ │ ├── ipv6 │ │ │ │ ├── neighbor_solicitation.bin │ │ │ │ └── router_adv.bin │ │ │ ├── tcp │ │ │ │ └── tcp_syn.bin │ │ │ └── udp │ │ │ │ └── udp_port_5000.bin │ │ ├── lwipopts.h │ │ └── output_to_pcap.sh │ ├── sockets │ │ ├── sockets_stresstest.c │ │ └── sockets_stresstest.h │ └── unit │ │ ├── Filelists.cmake │ │ ├── Filelists.mk │ │ ├── Makefile │ │ ├── api │ │ ├── test_sockets.c │ │ └── test_sockets.h │ │ ├── arch │ │ ├── sys_arch.c │ │ └── sys_arch.h │ │ ├── core │ │ ├── test_def.c │ │ ├── test_def.h │ │ ├── test_dns.c │ │ ├── test_dns.h │ │ ├── test_mem.c │ │ ├── test_mem.h │ │ ├── test_netif.c │ │ ├── test_netif.h │ │ ├── test_pbuf.c │ │ ├── test_pbuf.h │ │ ├── test_timers.c │ │ └── test_timers.h │ │ ├── dhcp │ │ ├── test_dhcp.c │ │ └── test_dhcp.h │ │ ├── etharp │ │ ├── test_etharp.c │ │ └── test_etharp.h │ │ ├── ip4 │ │ ├── test_ip4.c │ │ └── test_ip4.h │ │ ├── ip6 │ │ ├── test_ip6.c │ │ └── test_ip6.h │ │ ├── lwip_check.h │ │ ├── lwip_unittests.c │ │ ├── lwipopts.h │ │ ├── mdns │ │ ├── test_mdns.c │ │ └── test_mdns.h │ │ ├── mqtt │ │ ├── test_mqtt.c │ │ └── test_mqtt.h │ │ ├── tcp │ │ ├── tcp_helper.c │ │ ├── tcp_helper.h │ │ ├── test_tcp.c │ │ ├── test_tcp.h │ │ ├── test_tcp_oos.c │ │ └── test_tcp_oos.h │ │ └── udp │ │ ├── test_udp.c │ │ └── test_udp.h └── travis.sh ├── mmu.c ├── mmu.h ├── network.c ├── network.h ├── ports.c ├── ports.h ├── rtc.c ├── rtc.h ├── sdl_server.c ├── sdl_server.h ├── smp.c ├── smp.h ├── spinlock.c ├── spinlock.h ├── startup.c ├── sunxi-spl.bin ├── system.c ├── system.h ├── tinyusb ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── docs │ ├── changelog.md │ ├── coding_standard.md │ ├── configuration.txt │ ├── getting_started.md │ ├── group_def.txt │ ├── header.html │ ├── porting.md │ └── started_demo.md ├── examples │ ├── device │ │ ├── cdc_msc_hid │ │ │ ├── Makefile │ │ │ ├── ses │ │ │ │ ├── cdc_msc_hid.emProject │ │ │ │ ├── lpc11u6x │ │ │ │ │ ├── LPC1100_Startup.s │ │ │ │ │ ├── LPC1100_Target.js │ │ │ │ │ ├── LPC11U68_MemoryMap.xml │ │ │ │ │ ├── LPC11U6x_Registers.xml │ │ │ │ │ ├── LPC11U6x_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc11u6x.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── lpc13xx │ │ │ │ │ ├── LPC1300_Startup.s │ │ │ │ │ ├── LPC1300_Target.js │ │ │ │ │ ├── LPC1347FBD64_MemoryMap.xml │ │ │ │ │ ├── LPC13Uxx_Registers.xml │ │ │ │ │ ├── LPC13Uxx_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc13xx.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── lpc175x_6x │ │ │ │ │ ├── LPC1700_Startup.s │ │ │ │ │ ├── LPC1700_Target.js │ │ │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ │ │ ├── LPC176x5x_Registers.xml │ │ │ │ │ ├── LPC176x5x_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc175x_6x.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── lpc18xx │ │ │ │ │ ├── LPC1800_Startup.s │ │ │ │ │ ├── LPC1800_Target.js │ │ │ │ │ ├── LPC1857_MemoryMap.xml │ │ │ │ │ ├── LPC18xx_Registers.xml │ │ │ │ │ ├── LPC18xx_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc18xx.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── lpc40xx │ │ │ │ │ ├── LPC4000_Startup.s │ │ │ │ │ ├── LPC4000_Target.js │ │ │ │ │ ├── LPC4088FBD208_MemoryMap.xml │ │ │ │ │ ├── LPC408x_7x_Registers.xml │ │ │ │ │ ├── LPC408x_7x_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc40xx.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── lpc43xx │ │ │ │ │ ├── LPC4300_Startup.s │ │ │ │ │ ├── LPC4300_Target.js │ │ │ │ │ ├── LPC4357 Cortex-M4_MemoryMap.xml │ │ │ │ │ ├── LPC43xx_Registers.xml │ │ │ │ │ ├── LPC43xx_Vectors.s │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── lpc43xx.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── nrf5x │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── nRF52840_xxAA_MemoryMap.xml │ │ │ │ │ ├── nRF_Target.js │ │ │ │ │ ├── nrf52840_Registers.xml │ │ │ │ │ ├── nrf5x.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ ├── samd21 │ │ │ │ │ ├── ATSAMD21G18A_MemoryMap.xml │ │ │ │ │ ├── ATSAMD21G18A_Registers.xml │ │ │ │ │ ├── ATSAMD21G18A_Vectors.s │ │ │ │ │ ├── SAMD21_Startup.s │ │ │ │ │ ├── SAMD21_Target.js │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── samd21.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ │ └── samd51 │ │ │ │ │ ├── ATSAMD51J19A_MemoryMap.xml │ │ │ │ │ ├── ATSAMD51J19A_Registers.xml │ │ │ │ │ ├── ATSAMD51J19A_Vectors.s │ │ │ │ │ ├── SAMD51_Startup.s │ │ │ │ │ ├── SAMD51_Target.js │ │ │ │ │ ├── flash_placement.xml │ │ │ │ │ ├── samd51.emProject │ │ │ │ │ └── thumb_crt0.s │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── msc_app.c │ │ │ │ ├── msc_disk_ram.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── tusb_descriptors.c │ │ └── cdc_msc_hid_freertos │ │ │ ├── ses │ │ │ ├── cdc_msc_hid_freertos.emProject │ │ │ ├── lpc175x_6x │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── LPC1700_Startup.s │ │ │ │ ├── LPC1700_Target.js │ │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ │ ├── LPC176x5x_Registers.xml │ │ │ │ ├── LPC176x5x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc175x_6x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── nrf5x │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── nRF52840_xxAA_MemoryMap.xml │ │ │ │ ├── nRF_Target.js │ │ │ │ ├── nrf52840_Registers.xml │ │ │ │ ├── nrf5x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── samd21 │ │ │ │ ├── ATSAMD21G18A_MemoryMap.xml │ │ │ │ ├── ATSAMD21G18A_Registers.xml │ │ │ │ ├── ATSAMD21G18A_Vectors.s │ │ │ │ ├── SAMD21_Startup.s │ │ │ │ ├── SAMD21_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd21.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── samd51 │ │ │ │ ├── ATSAMD51J19A_MemoryMap.xml │ │ │ │ ├── ATSAMD51J19A_Registers.xml │ │ │ │ ├── ATSAMD51J19A_Vectors.s │ │ │ │ ├── SAMD51_Startup.s │ │ │ │ ├── SAMD51_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd51.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── src │ │ │ ├── main.c │ │ │ ├── msc_app.c │ │ │ ├── msc_disk_ram.c │ │ │ ├── tusb_config.h │ │ │ └── tusb_descriptors.c │ ├── host │ │ └── cdc_msc_hid │ │ │ ├── ses │ │ │ ├── cdc_msc_hid.emProject │ │ │ ├── lpc175x_6x │ │ │ │ ├── LPC1700_Startup.s │ │ │ │ ├── LPC1700_Target.js │ │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ │ ├── LPC176x5x_Registers.xml │ │ │ │ ├── LPC176x5x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc175x_6x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc18xx │ │ │ │ ├── LPC1800_Startup.s │ │ │ │ ├── LPC1800_Target.js │ │ │ │ ├── LPC1857_MemoryMap.xml │ │ │ │ ├── LPC18xx_Registers.xml │ │ │ │ ├── LPC18xx_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc18xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc40xx │ │ │ │ ├── LPC4000_Startup.s │ │ │ │ ├── LPC4000_Target.js │ │ │ │ ├── LPC4088FBD208_MemoryMap.xml │ │ │ │ ├── LPC408x_7x_Registers.xml │ │ │ │ ├── LPC408x_7x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc40xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── lpc43xx │ │ │ │ ├── LPC4300_Startup.s │ │ │ │ ├── LPC4300_Target.js │ │ │ │ ├── LPC4357 Cortex-M4_MemoryMap.xml │ │ │ │ ├── LPC43xx_Registers.xml │ │ │ │ ├── LPC43xx_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc43xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── src │ │ │ ├── main.c │ │ │ ├── msc_app.c │ │ │ └── tusb_config.h │ ├── obsolete │ │ ├── device │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── WinCDCdriver.inf │ │ │ │ ├── app_os_prio.h │ │ │ │ ├── cdc_device_app.c │ │ │ │ ├── cdc_device_app.h │ │ │ │ ├── keyboard_device_app.c │ │ │ │ ├── keyboard_device_app.h │ │ │ │ ├── main.c │ │ │ │ ├── mouse_device_app.c │ │ │ │ ├── mouse_device_app.h │ │ │ │ ├── msc_device_app.c │ │ │ │ ├── msc_device_app.h │ │ │ │ ├── msc_device_ramdisk.c │ │ │ │ ├── msc_device_romdisk.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── tusb_descriptors.c │ │ └── host │ │ │ ├── host_freertos │ │ │ ├── .cproject │ │ │ └── .project │ │ │ ├── host_os_none │ │ │ ├── .cproject │ │ │ └── .project │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── app_os_prio.h │ │ │ ├── cdc_serial_host_app.c │ │ │ ├── cdc_serial_host_app.h │ │ │ ├── keyboard_host_app.c │ │ │ ├── keyboard_host_app.h │ │ │ ├── main.c │ │ │ ├── mouse_host_app.c │ │ │ ├── mouse_host_app.h │ │ │ ├── msc_cli.c │ │ │ ├── msc_cli.h │ │ │ ├── msc_host_app.c │ │ │ ├── msc_host_app.h │ │ │ ├── rndis_host_app.c │ │ │ ├── rndis_host_app.h │ │ │ └── tusb_config.h │ └── readme.md ├── hw │ ├── bsp │ │ ├── ansi_escape.h │ │ ├── board.h │ │ ├── ea4088qs │ │ │ ├── board_ea4088qs.c │ │ │ └── board_ea4088qs.h │ │ ├── ea4357 │ │ │ ├── board_ea4357.c │ │ │ ├── board_ea4357.h │ │ │ ├── pca9532.c │ │ │ └── pca9532.h │ │ ├── lpcxpresso11u68 │ │ │ ├── board_lpcxpresso11u68.c │ │ │ └── board_lpcxpresso11u68.h │ │ ├── lpcxpresso1347 │ │ │ ├── board_lpcxpresso1347.c │ │ │ └── board_lpcxpresso1347.h │ │ ├── lpcxpresso1769 │ │ │ ├── board_lpcxpresso1769.c │ │ │ └── board_lpcxpresso1769.h │ │ ├── mcb1800 │ │ │ ├── board_mcb1800.c │ │ │ └── board_mcb1800.h │ │ ├── metro_m0_express │ │ │ ├── board.mk │ │ │ ├── board_metro_m0_express.c │ │ │ ├── board_metro_m0_express.h │ │ │ └── samd21g18a_flash.ld │ │ ├── metro_m4_express │ │ │ ├── board.mk │ │ │ ├── board_metro_m4_express.c │ │ │ ├── board_metro_m4_express.h │ │ │ └── samd51g19a_flash.ld │ │ ├── pca10056 │ │ │ ├── board_pca10056.c │ │ │ └── board_pca10056.h │ │ ├── printf_retarget.c │ │ └── readme.md │ ├── cmsis │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ ├── mcu │ │ ├── nordic │ │ │ ├── nrfx_config.h │ │ │ └── nrfx_glue.h │ │ └── nxp │ │ │ ├── lpc_chip_11u6x │ │ │ ├── inc │ │ │ │ ├── adc_11u6x.h │ │ │ │ ├── chip.h │ │ │ │ ├── clock_11u6x.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── crc_11u6x.h │ │ │ │ ├── dma_11u6x.h │ │ │ │ ├── eeprom.h │ │ │ │ ├── error.h │ │ │ │ ├── fmc_11u6x.h │ │ │ │ ├── gpio_11u6x.h │ │ │ │ ├── gpiogroup_11u6x.h │ │ │ │ ├── i2c_11u6x.h │ │ │ │ ├── i2c_common_11u6x.h │ │ │ │ ├── i2cm_11u6x.h │ │ │ │ ├── iap.h │ │ │ │ ├── iocon_11u6x.h │ │ │ │ ├── lpc_types.h │ │ │ │ ├── pinint_11u6x.h │ │ │ │ ├── pmu_11u6x.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── rom_dma_11u6x.h │ │ │ │ ├── rom_i2c_11u6x.h │ │ │ │ ├── rom_pwr_11u6x.h │ │ │ │ ├── rom_uart_11u6x.h │ │ │ │ ├── romapi_11u6x.h │ │ │ │ ├── romdiv_11u6x.h │ │ │ │ ├── rtc_11u6x.h │ │ │ │ ├── sct_11u6x.h │ │ │ │ ├── ssp_11u6x.h │ │ │ │ ├── stopwatch.h │ │ │ │ ├── sys_config.h │ │ │ │ ├── syscon_11u6x.h │ │ │ │ ├── timer_11u6x.h │ │ │ │ ├── uart_0_11u6x.h │ │ │ │ ├── uart_n_11u6x.h │ │ │ │ ├── usbd_11u6x.h │ │ │ │ └── wwdt_11u6x.h │ │ │ └── src │ │ │ │ ├── adc_11u6x.c │ │ │ │ ├── chip_11u6x.c │ │ │ │ ├── clock_11u6x.c │ │ │ │ ├── crc_11u6x.c │ │ │ │ ├── dma_11u6x.c │ │ │ │ ├── eeprom.c │ │ │ │ ├── gpio_11u6x.c │ │ │ │ ├── gpiogroup_11u6x.c │ │ │ │ ├── i2c_11u6x.c │ │ │ │ ├── i2cm_11u6x.c │ │ │ │ ├── iap.c │ │ │ │ ├── iocon_11u6x.c │ │ │ │ ├── mtb.c │ │ │ │ ├── pinint_11u6x.c │ │ │ │ ├── pmu_11u6x.c │ │ │ │ ├── ring_buffer.c │ │ │ │ ├── romdiv_11u6x.c │ │ │ │ ├── rtc_11u6x.c │ │ │ │ ├── sct_11u6x.c │ │ │ │ ├── ssp_11u6x.c │ │ │ │ ├── stopwatch_11u6x.c │ │ │ │ ├── syscon_11u6x.c │ │ │ │ ├── sysinit_11u6x.c │ │ │ │ ├── timer_11u6x.c │ │ │ │ ├── uart_0_11u6x.c │ │ │ │ ├── uart_n_11u6x.c │ │ │ │ └── wwdt_11u6x.c │ │ │ ├── lpc_chip_13xx │ │ │ ├── inc │ │ │ │ ├── adc_13xx.h │ │ │ │ ├── chip.h │ │ │ │ ├── clock_13xx.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── cmsis_1347.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── error.h │ │ │ │ ├── flash_13xx.h │ │ │ │ ├── fmc_13xx.h │ │ │ │ ├── gpio_13xx_1.h │ │ │ │ ├── gpio_13xx_2.h │ │ │ │ ├── gpiogroup_13xx.h │ │ │ │ ├── i2c_13xx.h │ │ │ │ ├── i2cm_13xx.h │ │ │ │ ├── iocon_13xx.h │ │ │ │ ├── lpc_types.h │ │ │ │ ├── pinint_13xx.h │ │ │ │ ├── pmu_13xx.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── ritimer_13xx.h │ │ │ │ ├── romapi_13xx.h │ │ │ │ ├── ssp_13xx.h │ │ │ │ ├── stopwatch.h │ │ │ │ ├── sys_config.h │ │ │ │ ├── sysctl_13xx.h │ │ │ │ ├── timer_13xx.h │ │ │ │ ├── uart_13xx.h │ │ │ │ ├── usbd_13xx.h │ │ │ │ └── wwdt_13xx.h │ │ │ └── src │ │ │ │ ├── adc_13xx.c │ │ │ │ ├── chip_13xx.c │ │ │ │ ├── clock_13xx.c │ │ │ │ ├── flash_13xx.c │ │ │ │ ├── gpio_13xx_1.c │ │ │ │ ├── gpio_13xx_2.c │ │ │ │ ├── gpiogroup_13xx.c │ │ │ │ ├── i2c_13xx.c │ │ │ │ ├── i2cm_13xx.c │ │ │ │ ├── iocon_13xx.c │ │ │ │ ├── pinint_13xx.c │ │ │ │ ├── pmu_13xx.c │ │ │ │ ├── ring_buffer.c │ │ │ │ ├── ritimer_13xx.c │ │ │ │ ├── ssp_13xx.c │ │ │ │ ├── stopwatch_13xx.c │ │ │ │ ├── sysctl_13xx.c │ │ │ │ ├── sysinit_13xx.c │ │ │ │ ├── timer_13xx.c │ │ │ │ ├── uart_13xx.c │ │ │ │ └── wwdt_13xx.c │ │ │ ├── lpc_chip_175x_6x │ │ │ ├── inc │ │ │ │ ├── adc_17xx_40xx.h │ │ │ │ ├── can_17xx_40xx.h │ │ │ │ ├── chip.h │ │ │ │ ├── chip_lpc175x_6x.h │ │ │ │ ├── chip_lpc177x_8x.h │ │ │ │ ├── chip_lpc407x_8x.h │ │ │ │ ├── clock_17xx_40xx.h │ │ │ │ ├── cmp_17xx_40xx.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── cmsis_175x_6x.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── crc_17xx_40xx.h │ │ │ │ ├── dac_17xx_40xx.h │ │ │ │ ├── eeprom_17xx_40xx.h │ │ │ │ ├── emc_17xx_40xx.h │ │ │ │ ├── enet_17xx_40xx.h │ │ │ │ ├── error.h │ │ │ │ ├── fmc_17xx_40xx.h │ │ │ │ ├── gpdma_17xx_40xx.h │ │ │ │ ├── gpio_17xx_40xx.h │ │ │ │ ├── gpioint_17xx_40xx.h │ │ │ │ ├── i2c_17xx_40xx.h │ │ │ │ ├── i2s_17xx_40xx.h │ │ │ │ ├── iap.h │ │ │ │ ├── iocon_17xx_40xx.h │ │ │ │ ├── lcd_17xx_40xx.h │ │ │ │ ├── lpc_types.h │ │ │ │ ├── mcpwm_17xx_40xx.h │ │ │ │ ├── pmu_17xx_40xx.h │ │ │ │ ├── qei_17xx_40xx.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── ritimer_17xx_40xx.h │ │ │ │ ├── romapi_17xx_40xx.h │ │ │ │ ├── rtc_17xx_40xx.h │ │ │ │ ├── sdc_17xx_40xx.h │ │ │ │ ├── sdmmc_17xx_40xx.h │ │ │ │ ├── spi_17xx_40xx.h │ │ │ │ ├── spifi_17xx_40xx.h │ │ │ │ ├── ssp_17xx_40xx.h │ │ │ │ ├── stopwatch.h │ │ │ │ ├── sys_config.h │ │ │ │ ├── sysctl_17xx_40xx.h │ │ │ │ ├── timer_17xx_40xx.h │ │ │ │ ├── uart_17xx_40xx.h │ │ │ │ ├── usb_17xx_40xx.h │ │ │ │ └── wwdt_17xx_40xx.h │ │ │ └── src │ │ │ │ ├── adc_17xx_40xx.c │ │ │ │ ├── can_17xx_40xx.c │ │ │ │ ├── chip_17xx_40xx.c │ │ │ │ ├── clock_17xx_40xx.c │ │ │ │ ├── cmp_17xx_40xx.c │ │ │ │ ├── crc_17xx_40xx.c │ │ │ │ ├── dac_17xx_40xx.c │ │ │ │ ├── eeprom_17xx_40xx.c │ │ │ │ ├── emc_17xx_40xx.c │ │ │ │ ├── enet_17xx_40xx.c │ │ │ │ ├── gpdma_17xx_40xx.c │ │ │ │ ├── gpio_17xx_40xx.c │ │ │ │ ├── gpioint_17xx_40xx.c │ │ │ │ ├── i2c_17xx_40xx.c │ │ │ │ ├── i2s_17xx_40xx.c │ │ │ │ ├── iap.c │ │ │ │ ├── iocon_17xx_40xx.c │ │ │ │ ├── lcd_17xx_40xx.c │ │ │ │ ├── pmu_17xx_40xx.c │ │ │ │ ├── ring_buffer.c │ │ │ │ ├── ritimer_17xx_40xx.c │ │ │ │ ├── rtc_17xx_40xx.c │ │ │ │ ├── sdc_17xx_40xx.c │ │ │ │ ├── sdmmc_17xx_40xx.c │ │ │ │ ├── spi_17xx_40xx.c │ │ │ │ ├── ssp_17xx_40xx.c │ │ │ │ ├── stopwatch_17xx_40xx.c │ │ │ │ ├── sysctl_17xx_40xx.c │ │ │ │ ├── sysinit_17xx_40xx.c │ │ │ │ ├── timer_17xx_40xx.c │ │ │ │ ├── uart_17xx_40xx.c │ │ │ │ └── wwdt_17xx_40xx.c │ │ │ ├── lpc_chip_18xx │ │ │ ├── inc │ │ │ │ ├── adc_18xx_43xx.h │ │ │ │ ├── aes_18xx_43xx.h │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── atimer_18xx_43xx.h │ │ │ │ ├── ccan_18xx_43xx.h │ │ │ │ ├── cguccu_18xx_43xx.h │ │ │ │ ├── chip.h │ │ │ │ ├── chip_clocks.h │ │ │ │ ├── chip_lpc18xx.h │ │ │ │ ├── chip_lpc43xx.h │ │ │ │ ├── clock_18xx_43xx.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── cmsis_18xx.h │ │ │ │ ├── cmsis_43xx.h │ │ │ │ ├── cmsis_43xx_m0app.h │ │ │ │ ├── cmsis_43xx_m0sub.h │ │ │ │ ├── config_18xx │ │ │ │ │ ├── cmsis_18xx.h │ │ │ │ │ └── sys_config.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── creg_18xx_43xx.h │ │ │ │ ├── dac_18xx_43xx.h │ │ │ │ ├── eeprom.h │ │ │ │ ├── eeprom_18xx_43xx.h │ │ │ │ ├── emc_18xx_43xx.h │ │ │ │ ├── enet_18xx_43xx.h │ │ │ │ ├── error.h │ │ │ │ ├── evrt_18xx_43xx.h │ │ │ │ ├── fmc_18xx_43xx.h │ │ │ │ ├── fpu_init.h │ │ │ │ ├── gima_18xx_43xx.h │ │ │ │ ├── gpdma_18xx_43xx.h │ │ │ │ ├── gpio_18xx_43xx.h │ │ │ │ ├── gpiogroup_18xx_43xx.h │ │ │ │ ├── hsadc_18xx_43xx.h │ │ │ │ ├── i2c_18xx_43xx.h │ │ │ │ ├── i2c_common_18xx_43xx.h │ │ │ │ ├── i2cm_18xx_43xx.h │ │ │ │ ├── i2s_18xx_43xx.h │ │ │ │ ├── iap.h │ │ │ │ ├── iap_18xx_43xx.h │ │ │ │ ├── lcd_18xx_43xx.h │ │ │ │ ├── lpc_types.h │ │ │ │ ├── mcpwm_18xx_43xx.h │ │ │ │ ├── otp_18xx_43xx.h │ │ │ │ ├── packing.h │ │ │ │ ├── pinint_18xx_43xx.h │ │ │ │ ├── pmc_18xx_43xx.h │ │ │ │ ├── qei_18xx_43xx.h │ │ │ │ ├── rgu_18xx_43xx.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── ritimer_18xx_43xx.h │ │ │ │ ├── romapi_18xx_43xx.h │ │ │ │ ├── rtc_18xx_43xx.h │ │ │ │ ├── rtc_ut.h │ │ │ │ ├── sct_18xx_43xx.h │ │ │ │ ├── sct_pwm_18xx_43xx.h │ │ │ │ ├── scu_18xx_43xx.h │ │ │ │ ├── sdif_18xx_43xx.h │ │ │ │ ├── sdio_18xx_43xx.h │ │ │ │ ├── sdmmc.h │ │ │ │ ├── sdmmc_18xx_43xx.h │ │ │ │ ├── sgpio_18xx_43xx.h │ │ │ │ ├── spi_18xx_43xx.h │ │ │ │ ├── spifi_18xx_43xx.h │ │ │ │ ├── ssp_18xx_43xx.h │ │ │ │ ├── stopwatch.h │ │ │ │ ├── timer_18xx_43xx.h │ │ │ │ ├── uart_18xx_43xx.h │ │ │ │ ├── usbhs_18xx_43xx.h │ │ │ │ └── wwdt_18xx_43xx.h │ │ │ └── src │ │ │ │ ├── adc_18xx_43xx.c │ │ │ │ ├── aes_18xx_43xx.c │ │ │ │ ├── atimer_18xx_43xx.c │ │ │ │ ├── ccan_18xx_43xx.c │ │ │ │ ├── chip_18xx_43xx.c │ │ │ │ ├── clock_18xx_43xx.c │ │ │ │ ├── dac_18xx_43xx.c │ │ │ │ ├── eeprom_18xx_43xx.c │ │ │ │ ├── emc_18xx_43xx.c │ │ │ │ ├── enet_18xx_43xx.c │ │ │ │ ├── evrt_18xx_43xx.c │ │ │ │ ├── gpdma_18xx_43xx.c │ │ │ │ ├── gpio_18xx_43xx.c │ │ │ │ ├── gpiogroup_18xx_43xx.c │ │ │ │ ├── i2c_18xx_43xx.c │ │ │ │ ├── i2cm_18xx_43xx.c │ │ │ │ ├── i2s_18xx_43xx.c │ │ │ │ ├── iap_18xx_43xx.c │ │ │ │ ├── lcd_18xx_43xx.c │ │ │ │ ├── otp_18xx_43xx.c │ │ │ │ ├── pinint_18xx_43xx.c │ │ │ │ ├── pmc_18xx_43xx.c │ │ │ │ ├── ring_buffer.c │ │ │ │ ├── ritimer_18xx_43xx.c │ │ │ │ ├── rtc_18xx_43xx.c │ │ │ │ ├── sct_18xx_43xx.c │ │ │ │ ├── sct_pwm_18xx_43xx.c │ │ │ │ ├── sdif_18xx_43xx.c │ │ │ │ ├── sdmmc_18xx_43xx.c │ │ │ │ ├── spi_18xx_43xx.c │ │ │ │ ├── ssp_18xx_43xx.c │ │ │ │ ├── stopwatch_18xx_43xx.c │ │ │ │ ├── sysinit_18xx_43xx.c │ │ │ │ ├── timer_18xx_43xx.c │ │ │ │ ├── uart_18xx_43xx.c │ │ │ │ └── wwdt_18xx_43xx.c │ │ │ ├── lpc_chip_40xx │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── inc │ │ │ │ ├── adc_17xx_40xx.h │ │ │ │ ├── can_17xx_40xx.h │ │ │ │ ├── chip.h │ │ │ │ ├── chip_lpc175x_6x.h │ │ │ │ ├── chip_lpc177x_8x.h │ │ │ │ ├── chip_lpc407x_8x.h │ │ │ │ ├── clock_17xx_40xx.h │ │ │ │ ├── cmp_17xx_40xx.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── cmsis_40xx.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── crc_17xx_40xx.h │ │ │ │ ├── dac_17xx_40xx.h │ │ │ │ ├── eeprom_17xx_40xx.h │ │ │ │ ├── emc_17xx_40xx.h │ │ │ │ ├── enet_17xx_40xx.h │ │ │ │ ├── error.h │ │ │ │ ├── fmc_17xx_40xx.h │ │ │ │ ├── fpu_init.h │ │ │ │ ├── gpdma_17xx_40xx.h │ │ │ │ ├── gpio_17xx_40xx.h │ │ │ │ ├── gpioint_17xx_40xx.h │ │ │ │ ├── i2c_17xx_40xx.h │ │ │ │ ├── i2s_17xx_40xx.h │ │ │ │ ├── iap.h │ │ │ │ ├── iocon_17xx_40xx.h │ │ │ │ ├── lcd_17xx_40xx.h │ │ │ │ ├── lpc_types.h │ │ │ │ ├── mcpwm_17xx_40xx.h │ │ │ │ ├── pmu_17xx_40xx.h │ │ │ │ ├── qei_17xx_40xx.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── ritimer_17xx_40xx.h │ │ │ │ ├── romapi_17xx_40xx.h │ │ │ │ ├── rtc_17xx_40xx.h │ │ │ │ ├── sdc_17xx_40xx.h │ │ │ │ ├── sdmmc.h │ │ │ │ ├── sdmmc_17xx_40xx.h │ │ │ │ ├── spi_17xx_40xx.h │ │ │ │ ├── spifi_17xx_40xx.h │ │ │ │ ├── ssp_17xx_40xx.h │ │ │ │ ├── stopwatch.h │ │ │ │ ├── sys_config.h │ │ │ │ ├── sysctl_17xx_40xx.h │ │ │ │ ├── timer_17xx_40xx.h │ │ │ │ ├── uart_17xx_40xx.h │ │ │ │ ├── usb_17xx_40xx.h │ │ │ │ └── wwdt_17xx_40xx.h │ │ │ └── src │ │ │ │ ├── adc_17xx_40xx.c │ │ │ │ ├── can_17xx_40xx.c │ │ │ │ ├── chip_17xx_40xx.c │ │ │ │ ├── clock_17xx_40xx.c │ │ │ │ ├── cmp_17xx_40xx.c │ │ │ │ ├── crc_17xx_40xx.c │ │ │ │ ├── dac_17xx_40xx.c │ │ │ │ ├── eeprom_17xx_40xx.c │ │ │ │ ├── emc_17xx_40xx.c │ │ │ │ ├── enet_17xx_40xx.c │ │ │ │ ├── fpu_init.c │ │ │ │ ├── gpdma_17xx_40xx.c │ │ │ │ ├── gpio_17xx_40xx.c │ │ │ │ ├── gpioint_17xx_40xx.c │ │ │ │ ├── i2c_17xx_40xx.c │ │ │ │ ├── i2s_17xx_40xx.c │ │ │ │ ├── iap.c │ │ │ │ ├── iocon_17xx_40xx.c │ │ │ │ ├── lcd_17xx_40xx.c │ │ │ │ ├── pmu_17xx_40xx.c │ │ │ │ ├── ring_buffer.c │ │ │ │ ├── ritimer_17xx_40xx.c │ │ │ │ ├── rtc_17xx_40xx.c │ │ │ │ ├── sdc_17xx_40xx.c │ │ │ │ ├── sdmmc_17xx_40xx.c │ │ │ │ ├── spi_17xx_40xx.c │ │ │ │ ├── ssp_17xx_40xx.c │ │ │ │ ├── stopwatch_17xx_40xx.c │ │ │ │ ├── sysctl_17xx_40xx.c │ │ │ │ ├── sysinit_17xx_40xx.c │ │ │ │ ├── timer_17xx_40xx.c │ │ │ │ ├── uart_17xx_40xx.c │ │ │ │ └── wwdt_17xx_40xx.c │ │ │ └── lpc_chip_43xx │ │ │ ├── inc │ │ │ ├── adc_18xx_43xx.h │ │ │ ├── aes_18xx_43xx.h │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_math.h │ │ │ ├── atimer_18xx_43xx.h │ │ │ ├── ccan_18xx_43xx.h │ │ │ ├── cguccu_18xx_43xx.h │ │ │ ├── chip.h │ │ │ ├── chip_clocks.h │ │ │ ├── chip_lpc18xx.h │ │ │ ├── chip_lpc43xx.h │ │ │ ├── clock_18xx_43xx.h │ │ │ ├── cmsis.h │ │ │ ├── cmsis_18xx.h │ │ │ ├── cmsis_43xx.h │ │ │ ├── cmsis_43xx_m0app.h │ │ │ ├── cmsis_43xx_m0sub.h │ │ │ ├── config_43xx │ │ │ │ ├── cmsis_43xx.h │ │ │ │ └── sys_config.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm4_simd.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── creg_18xx_43xx.h │ │ │ ├── dac_18xx_43xx.h │ │ │ ├── eeprom.h │ │ │ ├── eeprom_18xx_43xx.h │ │ │ ├── emc_18xx_43xx.h │ │ │ ├── enet_18xx_43xx.h │ │ │ ├── error.h │ │ │ ├── evrt_18xx_43xx.h │ │ │ ├── fmc_18xx_43xx.h │ │ │ ├── fpu_init.h │ │ │ ├── gima_18xx_43xx.h │ │ │ ├── gpdma_18xx_43xx.h │ │ │ ├── gpio_18xx_43xx.h │ │ │ ├── gpiogroup_18xx_43xx.h │ │ │ ├── hsadc_18xx_43xx.h │ │ │ ├── i2c_18xx_43xx.h │ │ │ ├── i2c_common_18xx_43xx.h │ │ │ ├── i2cm_18xx_43xx.h │ │ │ ├── i2s_18xx_43xx.h │ │ │ ├── iap.h │ │ │ ├── iap_18xx_43xx.h │ │ │ ├── lcd_18xx_43xx.h │ │ │ ├── lpc_types.h │ │ │ ├── mcpwm_18xx_43xx.h │ │ │ ├── otp_18xx_43xx.h │ │ │ ├── packing.h │ │ │ ├── pinint_18xx_43xx.h │ │ │ ├── pmc_18xx_43xx.h │ │ │ ├── qei_18xx_43xx.h │ │ │ ├── rgu_18xx_43xx.h │ │ │ ├── ring_buffer.h │ │ │ ├── ritimer_18xx_43xx.h │ │ │ ├── romapi_18xx_43xx.h │ │ │ ├── rtc_18xx_43xx.h │ │ │ ├── rtc_ut.h │ │ │ ├── sct_18xx_43xx.h │ │ │ ├── sct_pwm_18xx_43xx.h │ │ │ ├── scu_18xx_43xx.h │ │ │ ├── sdif_18xx_43xx.h │ │ │ ├── sdio_18xx_43xx.h │ │ │ ├── sdmmc.h │ │ │ ├── sdmmc_18xx_43xx.h │ │ │ ├── sgpio_18xx_43xx.h │ │ │ ├── spi_18xx_43xx.h │ │ │ ├── spifi_18xx_43xx.h │ │ │ ├── ssp_18xx_43xx.h │ │ │ ├── stopwatch.h │ │ │ ├── timer_18xx_43xx.h │ │ │ ├── uart_18xx_43xx.h │ │ │ ├── usbhs_18xx_43xx.h │ │ │ └── wwdt_18xx_43xx.h │ │ │ └── src │ │ │ ├── adc_18xx_43xx.c │ │ │ ├── aes_18xx_43xx.c │ │ │ ├── atimer_18xx_43xx.c │ │ │ ├── ccan_18xx_43xx.c │ │ │ ├── chip_18xx_43xx.c │ │ │ ├── clock_18xx_43xx.c │ │ │ ├── dac_18xx_43xx.c │ │ │ ├── eeprom_18xx_43xx.c │ │ │ ├── emc_18xx_43xx.c │ │ │ ├── enet_18xx_43xx.c │ │ │ ├── evrt_18xx_43xx.c │ │ │ ├── fpu_init.c │ │ │ ├── gpdma_18xx_43xx.c │ │ │ ├── gpio_18xx_43xx.c │ │ │ ├── gpiogroup_18xx_43xx.c │ │ │ ├── i2c_18xx_43xx.c │ │ │ ├── i2cm_18xx_43xx.c │ │ │ ├── i2s_18xx_43xx.c │ │ │ ├── iap_18xx_43xx.c │ │ │ ├── lcd_18xx_43xx.c │ │ │ ├── otp_18xx_43xx.c │ │ │ ├── pinint_18xx_43xx.c │ │ │ ├── pmc_18xx_43xx.c │ │ │ ├── ring_buffer.c │ │ │ ├── ritimer_18xx_43xx.c │ │ │ ├── rtc_18xx_43xx.c │ │ │ ├── sct_18xx_43xx.c │ │ │ ├── sct_pwm_18xx_43xx.c │ │ │ ├── sdif_18xx_43xx.c │ │ │ ├── sdio_18xx_43xx.c │ │ │ ├── sdmmc_18xx_43xx.c │ │ │ ├── spi_18xx_43xx.c │ │ │ ├── ssp_18xx_43xx.c │ │ │ ├── stopwatch_18xx_43xx.c │ │ │ ├── sysinit_18xx_43xx.c │ │ │ ├── timer_18xx_43xx.c │ │ │ ├── uart_18xx_43xx.c │ │ │ └── wwdt_18xx_43xx.c │ └── readme.md ├── lib │ ├── FreeRTOS │ │ ├── License │ │ │ └── license.txt │ │ ├── Source │ │ │ ├── croutine.c │ │ │ ├── event_groups.c │ │ │ ├── include │ │ │ │ ├── FreeRTOS.h │ │ │ │ ├── StackMacros.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 │ │ │ ├── portable │ │ │ │ ├── Common │ │ │ │ │ └── mpu_wrappers.c │ │ │ │ ├── GCC │ │ │ │ │ ├── ARM_CM0 │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ └── portmacro.h │ │ │ │ ├── MemMang │ │ │ │ │ ├── ReadMe.url │ │ │ │ │ └── heap_4.c │ │ │ │ └── readme.txt │ │ │ ├── queue.c │ │ │ ├── readme.txt │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── freertos_hook.c │ │ └── readme.txt │ ├── fatfs │ │ ├── 00readme.txt │ │ ├── ccsbcs.c │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── diskio1.c │ │ ├── diskio2.c │ │ ├── diskio3.c │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ └── integer.h │ └── segger_rtt │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_Conf.h │ │ └── SEGGER_RTT_SES.c ├── pkg.yml ├── repository.yml ├── src │ ├── class │ │ ├── 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 │ │ ├── custom │ │ │ ├── custom_device.c │ │ │ ├── custom_device.h │ │ │ ├── custom_host.c │ │ │ └── custom_host.h │ │ ├── hid │ │ │ ├── hid.h │ │ │ ├── hid_device.c │ │ │ ├── hid_device.h │ │ │ ├── hid_host.c │ │ │ ├── hid_host.h │ │ │ ├── hid_host1.c │ │ │ ├── hid_host2.c │ │ │ └── hid_host3.c │ │ └── msc │ │ │ ├── msc.h │ │ │ ├── msc_device.c │ │ │ ├── msc_device.h │ │ │ ├── msc_host.c │ │ │ ├── msc_host.h │ │ │ ├── msc_host1.c │ │ │ ├── msc_host2.c │ │ │ └── msc_host3.c │ ├── common │ │ ├── binary.h │ │ ├── compiler │ │ │ ├── tusb_compiler_gcc.h │ │ │ └── tusb_compiler_iar.h │ │ ├── sys_queue.h │ │ ├── tusb_common.h │ │ ├── tusb_compiler.h │ │ ├── tusb_error.h │ │ ├── tusb_fifo.c │ │ ├── tusb_fifo.h │ │ ├── tusb_timeout.h │ │ ├── tusb_types.h │ │ └── tusb_verify.h │ ├── device │ │ ├── dcd.h │ │ ├── usbd.c │ │ ├── usbd.h │ │ ├── usbd_auto_desc.c │ │ ├── usbd_control.c │ │ └── usbd_pvt.h │ ├── host │ │ ├── ehci │ │ │ ├── ehci.c │ │ │ └── ehci.h │ │ ├── hcd.h │ │ ├── hub.c │ │ ├── hub.h │ │ ├── hub1.c │ │ ├── hub2.c │ │ ├── hub3.c │ │ ├── ohci │ │ │ ├── chip.h │ │ │ ├── ohci.c │ │ │ ├── ohci.h │ │ │ ├── ohci1.c │ │ │ ├── ohci2.c │ │ │ └── ohci3.c │ │ ├── usbh.c │ │ ├── usbh.h │ │ ├── usbh1.c │ │ ├── usbh2.c │ │ ├── usbh3.c │ │ ├── usbh_hcd.h │ │ └── usbh_hub.h │ ├── license.md │ ├── osal │ │ ├── osal.c │ │ ├── osal.h │ │ ├── osal_freertos.h │ │ ├── osal_mynewt.h │ │ └── osal_none.h │ ├── portable │ │ ├── microchip │ │ │ ├── samd21 │ │ │ │ └── dcd_samd21.c │ │ │ └── samd51 │ │ │ │ └── dcd_samd51.c │ │ ├── nordic │ │ │ └── nrf5x │ │ │ │ ├── dcd_nrf5x.c │ │ │ │ ├── hal_nrf5x.c │ │ │ │ └── nrf_drv_usbd_errata.h │ │ ├── nxp │ │ │ ├── lpc11_13_15 │ │ │ │ ├── dcd_lpc11_13_15.c │ │ │ │ └── dcd_lpc11_13_15.h │ │ │ ├── lpc17_40 │ │ │ │ ├── dcd_lpc17_40.c │ │ │ │ ├── dcd_lpc17_40.h │ │ │ │ └── hal_lpc17_40.c │ │ │ └── lpc18_43 │ │ │ │ ├── dcd_lpc18_43.c │ │ │ │ ├── dcd_lpc18_43.h │ │ │ │ ├── hal_lpc18_43.c │ │ │ │ └── hcd_lpc18_43.c │ │ └── readme.md │ ├── redef.h │ ├── tusb.c │ ├── tusb.h │ ├── tusb1.c │ ├── tusb2.c │ ├── tusb3.c │ ├── tusb_config.h │ ├── tusb_hal.h │ └── tusb_option.h ├── tests │ ├── .cproject │ ├── .project │ ├── lpc175x_6x │ │ ├── build │ │ │ └── readme.md │ │ ├── project.yml │ │ ├── rakefile.rb │ │ └── test │ │ │ ├── test_dcd_lpc175x_6x.c │ │ │ └── test_usbd.c │ ├── lpc18xx_43xx │ │ ├── build │ │ │ └── readme.md │ │ ├── project.yml │ │ ├── rakefile.rb │ │ └── test │ │ │ ├── host │ │ │ ├── cdc │ │ │ │ ├── cdc_callback.h │ │ │ │ ├── descriptor_cdc.c │ │ │ │ ├── descriptor_cdc.h │ │ │ │ ├── test_cdc_host.c │ │ │ │ └── test_cdc_rndis_host.c │ │ │ ├── ehci │ │ │ │ ├── test_ehci_init.c │ │ │ │ ├── test_ehci_isr.c │ │ │ │ ├── test_ehci_structure.c │ │ │ │ ├── test_ehci_usbh_hcd_integration.c │ │ │ │ ├── test_pipe_bulk_open.c │ │ │ │ ├── test_pipe_bulk_xfer.c │ │ │ │ ├── test_pipe_control_open.c │ │ │ │ ├── test_pipe_control_xfer.c │ │ │ │ ├── test_pipe_interrupt_open.c │ │ │ │ ├── test_pipe_interrupt_xfer.c │ │ │ │ └── test_pipe_isochronous_open.c │ │ │ ├── hid │ │ │ │ ├── hidh_callback.h │ │ │ │ ├── test_hid_host.c │ │ │ │ ├── test_hidh_generic.c │ │ │ │ ├── test_hidh_keyboard.c │ │ │ │ └── test_hidh_mouse.c │ │ │ ├── host_helper.h │ │ │ ├── hub │ │ │ │ └── test_hub.c │ │ │ ├── integration │ │ │ │ └── test_hidh_keyboard_integrate.c │ │ │ ├── msc │ │ │ │ ├── msch_callback.h │ │ │ │ └── test_msc_host.c │ │ │ └── usbh │ │ │ │ ├── test_enum_task.c │ │ │ │ └── test_usbh.c │ │ │ ├── test_assertion.c │ │ │ ├── test_binary.c │ │ │ ├── test_fifo.c │ │ │ ├── test_osal_freeRTOS.c │ │ │ ├── test_osal_none.c │ │ │ └── test_project_settings.c │ ├── readme.md │ ├── support │ │ ├── FreeRTOSConfig.h │ │ ├── LPC17xx.h │ │ ├── LPC43xx.h │ │ ├── descriptor_test.c │ │ ├── descriptor_test.h │ │ ├── ehci_controller_fake.c │ │ ├── ehci_controller_fake.h │ │ ├── tusb_callback.h │ │ ├── tusb_config.h │ │ └── type_helper.h │ └── vendor │ │ └── ceedling │ │ ├── lib │ │ ├── build_invoker_utils.rb │ │ ├── cacheinator.rb │ │ ├── cacheinator_helper.rb │ │ ├── ceedling.rb │ │ ├── ceedling │ │ │ ├── version.rb │ │ │ └── version.rb.erb │ │ ├── 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 │ │ └── yaml_wrapper.rb │ │ ├── plugins │ │ ├── bullseye │ │ │ ├── assets │ │ │ │ └── template.erb │ │ │ ├── bullseye.rake │ │ │ ├── config │ │ │ │ └── defaults.yml │ │ │ ├── lib │ │ │ │ └── bullseye.rb │ │ │ └── readme.txt │ │ ├── gcov │ │ │ ├── defaults.yml │ │ │ ├── gcov.rake │ │ │ ├── gcov.rb │ │ │ ├── readme.txt │ │ │ └── template.erb │ │ ├── module_generator │ │ │ ├── config │ │ │ │ └── module_generator.yml │ │ │ ├── lib │ │ │ │ └── module_generator.rb │ │ │ └── module_generator.rake │ │ ├── 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 │ │ ├── warnings_report │ │ │ └── warnings_report.rb │ │ └── xml_tests_report │ │ │ └── xml_tests_report.rb │ │ ├── release │ │ ├── build.info │ │ └── version.info │ │ └── 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_ignore.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 │ │ ├── constructor │ │ ├── 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 │ │ ├── test_file_filter.rb │ │ └── unity_test_summary.rb │ │ ├── extras │ │ └── fixture │ │ │ ├── readme.txt │ │ │ └── src │ │ │ ├── unity_fixture.c │ │ │ ├── unity_fixture.h │ │ │ ├── unity_fixture_internals.h │ │ │ └── unity_fixture_malloc_overrides.h │ │ ├── release │ │ ├── build.info │ │ └── version.info │ │ └── src │ │ ├── unity.c │ │ ├── unity.h │ │ └── unity_internals.h ├── tinyusb.Doxyfile ├── tools │ ├── readme.md │ ├── top.mk │ └── windows_cdc_driver │ │ └── tusb_usbser.inf └── version.yml ├── tve.c ├── tve.h ├── uart.c ├── uart.h ├── ubsan.c ├── usb.c ├── usb.h ├── util.h └── video_encoder.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | os.* 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/README -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/audio.h -------------------------------------------------------------------------------- /audio_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/audio_hdmi.c -------------------------------------------------------------------------------- /audio_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/audio_i2s.c -------------------------------------------------------------------------------- /boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/boot.S -------------------------------------------------------------------------------- /cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/cache.S -------------------------------------------------------------------------------- /ccu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/ccu.h -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/common.mk -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/configure.sh -------------------------------------------------------------------------------- /crosstool-ng.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/crosstool-ng.config -------------------------------------------------------------------------------- /dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/dirent.h -------------------------------------------------------------------------------- /display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/display.c -------------------------------------------------------------------------------- /display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/display.h -------------------------------------------------------------------------------- /display_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/display_filter.c -------------------------------------------------------------------------------- /dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/dma.c -------------------------------------------------------------------------------- /dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/dma.h -------------------------------------------------------------------------------- /dw_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/dw_hdmi.h -------------------------------------------------------------------------------- /examples/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/Makefile -------------------------------------------------------------------------------- /examples/demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/demo.c -------------------------------------------------------------------------------- /examples/demo/demo_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/demo_data.h -------------------------------------------------------------------------------- /examples/demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/main.c -------------------------------------------------------------------------------- /examples/demo/spritelayers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/spritelayers.c -------------------------------------------------------------------------------- /examples/demo/spritelayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/examples/demo/spritelayers.h -------------------------------------------------------------------------------- /exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/exceptions.c -------------------------------------------------------------------------------- /fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/00history.txt -------------------------------------------------------------------------------- /fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/00readme.txt -------------------------------------------------------------------------------- /fatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/Makefile -------------------------------------------------------------------------------- /fatfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/README.md -------------------------------------------------------------------------------- /fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/diskio.c -------------------------------------------------------------------------------- /fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/diskio.h -------------------------------------------------------------------------------- /fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/ff.c -------------------------------------------------------------------------------- /fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/ff.h -------------------------------------------------------------------------------- /fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/ffconf.h -------------------------------------------------------------------------------- /fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/ffsystem.c -------------------------------------------------------------------------------- /fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/ffunicode.c -------------------------------------------------------------------------------- /fatfs/mmc_sunxi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/mmc_sunxi.c -------------------------------------------------------------------------------- /fatfs/mmcbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fatfs/mmcbb.c -------------------------------------------------------------------------------- /fixed_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fixed_addr.h -------------------------------------------------------------------------------- /fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fs.c -------------------------------------------------------------------------------- /fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/fs.h -------------------------------------------------------------------------------- /gdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/README -------------------------------------------------------------------------------- /gdb/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/assembly.h -------------------------------------------------------------------------------- /gdb/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/debug.h -------------------------------------------------------------------------------- /gdb/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/gdbstub.c -------------------------------------------------------------------------------- /gdb/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/gdbstub.h -------------------------------------------------------------------------------- /gdb/gdbstub_jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/gdbstub_jh.c -------------------------------------------------------------------------------- /gdb/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/kernel.h -------------------------------------------------------------------------------- /gdb/printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/printk.c -------------------------------------------------------------------------------- /gdb/printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/printk.h -------------------------------------------------------------------------------- /gdb/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/regs.h -------------------------------------------------------------------------------- /gdb/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/string.c -------------------------------------------------------------------------------- /gdb/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/string.h -------------------------------------------------------------------------------- /gdb/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/types.h -------------------------------------------------------------------------------- /gdb/tzvecs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/gdb/tzvecs.S -------------------------------------------------------------------------------- /h264enc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/README -------------------------------------------------------------------------------- /h264enc/audio_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/audio_in.c -------------------------------------------------------------------------------- /h264enc/audio_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/audio_in.h -------------------------------------------------------------------------------- /h264enc/h264avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/h264avi.c -------------------------------------------------------------------------------- /h264enc/h264avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/h264avi.h -------------------------------------------------------------------------------- /h264enc/h264enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/h264enc.c -------------------------------------------------------------------------------- /h264enc/h264enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/h264enc.h -------------------------------------------------------------------------------- /h264enc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/main.c -------------------------------------------------------------------------------- /h264enc/ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/ve.c -------------------------------------------------------------------------------- /h264enc/ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/h264enc/ve.h -------------------------------------------------------------------------------- /init_comms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/init_comms.c -------------------------------------------------------------------------------- /interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/interrupts.c -------------------------------------------------------------------------------- /interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/interrupts.h -------------------------------------------------------------------------------- /jailgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/jailgdb.c -------------------------------------------------------------------------------- /lib-h3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/.gitignore -------------------------------------------------------------------------------- /lib-h3/E131/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/E131/.classpath -------------------------------------------------------------------------------- /lib-h3/E131/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/E131/.project -------------------------------------------------------------------------------- /lib-h3/E131/DiscoverySniffer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/E131/DiscoverySniffer.jar -------------------------------------------------------------------------------- /lib-h3/E131/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/E131/README.md -------------------------------------------------------------------------------- /lib-h3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/LICENSE -------------------------------------------------------------------------------- /lib-h3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/README.md -------------------------------------------------------------------------------- /lib-h3/RemoteConfigUI/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/RemoteConfigUI/.classpath -------------------------------------------------------------------------------- /lib-h3/RemoteConfigUI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/RemoteConfigUI/.project -------------------------------------------------------------------------------- /lib-h3/firmware-template/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/firmware-template/.project -------------------------------------------------------------------------------- /lib-h3/firmware-template/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/firmware-template/Rules.mk -------------------------------------------------------------------------------- /lib-h3/firmware-template/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/firmware-template/memmap -------------------------------------------------------------------------------- /lib-h3/firmware-template/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/firmware-template/vectors.s -------------------------------------------------------------------------------- /lib-h3/h3-firmware-template/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/h3-firmware-template/memmap -------------------------------------------------------------------------------- /lib-h3/include/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/.project -------------------------------------------------------------------------------- /lib-h3/include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/algorithm -------------------------------------------------------------------------------- /lib-h3/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/arpa/inet.h -------------------------------------------------------------------------------- /lib-h3/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/assert.h -------------------------------------------------------------------------------- /lib-h3/include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/cassert -------------------------------------------------------------------------------- /lib-h3/include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/cstddef -------------------------------------------------------------------------------- /lib-h3/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/ctype.h -------------------------------------------------------------------------------- /lib-h3/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/dirent.h -------------------------------------------------------------------------------- /lib-h3/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/errno.h -------------------------------------------------------------------------------- /lib-h3/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/limits.h -------------------------------------------------------------------------------- /lib-h3/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/math.h -------------------------------------------------------------------------------- /lib-h3/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/net/if.h -------------------------------------------------------------------------------- /lib-h3/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/netinet/in.h -------------------------------------------------------------------------------- /lib-h3/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/poll.h -------------------------------------------------------------------------------- /lib-h3/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stdarg.h -------------------------------------------------------------------------------- /lib-h3/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stdbool.h -------------------------------------------------------------------------------- /lib-h3/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stddef.h -------------------------------------------------------------------------------- /lib-h3/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stdint.h -------------------------------------------------------------------------------- /lib-h3/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stdio.h -------------------------------------------------------------------------------- /lib-h3/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/stdlib.h -------------------------------------------------------------------------------- /lib-h3/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/string.h -------------------------------------------------------------------------------- /lib-h3/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/sys/time.h -------------------------------------------------------------------------------- /lib-h3/include/sys/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/sys/timerfd.h -------------------------------------------------------------------------------- /lib-h3/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/time.h -------------------------------------------------------------------------------- /lib-h3/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/unistd.h -------------------------------------------------------------------------------- /lib-h3/include/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/include/uuid/uuid.h -------------------------------------------------------------------------------- /lib-h3/lib-arm/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-arm/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/.project -------------------------------------------------------------------------------- /lib-h3/lib-arm/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | EXTRA_SRCDIR = src/aeabi 3 | # 4 | include ../firmware-template/lib/Rules.mk -------------------------------------------------------------------------------- /lib-h3/lib-arm/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/README.md -------------------------------------------------------------------------------- /lib-h3/lib-arm/include/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/include/arm/arm.h -------------------------------------------------------------------------------- /lib-h3/lib-arm/include/arm/pl011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/include/arm/pl011.h -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/cache-v7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/cache-v7.S -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/fiq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/fiq.c -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/irq.c -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/memcpy_blk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/memcpy_blk.S -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/spinlock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/spinlock.S -------------------------------------------------------------------------------- /lib-h3/lib-arm/src/vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-arm/src/vfp.c -------------------------------------------------------------------------------- /lib-h3/lib-artnet/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-artnet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/.project -------------------------------------------------------------------------------- /lib-h3/lib-artnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-artnet/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-artnet/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-artnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/README.md -------------------------------------------------------------------------------- /lib-h3/lib-artnet/include/artnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet/include/artnet.h -------------------------------------------------------------------------------- /lib-h3/lib-artnet4/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet4/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-artnet4/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet4/.project -------------------------------------------------------------------------------- /lib-h3/lib-artnet4/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet4/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-artnet4/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet4/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-artnet4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnet4/README.md -------------------------------------------------------------------------------- /lib-h3/lib-artnethandlers/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-artnethandlers/.project -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/.project -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/README.md -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/arm/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/arm/arm.c -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/arm/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/arm/mmu.c -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/arm/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/arm/smp.c -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/device/fb/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/device/fb/fb.c -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/src/irq_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/src/irq_timer.c -------------------------------------------------------------------------------- /lib-h3/lib-bcm2835/src/udelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-bcm2835/src/udelay.c -------------------------------------------------------------------------------- /lib-h3/lib-c++/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-c++/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/.project -------------------------------------------------------------------------------- /lib-h3/lib-c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-c++/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-c++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/README.md -------------------------------------------------------------------------------- /lib-h3/lib-c++/src/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/src/delete.cpp -------------------------------------------------------------------------------- /lib-h3/lib-c++/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/src/new.cpp -------------------------------------------------------------------------------- /lib-h3/lib-c++/src/purecall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c++/src/purecall.cpp -------------------------------------------------------------------------------- /lib-h3/lib-c/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-c/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/.project -------------------------------------------------------------------------------- /lib-h3/lib-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-c/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/README.md -------------------------------------------------------------------------------- /lib-h3/lib-c/src/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/asctime.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/assert.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/errno.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/h3/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/h3/clock.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/h3/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/h3/time.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/inet_aton.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/log.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/malloc.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/memcpy.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/memset.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/perror.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/printf.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/putchar.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/puts.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/random.c -------------------------------------------------------------------------------- /lib-h3/lib-c/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-c/src/time.c -------------------------------------------------------------------------------- /lib-h3/lib-debug/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-debug/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/.project -------------------------------------------------------------------------------- /lib-h3/lib-debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-debug/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-debug/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-debug/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/include/debug.h -------------------------------------------------------------------------------- /lib-h3/lib-debug/src/debug.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-h3/lib-debug/src/debug_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-debug/src/debug_dump.c -------------------------------------------------------------------------------- /lib-h3/lib-device/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-device/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/.project -------------------------------------------------------------------------------- /lib-h3/lib-device/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-device/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-device/include/bh1750.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/include/bh1750.h -------------------------------------------------------------------------------- /lib-h3/lib-device/include/bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/include/bw.h -------------------------------------------------------------------------------- /lib-h3/lib-device/include/htu21d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/include/htu21d.h -------------------------------------------------------------------------------- /lib-h3/lib-device/include/ina219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/include/ina219.h -------------------------------------------------------------------------------- /lib-h3/lib-device/include/si7021.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/include/si7021.h -------------------------------------------------------------------------------- /lib-h3/lib-device/src/bh1750.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/bh1750.cpp -------------------------------------------------------------------------------- /lib-h3/lib-device/src/font_cp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/font_cp437.c -------------------------------------------------------------------------------- /lib-h3/lib-device/src/font_cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/font_cp437.h -------------------------------------------------------------------------------- /lib-h3/lib-device/src/htu21d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/htu21d.cpp -------------------------------------------------------------------------------- /lib-h3/lib-device/src/ina219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/ina219.cpp -------------------------------------------------------------------------------- /lib-h3/lib-device/src/mcp9808.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/mcp9808.cpp -------------------------------------------------------------------------------- /lib-h3/lib-device/src/si5351a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/si5351a.cpp -------------------------------------------------------------------------------- /lib-h3/lib-device/src/si7021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-device/src/si7021.cpp -------------------------------------------------------------------------------- /lib-h3/lib-display/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-display/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/.project -------------------------------------------------------------------------------- /lib-h3/lib-display/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-display/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-display/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/README.md -------------------------------------------------------------------------------- /lib-h3/lib-display/include/lcdbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/include/lcdbw.h -------------------------------------------------------------------------------- /lib-h3/lib-display/src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/src/display.cpp -------------------------------------------------------------------------------- /lib-h3/lib-display/src/lcdbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/src/lcdbw.cpp -------------------------------------------------------------------------------- /lib-h3/lib-display/src/ssd1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/src/ssd1306.cpp -------------------------------------------------------------------------------- /lib-h3/lib-display/src/ssd1311.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/src/ssd1311.cpp -------------------------------------------------------------------------------- /lib-h3/lib-display/src/tc1602.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-display/src/tc1602.cpp -------------------------------------------------------------------------------- /lib-h3/lib-displayudf/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-displayudf/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-displayudf/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-displayudf/.project -------------------------------------------------------------------------------- /lib-h3/lib-displayudf/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-displayudf/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-e131/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-e131/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/.project -------------------------------------------------------------------------------- /lib-h3/lib-e131/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-e131/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-e131/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-e131/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/README.md -------------------------------------------------------------------------------- /lib-h3/lib-e131/include/e117.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/include/e117.h -------------------------------------------------------------------------------- /lib-h3/lib-e131/include/e131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/include/e131.h -------------------------------------------------------------------------------- /lib-h3/lib-e131/include/e131dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/include/e131dmx.h -------------------------------------------------------------------------------- /lib-h3/lib-e131/include/e131sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/include/e131sync.h -------------------------------------------------------------------------------- /lib-h3/lib-e131/include/e131uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/include/e131uuid.h -------------------------------------------------------------------------------- /lib-h3/lib-e131/src/e117const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/src/e117const.cpp -------------------------------------------------------------------------------- /lib-h3/lib-e131/src/e131bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/src/e131bridge.cpp -------------------------------------------------------------------------------- /lib-h3/lib-e131/src/e131params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/src/e131params.cpp -------------------------------------------------------------------------------- /lib-h3/lib-e131/src/e131uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-e131/src/e131uuid.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-gps/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/.project -------------------------------------------------------------------------------- /lib-h3/lib-gps/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-gps/include/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/include/gps.h -------------------------------------------------------------------------------- /lib-h3/lib-gps/include/gpsconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/include/gpsconst.h -------------------------------------------------------------------------------- /lib-h3/lib-gps/include/gpsparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/include/gpsparams.h -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gps.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gpsconst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gpsconst.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gpsdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gpsdump.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gpsparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gpsparams.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gpsprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gpsprint.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/gpsstatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/gpsstatic.cpp -------------------------------------------------------------------------------- /lib-h3/lib-gps/src/h3/gpsuart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-gps/src/h3/gpsuart.cpp -------------------------------------------------------------------------------- /lib-h3/lib-h3/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-h3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/.project -------------------------------------------------------------------------------- /lib-h3/lib-h3/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-h3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/README.md -------------------------------------------------------------------------------- /lib-h3/lib-h3/arm/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/arm/arm.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/arm/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/arm/gic.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/arm/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/arm/mmu.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/emac/emac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/emac/emac.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/emac/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/emac/mii.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/emac/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/emac/phy.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/emac/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/emac/phy.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/dw_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/dw_hdmi.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/dw_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/dw_hdmi.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/edid.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/fb.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/h3_de2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/h3_de2.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/h3_de2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/h3_de2.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/h3_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/h3_hdmi.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/fb/h3_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/fb/h3_lcd.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/mmc/mmc.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/device/mmc/mmc_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/device/mmc/mmc_bsp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/arm/gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/arm/gic.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/device/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/device/fb.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_board.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_ccu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_ccu.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_codec.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_cpu.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_dma.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_gpio.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_i2c.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_sid.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_smp.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_spi.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_thermal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_thermal.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/h3_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/h3_timer.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/irq_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/irq_timer.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/net/net.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/include/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/include/uart.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/arp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/arp_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/arp_cache.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/dhcp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/dhcp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/dhcp_internal.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/icmp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/igmp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/ip.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/net.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/net_chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/net_chksum.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/net_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/net_debug.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/net_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/net_packets.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/net_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/net_timers.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/ntp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/ntp_internal.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/rfc3927.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/rfc3927.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/tftp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/tftp_internal.h -------------------------------------------------------------------------------- /lib-h3/lib-h3/net/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/net/udp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_board.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_ccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_ccu.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_codec.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_cpu.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_gpio_fsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_gpio_fsel.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_gpio_pud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_gpio_pud.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_gpu.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_hs_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_hs_timer.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_i2c.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_memcpy.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_sid.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_smp.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_spi.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_spinlock.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_thermal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_thermal.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_timer.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_uart0_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_uart0_debug.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_usb.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/h3_watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/h3_watchdog.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/hardware_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/hardware_init.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/irq_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/irq_timer.c -------------------------------------------------------------------------------- /lib-h3/lib-h3/src/udelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-h3/src/udelay.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-hal/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/.project -------------------------------------------------------------------------------- /lib-h3/lib-hal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-hal/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-hal/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-hal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/README.md -------------------------------------------------------------------------------- /lib-h3/lib-hal/debug/i2cdetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/debug/i2cdetect.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/debug/i2cdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/debug/i2cdetect.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/ff12c/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/ff12c/diskio.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/ff12c/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/ff12c/ff.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/ff12c/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/ff12c/ff.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/ff12c/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/ff12c/ffconf.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/ff12c/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/ff12c/integer.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/console.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/hal_gpio.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/hal_i2c.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/hal_spi.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/hardware.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/hwclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/hwclock.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/ledblink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/ledblink.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/include/utc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/include/utc.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/posix/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/posix/file.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/rtc/hwclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/rtc/hwclock.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/rtc/hwclockrtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/rtc/hwclockrtc.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/rtc/hwclockrun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/rtc/hwclockrun.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/rtc/hwclockset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/rtc/hwclockset.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/font.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/font.S -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/font.bin -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/h3/console_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/h3/console_fb.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/h3/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/h3/hardware.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/h3/sys_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/h3/sys_time.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/ledblink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/ledblink.cpp -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/linux/micros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/linux/micros.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/rpi/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/rpi/rtc.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/rpi/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/rpi/rtc.h -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/rpi/sys_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/rpi/sys_time.c -------------------------------------------------------------------------------- /lib-h3/lib-hal/src/utc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-hal/src/utc.cpp -------------------------------------------------------------------------------- /lib-h3/lib-input/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-input/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/.project -------------------------------------------------------------------------------- /lib-h3/lib-input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-input/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-input/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/README.md -------------------------------------------------------------------------------- /lib-h3/lib-input/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/include/input.h -------------------------------------------------------------------------------- /lib-h3/lib-input/src/buttonsbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-input/src/buttonsbw.cpp -------------------------------------------------------------------------------- /lib-h3/lib-jamstapl/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-jamstapl/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-jamstapl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-jamstapl/.project -------------------------------------------------------------------------------- /lib-h3/lib-jamstapl/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-jamstapl/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-l6470/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-l6470/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/.project -------------------------------------------------------------------------------- /lib-h3/lib-l6470/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-l6470/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-l6470/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-l6470/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/README.md -------------------------------------------------------------------------------- /lib-h3/lib-l6470/include/l6470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/include/l6470.h -------------------------------------------------------------------------------- /lib-h3/lib-l6470/src/l6470.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/src/l6470.cpp -------------------------------------------------------------------------------- /lib-h3/lib-l6470/src/l6470dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/src/l6470dump.cpp -------------------------------------------------------------------------------- /lib-h3/lib-l6470/src/slushtemp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470/src/slushtemp.cpp -------------------------------------------------------------------------------- /lib-h3/lib-l6470dmx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470dmx/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-l6470dmx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470dmx/.project -------------------------------------------------------------------------------- /lib-h3/lib-l6470dmx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470dmx/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-l6470dmx/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470dmx/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-l6470dmx/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-l6470dmx/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-lightset/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-lightset/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-lightset/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-lightset/.project -------------------------------------------------------------------------------- /lib-h3/lib-lightset/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | DEFINES = NDEBUG 3 | # 4 | include ../firmware-template/lib/Rules.mk -------------------------------------------------------------------------------- /lib-h3/lib-lightset/Makefile.H3: -------------------------------------------------------------------------------- 1 | # 2 | DEFINES = NDEBUG 3 | # 4 | include ../h3-firmware-template/lib/Rules.mk -------------------------------------------------------------------------------- /lib-h3/lib-lightset/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-lightset/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-lightset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-lightset/README.md -------------------------------------------------------------------------------- /lib-h3/lib-ltc/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-ltc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/.project -------------------------------------------------------------------------------- /lib-h3/lib-ltc/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-ltc/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-ltc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/README.md -------------------------------------------------------------------------------- /lib-h3/lib-ltc/include/h3/ltc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/include/h3/ltc.h -------------------------------------------------------------------------------- /lib-h3/lib-ltc/include/ltc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/include/ltc.h -------------------------------------------------------------------------------- /lib-h3/lib-ltc/include/ltcparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/include/ltcparams.h -------------------------------------------------------------------------------- /lib-h3/lib-ltc/include/ntpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/include/ntpserver.h -------------------------------------------------------------------------------- /lib-h3/lib-ltc/src/ltc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/src/ltc.cpp -------------------------------------------------------------------------------- /lib-h3/lib-ltc/src/ltc7segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/src/ltc7segment.cpp -------------------------------------------------------------------------------- /lib-h3/lib-ltc/src/ltcencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/src/ltcencoder.cpp -------------------------------------------------------------------------------- /lib-h3/lib-ltc/src/ltcparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/src/ltcparams.cpp -------------------------------------------------------------------------------- /lib-h3/lib-ltc/src/ntpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ltc/src/ntpserver.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-midi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/.project -------------------------------------------------------------------------------- /lib-h3/lib-midi/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-midi/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-midi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/README.md -------------------------------------------------------------------------------- /lib-h3/lib-midi/include/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/include/midi.h -------------------------------------------------------------------------------- /lib-h3/lib-midi/include/midibpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/include/midibpm.h -------------------------------------------------------------------------------- /lib-h3/lib-midi/include/rtpmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/include/rtpmidi.h -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/applemidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/applemidi.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/h3/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/h3/midi.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/midi.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/midiparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/midiparams.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/midiprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/midiprint.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/midiqf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/midiqf.cpp -------------------------------------------------------------------------------- /lib-h3/lib-midi/src/rtpmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-midi/src/rtpmidi.cpp -------------------------------------------------------------------------------- /lib-h3/lib-network/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-network/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/.project -------------------------------------------------------------------------------- /lib-h3/lib-network/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-network/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/README.md -------------------------------------------------------------------------------- /lib-h3/lib-network/src/mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-network/src/mdns.cpp -------------------------------------------------------------------------------- /lib-h3/lib-osc/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-osc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/.project -------------------------------------------------------------------------------- /lib-h3/lib-osc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-osc/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-osc/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-osc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/README.md -------------------------------------------------------------------------------- /lib-h3/lib-osc/include/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-osc/include/osc.h -------------------------------------------------------------------------------- /lib-h3/lib-oscclient/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscclient/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-oscclient/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscclient/.project -------------------------------------------------------------------------------- /lib-h3/lib-oscclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscclient/README.md -------------------------------------------------------------------------------- /lib-h3/lib-oscserver/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscserver/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-oscserver/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscserver/.project -------------------------------------------------------------------------------- /lib-h3/lib-oscserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscserver/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-oscserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-oscserver/README.md -------------------------------------------------------------------------------- /lib-h3/lib-pca9685/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-pca9685/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685/.project -------------------------------------------------------------------------------- /lib-h3/lib-pca9685/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-pca9685/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685/README.md -------------------------------------------------------------------------------- /lib-h3/lib-pca9685dmx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685dmx/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-pca9685dmx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685dmx/.project -------------------------------------------------------------------------------- /lib-h3/lib-pca9685dmx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-pca9685dmx/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-properties/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-properties/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-properties/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-properties/.project -------------------------------------------------------------------------------- /lib-h3/lib-properties/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-properties/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-rgbpanel/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-rgbpanel/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-rgbpanel/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-rgbpanel/.project -------------------------------------------------------------------------------- /lib-h3/lib-rgbpanel/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-rgbpanel/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-showfile/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-showfile/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-showfile/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-showfile/.project -------------------------------------------------------------------------------- /lib-h3/lib-showfile/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-showfile/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-spiflash/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-spiflash/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-spiflash/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-spiflash/.project -------------------------------------------------------------------------------- /lib-h3/lib-spiflash/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-spiflash/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/.project -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/Makefile.Linux -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/README.md -------------------------------------------------------------------------------- /lib-h3/lib-tcnet/src/tcnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tcnet/src/tcnet.cpp -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711/.project -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711/README.md -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711dmx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711dmx/.project -------------------------------------------------------------------------------- /lib-h3/lib-tlc59711dmx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-tlc59711dmx/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-usb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-usb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/.project -------------------------------------------------------------------------------- /lib-h3/lib-usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-usb/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-usb/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/include/usb.h -------------------------------------------------------------------------------- /lib-h3/lib-usb/src/h3/ft245rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/src/h3/ft245rl.c -------------------------------------------------------------------------------- /lib-h3/lib-usb/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-usb/src/usb.c -------------------------------------------------------------------------------- /lib-h3/lib-uuid/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-uuid/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/.project -------------------------------------------------------------------------------- /lib-h3/lib-uuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-uuid/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-uuid/src/h3/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/src/h3/uuid.c -------------------------------------------------------------------------------- /lib-h3/lib-uuid/src/rpi/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-uuid/src/rpi/uuid.c -------------------------------------------------------------------------------- /lib-h3/lib-widget/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-widget/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-widget/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-widget/.project -------------------------------------------------------------------------------- /lib-h3/lib-widget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-widget/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-widget/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-widget/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-ws28xx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xx/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-ws28xx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xx/.project -------------------------------------------------------------------------------- /lib-h3/lib-ws28xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xx/Makefile -------------------------------------------------------------------------------- /lib-h3/lib-ws28xx/Makefile.H3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xx/Makefile.H3 -------------------------------------------------------------------------------- /lib-h3/lib-ws28xx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xx/README.md -------------------------------------------------------------------------------- /lib-h3/lib-ws28xxdmx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xxdmx/.cproject -------------------------------------------------------------------------------- /lib-h3/lib-ws28xxdmx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xxdmx/.project -------------------------------------------------------------------------------- /lib-h3/lib-ws28xxdmx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/lib-ws28xxdmx/Makefile -------------------------------------------------------------------------------- /lib-h3/scripts/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/.project -------------------------------------------------------------------------------- /lib-h3/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/README.md -------------------------------------------------------------------------------- /lib-h3/scripts/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/build_linux.sh -------------------------------------------------------------------------------- /lib-h3/scripts/build_this.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/build_this.sh -------------------------------------------------------------------------------- /lib-h3/scripts/do-tftp-one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/do-tftp-one.sh -------------------------------------------------------------------------------- /lib-h3/scripts/libs-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/libs-clean.sh -------------------------------------------------------------------------------- /lib-h3/scripts/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/reboot.sh -------------------------------------------------------------------------------- /lib-h3/scripts/upload_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lib-h3/scripts/upload_all.sh -------------------------------------------------------------------------------- /libc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/libc_common.c -------------------------------------------------------------------------------- /libc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/libc_io.c -------------------------------------------------------------------------------- /libc_io_jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/libc_io_jh.c -------------------------------------------------------------------------------- /libc_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/libc_server.c -------------------------------------------------------------------------------- /libc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/libc_server.h -------------------------------------------------------------------------------- /linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/linker.ld -------------------------------------------------------------------------------- /linker_jh.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/linker_jh.ld -------------------------------------------------------------------------------- /lwip/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/BUILDING -------------------------------------------------------------------------------- /lwip/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/CHANGELOG -------------------------------------------------------------------------------- /lwip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/CMakeLists.txt -------------------------------------------------------------------------------- /lwip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/COPYING -------------------------------------------------------------------------------- /lwip/FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/FEATURES -------------------------------------------------------------------------------- /lwip/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/FILES -------------------------------------------------------------------------------- /lwip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/README -------------------------------------------------------------------------------- /lwip/UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/UPGRADING -------------------------------------------------------------------------------- /lwip/codespell_changed_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/codespell_changed_files.sh -------------------------------------------------------------------------------- /lwip/codespell_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/codespell_check.sh -------------------------------------------------------------------------------- /lwip/contrib/Filelists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/Filelists.cmake -------------------------------------------------------------------------------- /lwip/contrib/Filelists.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/Filelists.mk -------------------------------------------------------------------------------- /lwip/contrib/apps/netio/netio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/netio/netio.c -------------------------------------------------------------------------------- /lwip/contrib/apps/netio/netio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/netio/netio.h -------------------------------------------------------------------------------- /lwip/contrib/apps/ping/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/ping/ping.c -------------------------------------------------------------------------------- /lwip/contrib/apps/ping/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/ping/ping.h -------------------------------------------------------------------------------- /lwip/contrib/apps/rtp/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/rtp/rtp.c -------------------------------------------------------------------------------- /lwip/contrib/apps/rtp/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/rtp/rtp.h -------------------------------------------------------------------------------- /lwip/contrib/apps/rtp/rtpdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/rtp/rtpdata.h -------------------------------------------------------------------------------- /lwip/contrib/apps/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/shell/shell.c -------------------------------------------------------------------------------- /lwip/contrib/apps/shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/apps/shell/shell.h -------------------------------------------------------------------------------- /lwip/contrib/examples/example_app/test_configs/opt_none.h: -------------------------------------------------------------------------------- 1 | /* test and empty lwipopts.h file */ 2 | 3 | -------------------------------------------------------------------------------- /lwip/contrib/ports/unix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/ports/unix/README -------------------------------------------------------------------------------- /lwip/contrib/ports/unix/check/config.h: -------------------------------------------------------------------------------- 1 | /* Enable this to simplify debugging */ 2 | /* #define LWIP_UNITTESTS_NOFORK */ 3 | -------------------------------------------------------------------------------- /lwip/contrib/ports/win32/check/check_stdint.h: -------------------------------------------------------------------------------- 1 | /* deliberateliy empty */ 2 | -------------------------------------------------------------------------------- /lwip/contrib/ports/win32/include/arch/bpstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push,1) 2 | -------------------------------------------------------------------------------- /lwip/contrib/ports/win32/include/arch/epstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(pop) 2 | -------------------------------------------------------------------------------- /lwip/contrib/ports/win32/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/contrib/ports/win32/sio.c -------------------------------------------------------------------------------- /lwip/doc/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/FILES -------------------------------------------------------------------------------- /lwip/doc/NO_SYS_SampleCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/NO_SYS_SampleCode.c -------------------------------------------------------------------------------- /lwip/doc/ZeroCopyRx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/ZeroCopyRx.c -------------------------------------------------------------------------------- /lwip/doc/contrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/contrib.txt -------------------------------------------------------------------------------- /lwip/doc/doxygen/generate.bat: -------------------------------------------------------------------------------- 1 | doxygen lwip.Doxyfile 2 | -------------------------------------------------------------------------------- /lwip/doc/doxygen/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | doxygen lwip.Doxyfile 4 | -------------------------------------------------------------------------------- /lwip/doc/doxygen/lwip.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/doxygen/lwip.Doxyfile -------------------------------------------------------------------------------- /lwip/doc/doxygen/main_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/doxygen/main_page.h -------------------------------------------------------------------------------- /lwip/doc/mdns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/mdns.txt -------------------------------------------------------------------------------- /lwip/doc/mqtt_client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/mqtt_client.txt -------------------------------------------------------------------------------- /lwip/doc/ppp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/ppp.txt -------------------------------------------------------------------------------- /lwip/doc/savannah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/doc/savannah.txt -------------------------------------------------------------------------------- /lwip/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/FILES -------------------------------------------------------------------------------- /lwip/src/Filelists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/Filelists.cmake -------------------------------------------------------------------------------- /lwip/src/Filelists.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/Filelists.mk -------------------------------------------------------------------------------- /lwip/src/api/api_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/api_lib.c -------------------------------------------------------------------------------- /lwip/src/api/api_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/api_msg.c -------------------------------------------------------------------------------- /lwip/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/err.c -------------------------------------------------------------------------------- /lwip/src/api/if_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/if_api.c -------------------------------------------------------------------------------- /lwip/src/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/netbuf.c -------------------------------------------------------------------------------- /lwip/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/netdb.c -------------------------------------------------------------------------------- /lwip/src/api/netifapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/netifapi.c -------------------------------------------------------------------------------- /lwip/src/api/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/sockets.c -------------------------------------------------------------------------------- /lwip/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/api/tcpip.c -------------------------------------------------------------------------------- /lwip/src/apps/http/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/http/fs.c -------------------------------------------------------------------------------- /lwip/src/apps/http/fs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/http/fs/404.html -------------------------------------------------------------------------------- /lwip/src/apps/http/fsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/http/fsdata.c -------------------------------------------------------------------------------- /lwip/src/apps/http/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/http/fsdata.h -------------------------------------------------------------------------------- /lwip/src/apps/http/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/http/httpd.c -------------------------------------------------------------------------------- /lwip/src/apps/lwiperf/lwiperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/lwiperf/lwiperf.c -------------------------------------------------------------------------------- /lwip/src/apps/mdns/mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/mdns/mdns.c -------------------------------------------------------------------------------- /lwip/src/apps/mdns/mdns_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/mdns/mdns_out.c -------------------------------------------------------------------------------- /lwip/src/apps/mqtt/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/mqtt/mqtt.c -------------------------------------------------------------------------------- /lwip/src/apps/smtp/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/smtp/smtp.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_asn1.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_asn1.h -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_core.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_mib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_mib2.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_msg.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_msg.h -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_raw.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_table.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmp_traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmp_traps.c -------------------------------------------------------------------------------- /lwip/src/apps/snmp/snmpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/snmp/snmpv3.c -------------------------------------------------------------------------------- /lwip/src/apps/sntp/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/sntp/sntp.c -------------------------------------------------------------------------------- /lwip/src/apps/tftp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/apps/tftp/tftp.c -------------------------------------------------------------------------------- /lwip/src/core/altcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/altcp.c -------------------------------------------------------------------------------- /lwip/src/core/altcp_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/altcp_alloc.c -------------------------------------------------------------------------------- /lwip/src/core/altcp_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/altcp_tcp.c -------------------------------------------------------------------------------- /lwip/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/def.c -------------------------------------------------------------------------------- /lwip/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/dns.c -------------------------------------------------------------------------------- /lwip/src/core/inet_chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/inet_chksum.c -------------------------------------------------------------------------------- /lwip/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/init.c -------------------------------------------------------------------------------- /lwip/src/core/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ip.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/acd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/acd.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/autoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/autoip.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/dhcp.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/etharp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/etharp.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/icmp.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/igmp.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/ip4.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/ip4_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/ip4_addr.c -------------------------------------------------------------------------------- /lwip/src/core/ipv4/ip4_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv4/ip4_frag.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/dhcp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/dhcp6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/ethip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/ethip6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/icmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/icmp6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/inet6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/inet6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/ip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/ip6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/ip6_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/ip6_addr.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/ip6_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/ip6_frag.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/mld6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/mld6.c -------------------------------------------------------------------------------- /lwip/src/core/ipv6/nd6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/ipv6/nd6.c -------------------------------------------------------------------------------- /lwip/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/mem.c -------------------------------------------------------------------------------- /lwip/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/memp.c -------------------------------------------------------------------------------- /lwip/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/netif.c -------------------------------------------------------------------------------- /lwip/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/pbuf.c -------------------------------------------------------------------------------- /lwip/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/raw.c -------------------------------------------------------------------------------- /lwip/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/stats.c -------------------------------------------------------------------------------- /lwip/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/sys.c -------------------------------------------------------------------------------- /lwip/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/tcp.c -------------------------------------------------------------------------------- /lwip/src/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/tcp_in.c -------------------------------------------------------------------------------- /lwip/src/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/tcp_out.c -------------------------------------------------------------------------------- /lwip/src/core/timeouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/timeouts.c -------------------------------------------------------------------------------- /lwip/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/core/udp.c -------------------------------------------------------------------------------- /lwip/src/include/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/arch/cc.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/acd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/acd.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/altcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/altcp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/api.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/apps/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/apps/fs.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/arch.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/autoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/autoip.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/debug.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/def.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/dhcp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/dhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/dhcp6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/dns.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/err.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/errno.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/etharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/etharp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/ethip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/ethip6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/icmp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/icmp6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/if_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/if_api.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/igmp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/inet.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/init.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/ip.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/ip4.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/ip6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/ip_addr.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/mem.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/memp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/mld6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/mld6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/nd6.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/netbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/netbuf.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/netdb.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/netif.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/opt.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/pbuf.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/prot/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/prot/ip.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/raw.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/sio.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/snmp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/sockets.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/stats.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/sys.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/tcp.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/tcpbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/tcpbase.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/tcpip.h -------------------------------------------------------------------------------- /lwip/src/include/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/lwip/udp.h -------------------------------------------------------------------------------- /lwip/src/include/netif/etharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/netif/etharp.h -------------------------------------------------------------------------------- /lwip/src/include/netif/ppp/vj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/netif/ppp/vj.h -------------------------------------------------------------------------------- /lwip/src/include/netif/slipif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/netif/slipif.h -------------------------------------------------------------------------------- /lwip/src/include/netif/zepif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/include/netif/zepif.h -------------------------------------------------------------------------------- /lwip/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/FILES -------------------------------------------------------------------------------- /lwip/src/netif/bridgeif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/bridgeif.c -------------------------------------------------------------------------------- /lwip/src/netif/bridgeif_fdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/bridgeif_fdb.c -------------------------------------------------------------------------------- /lwip/src/netif/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ethernet.c -------------------------------------------------------------------------------- /lwip/src/netif/lowpan6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/lowpan6.c -------------------------------------------------------------------------------- /lwip/src/netif/lowpan6_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/lowpan6_ble.c -------------------------------------------------------------------------------- /lwip/src/netif/lowpan6_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/lowpan6_common.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/auth.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/ccp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/ccp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/chap-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/chap-md5.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/chap-new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/chap-new.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/chap_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/chap_ms.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/demand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/demand.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/eap.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/ecp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/eui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/eui64.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/fsm.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/ipcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/ipcp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/ipv6cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/ipv6cp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/lcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/lcp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/magic.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/mppe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/mppe.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/multilink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/multilink.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/ppp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/pppapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/pppapi.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/pppcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/pppcrypt.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/pppoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/pppoe.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/pppol2tp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/pppol2tp.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/pppos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/pppos.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/upap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/upap.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/utils.c -------------------------------------------------------------------------------- /lwip/src/netif/ppp/vj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/ppp/vj.c -------------------------------------------------------------------------------- /lwip/src/netif/slipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/slipif.c -------------------------------------------------------------------------------- /lwip/src/netif/zepif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/src/netif/zepif.c -------------------------------------------------------------------------------- /lwip/test/fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/Makefile -------------------------------------------------------------------------------- /lwip/test/fuzz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/README -------------------------------------------------------------------------------- /lwip/test/fuzz/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lwip/test/fuzz/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/fuzz.c -------------------------------------------------------------------------------- /lwip/test/fuzz/fuzz2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/fuzz2.c -------------------------------------------------------------------------------- /lwip/test/fuzz/fuzz3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/fuzz3.c -------------------------------------------------------------------------------- /lwip/test/fuzz/fuzz_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/fuzz_common.c -------------------------------------------------------------------------------- /lwip/test/fuzz/fuzz_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/fuzz_common.h -------------------------------------------------------------------------------- /lwip/test/fuzz/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/fuzz/lwipopts.h -------------------------------------------------------------------------------- /lwip/test/unit/Filelists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/Filelists.cmake -------------------------------------------------------------------------------- /lwip/test/unit/Filelists.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/Filelists.mk -------------------------------------------------------------------------------- /lwip/test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/Makefile -------------------------------------------------------------------------------- /lwip/test/unit/arch/sys_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/arch/sys_arch.c -------------------------------------------------------------------------------- /lwip/test/unit/arch/sys_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/arch/sys_arch.h -------------------------------------------------------------------------------- /lwip/test/unit/core/test_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_def.c -------------------------------------------------------------------------------- /lwip/test/unit/core/test_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_def.h -------------------------------------------------------------------------------- /lwip/test/unit/core/test_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_dns.c -------------------------------------------------------------------------------- /lwip/test/unit/core/test_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_dns.h -------------------------------------------------------------------------------- /lwip/test/unit/core/test_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_mem.c -------------------------------------------------------------------------------- /lwip/test/unit/core/test_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_mem.h -------------------------------------------------------------------------------- /lwip/test/unit/core/test_pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_pbuf.c -------------------------------------------------------------------------------- /lwip/test/unit/core/test_pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/core/test_pbuf.h -------------------------------------------------------------------------------- /lwip/test/unit/dhcp/test_dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/dhcp/test_dhcp.c -------------------------------------------------------------------------------- /lwip/test/unit/dhcp/test_dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/dhcp/test_dhcp.h -------------------------------------------------------------------------------- /lwip/test/unit/ip4/test_ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/ip4/test_ip4.c -------------------------------------------------------------------------------- /lwip/test/unit/ip4/test_ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/ip4/test_ip4.h -------------------------------------------------------------------------------- /lwip/test/unit/ip6/test_ip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/ip6/test_ip6.c -------------------------------------------------------------------------------- /lwip/test/unit/ip6/test_ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/ip6/test_ip6.h -------------------------------------------------------------------------------- /lwip/test/unit/lwip_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/lwip_check.h -------------------------------------------------------------------------------- /lwip/test/unit/lwip_unittests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/lwip_unittests.c -------------------------------------------------------------------------------- /lwip/test/unit/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/lwipopts.h -------------------------------------------------------------------------------- /lwip/test/unit/mdns/test_mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/mdns/test_mdns.c -------------------------------------------------------------------------------- /lwip/test/unit/mdns/test_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/mdns/test_mdns.h -------------------------------------------------------------------------------- /lwip/test/unit/mqtt/test_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/mqtt/test_mqtt.c -------------------------------------------------------------------------------- /lwip/test/unit/mqtt/test_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/mqtt/test_mqtt.h -------------------------------------------------------------------------------- /lwip/test/unit/tcp/tcp_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/tcp/tcp_helper.c -------------------------------------------------------------------------------- /lwip/test/unit/tcp/tcp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/tcp/tcp_helper.h -------------------------------------------------------------------------------- /lwip/test/unit/tcp/test_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/tcp/test_tcp.c -------------------------------------------------------------------------------- /lwip/test/unit/tcp/test_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/tcp/test_tcp.h -------------------------------------------------------------------------------- /lwip/test/unit/udp/test_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/udp/test_udp.c -------------------------------------------------------------------------------- /lwip/test/unit/udp/test_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/test/unit/udp/test_udp.h -------------------------------------------------------------------------------- /lwip/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/lwip/travis.sh -------------------------------------------------------------------------------- /mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/mmu.c -------------------------------------------------------------------------------- /mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/mmu.h -------------------------------------------------------------------------------- /network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/network.c -------------------------------------------------------------------------------- /network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/network.h -------------------------------------------------------------------------------- /ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/ports.c -------------------------------------------------------------------------------- /ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/ports.h -------------------------------------------------------------------------------- /rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/rtc.c -------------------------------------------------------------------------------- /rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/rtc.h -------------------------------------------------------------------------------- /sdl_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/sdl_server.c -------------------------------------------------------------------------------- /sdl_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/sdl_server.h -------------------------------------------------------------------------------- /smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/smp.c -------------------------------------------------------------------------------- /smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/smp.h -------------------------------------------------------------------------------- /spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/spinlock.c -------------------------------------------------------------------------------- /spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/spinlock.h -------------------------------------------------------------------------------- /startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/startup.c -------------------------------------------------------------------------------- /sunxi-spl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/sunxi-spl.bin -------------------------------------------------------------------------------- /system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/system.c -------------------------------------------------------------------------------- /system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/system.h -------------------------------------------------------------------------------- /tinyusb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/.gitignore -------------------------------------------------------------------------------- /tinyusb/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/.gitmodules -------------------------------------------------------------------------------- /tinyusb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/.travis.yml -------------------------------------------------------------------------------- /tinyusb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/LICENSE -------------------------------------------------------------------------------- /tinyusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/README.md -------------------------------------------------------------------------------- /tinyusb/docs/changelog.md: -------------------------------------------------------------------------------- 1 | # Change Log # 2 | 3 | ## 0.4 ## 4 | 5 | Initial release. -------------------------------------------------------------------------------- /tinyusb/docs/coding_standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/coding_standard.md -------------------------------------------------------------------------------- /tinyusb/docs/configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/configuration.txt -------------------------------------------------------------------------------- /tinyusb/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/getting_started.md -------------------------------------------------------------------------------- /tinyusb/docs/group_def.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/group_def.txt -------------------------------------------------------------------------------- /tinyusb/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/header.html -------------------------------------------------------------------------------- /tinyusb/docs/porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/porting.md -------------------------------------------------------------------------------- /tinyusb/docs/started_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/docs/started_demo.md -------------------------------------------------------------------------------- /tinyusb/examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/examples/readme.md -------------------------------------------------------------------------------- /tinyusb/hw/bsp/ansi_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/hw/bsp/ansi_escape.h -------------------------------------------------------------------------------- /tinyusb/hw/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/hw/bsp/board.h -------------------------------------------------------------------------------- /tinyusb/hw/bsp/ea4357/pca9532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/hw/bsp/ea4357/pca9532.c -------------------------------------------------------------------------------- /tinyusb/hw/bsp/ea4357/pca9532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/hw/bsp/ea4357/pca9532.h -------------------------------------------------------------------------------- /tinyusb/hw/bsp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/hw/bsp/readme.md -------------------------------------------------------------------------------- /tinyusb/hw/readme.md: -------------------------------------------------------------------------------- 1 | # Supported MCUs # 2 | 3 | Currently -------------------------------------------------------------------------------- /tinyusb/lib/FreeRTOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/FreeRTOS/readme.txt -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/00readme.txt -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/ccsbcs.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/diskio.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/diskio.h -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/diskio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/diskio1.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/diskio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/diskio2.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/diskio3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/diskio3.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/ff.c -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/ff.h -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/ffconf.h -------------------------------------------------------------------------------- /tinyusb/lib/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/lib/fatfs/integer.h -------------------------------------------------------------------------------- /tinyusb/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/pkg.yml -------------------------------------------------------------------------------- /tinyusb/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/repository.yml -------------------------------------------------------------------------------- /tinyusb/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /tinyusb/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/class/hid/hid.h -------------------------------------------------------------------------------- /tinyusb/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/class/msc/msc.h -------------------------------------------------------------------------------- /tinyusb/src/common/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/binary.h -------------------------------------------------------------------------------- /tinyusb/src/common/sys_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/sys_queue.h -------------------------------------------------------------------------------- /tinyusb/src/common/tusb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/tusb_error.h -------------------------------------------------------------------------------- /tinyusb/src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /tinyusb/src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /tinyusb/src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/common/tusb_types.h -------------------------------------------------------------------------------- /tinyusb/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/device/dcd.h -------------------------------------------------------------------------------- /tinyusb/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/device/usbd.c -------------------------------------------------------------------------------- /tinyusb/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/device/usbd.h -------------------------------------------------------------------------------- /tinyusb/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /tinyusb/src/host/ehci/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ehci/ehci.c -------------------------------------------------------------------------------- /tinyusb/src/host/ehci/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ehci/ehci.h -------------------------------------------------------------------------------- /tinyusb/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hcd.h -------------------------------------------------------------------------------- /tinyusb/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hub.c -------------------------------------------------------------------------------- /tinyusb/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hub.h -------------------------------------------------------------------------------- /tinyusb/src/host/hub1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hub1.c -------------------------------------------------------------------------------- /tinyusb/src/host/hub2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hub2.c -------------------------------------------------------------------------------- /tinyusb/src/host/hub3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/hub3.c -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/chip.h -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/ohci.c -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/ohci.h -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/ohci1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/ohci1.c -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/ohci2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/ohci2.c -------------------------------------------------------------------------------- /tinyusb/src/host/ohci/ohci3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/ohci/ohci3.c -------------------------------------------------------------------------------- /tinyusb/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh.c -------------------------------------------------------------------------------- /tinyusb/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh.h -------------------------------------------------------------------------------- /tinyusb/src/host/usbh1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh1.c -------------------------------------------------------------------------------- /tinyusb/src/host/usbh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh2.c -------------------------------------------------------------------------------- /tinyusb/src/host/usbh3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh3.c -------------------------------------------------------------------------------- /tinyusb/src/host/usbh_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh_hcd.h -------------------------------------------------------------------------------- /tinyusb/src/host/usbh_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/host/usbh_hub.h -------------------------------------------------------------------------------- /tinyusb/src/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/license.md -------------------------------------------------------------------------------- /tinyusb/src/osal/osal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/osal/osal.c -------------------------------------------------------------------------------- /tinyusb/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/osal/osal.h -------------------------------------------------------------------------------- /tinyusb/src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /tinyusb/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/osal/osal_none.h -------------------------------------------------------------------------------- /tinyusb/src/portable/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/portable/readme.md -------------------------------------------------------------------------------- /tinyusb/src/redef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/redef.h -------------------------------------------------------------------------------- /tinyusb/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb.c -------------------------------------------------------------------------------- /tinyusb/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb.h -------------------------------------------------------------------------------- /tinyusb/src/tusb1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb1.c -------------------------------------------------------------------------------- /tinyusb/src/tusb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb2.c -------------------------------------------------------------------------------- /tinyusb/src/tusb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb3.c -------------------------------------------------------------------------------- /tinyusb/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb_config.h -------------------------------------------------------------------------------- /tinyusb/src/tusb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb_hal.h -------------------------------------------------------------------------------- /tinyusb/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/src/tusb_option.h -------------------------------------------------------------------------------- /tinyusb/tests/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tests/.cproject -------------------------------------------------------------------------------- /tinyusb/tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tests/.project -------------------------------------------------------------------------------- /tinyusb/tests/lpc175x_6x/build/readme.md: -------------------------------------------------------------------------------- 1 | just a build folder -------------------------------------------------------------------------------- /tinyusb/tests/lpc18xx_43xx/build/readme.md: -------------------------------------------------------------------------------- 1 | just a build folder -------------------------------------------------------------------------------- /tinyusb/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tests/readme.md -------------------------------------------------------------------------------- /tinyusb/tests/support/LPC17xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tests/support/LPC17xx.h -------------------------------------------------------------------------------- /tinyusb/tests/support/LPC43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tests/support/LPC43xx.h -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/plugins/bullseye/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/plugins/gcov/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/release/build.info: -------------------------------------------------------------------------------- 1 | 226 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/release/version.info: -------------------------------------------------------------------------------- 1 | 0.10 -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/c_exception/release/build.info: -------------------------------------------------------------------------------- 1 | 16 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/c_exception/release/version.info: -------------------------------------------------------------------------------- 1 | 1.2 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/cmock/release/build.info: -------------------------------------------------------------------------------- 1 | 212 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/cmock/release/version.info: -------------------------------------------------------------------------------- 1 | 2.0 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/unity/release/build.info: -------------------------------------------------------------------------------- 1 | 118 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tests/vendor/ceedling/vendor/unity/release/version.info: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | 3 | -------------------------------------------------------------------------------- /tinyusb/tinyusb.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tinyusb.Doxyfile -------------------------------------------------------------------------------- /tinyusb/tools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tools/readme.md -------------------------------------------------------------------------------- /tinyusb/tools/top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tinyusb/tools/top.mk -------------------------------------------------------------------------------- /tinyusb/version.yml: -------------------------------------------------------------------------------- 1 | repo.version: 0.0.1 2 | -------------------------------------------------------------------------------- /tve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tve.c -------------------------------------------------------------------------------- /tve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/tve.h -------------------------------------------------------------------------------- /uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/uart.c -------------------------------------------------------------------------------- /uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/uart.h -------------------------------------------------------------------------------- /ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/ubsan.c -------------------------------------------------------------------------------- /usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/usb.c -------------------------------------------------------------------------------- /usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/usb.h -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/util.h -------------------------------------------------------------------------------- /video_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uli/allwinner-bare-metal/HEAD/video_encoder.h --------------------------------------------------------------------------------