├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── readme.md ├── resources ├── DS203 V2.7_SCH.pdf ├── DS213 V2.0_SCH.pdf ├── ILI9341.pdf ├── LA104 V1.5B_SCH.pdf ├── appicons │ ├── analyser.png │ ├── app.png │ ├── avrflash.png │ ├── avrisp.png │ ├── basic.png │ ├── cdc.png │ ├── charmap.png │ ├── chip.png │ ├── cpython.png │ ├── dcf77.png │ ├── devinfo.png │ ├── dstemper.png │ ├── eeview.png │ ├── eink.png │ ├── fileman.png │ ├── fpga.png │ ├── gabuino.png │ ├── gpio.png │ ├── hid.png │ ├── hunter.png │ ├── i2cscan.png │ ├── imgview.png │ ├── mhz19b.png │ ├── midi.png │ ├── midiplay.png │ ├── oledssd.png │ ├── pasteur.png │ ├── ps2keyb.png │ ├── radsens.png │ ├── rftool.png │ ├── sequence.png │ ├── servo.png │ ├── spectrum.png │ ├── uartmon.png │ ├── vfd_invt.png │ ├── ws2812.png │ └── wusbosc.png ├── experiments │ ├── blink │ │ ├── FWLib │ │ │ ├── asm │ │ │ │ └── cortexm3_macro.s │ │ │ ├── inc │ │ │ │ ├── cortexm3_macro.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_map.h │ │ │ │ ├── stm32f10x_nvic.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ └── stm32f10x_type.h │ │ │ └── src │ │ │ │ └── stm32f10x_nvic.c │ │ ├── app.lds │ │ ├── buildmac.sh │ │ ├── buildwin.bat │ │ ├── cp.sh │ │ ├── main.c │ │ ├── pinio.h │ │ ├── startup.c │ │ └── stm32f10x_conf.h │ ├── dynamic_advanced │ │ ├── client │ │ │ ├── Font.h │ │ │ ├── Main.c │ │ │ ├── app.ld │ │ │ ├── app.lds │ │ │ ├── build.bat │ │ │ └── build.sh │ │ ├── host │ │ │ ├── app.lds │ │ │ ├── bios.h │ │ │ ├── bios.s │ │ │ ├── buildmac.sh │ │ │ ├── buildwin.bat │ │ │ ├── code.h │ │ │ ├── lib │ │ │ │ ├── CMSIS │ │ │ │ │ ├── Device │ │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ │ └── Include │ │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ │ ├── arm_math.h │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ └── core_sc300.h │ │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── inc │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ │ ├── stm32f10x_can.h │ │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ │ └── src │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ │ ├── stm32f10x_can.c │ │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ │ └── stm32f10x_wwdg.c │ │ │ ├── main.c │ │ │ ├── startup.c │ │ │ └── stm32f10x_conf.h │ │ └── library │ │ │ ├── build.sh │ │ │ ├── build │ │ │ └── libbios.so │ │ │ ├── library.c │ │ │ └── library.h │ ├── dynamic_simple │ │ ├── Main.c │ │ ├── app.ld │ │ ├── app.lds │ │ ├── build.bat │ │ ├── build.sh │ │ ├── build │ │ │ ├── libbios.so │ │ │ ├── main.elf │ │ │ ├── mains.elf │ │ │ └── outputss.asm │ │ ├── dump │ │ │ └── dump.c │ │ ├── ida.bat │ │ ├── library.c │ │ ├── library.h │ │ └── secondary │ │ │ ├── app.lds │ │ │ ├── bios.h │ │ │ ├── bios.s │ │ │ ├── build │ │ │ ├── output.asm │ │ │ ├── output.bin │ │ │ ├── output.elf │ │ │ ├── output.hex │ │ │ └── output.txt │ │ │ ├── buildmac.sh │ │ │ ├── buildwin.bat │ │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ │ ├── main.c │ │ │ ├── startup.c │ │ │ └── stm32f10x_conf.h │ ├── triangle_cpp │ │ ├── app.lds │ │ ├── bios.h │ │ ├── bios.s │ │ ├── buildmac.sh │ │ ├── buildwin.bat │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.cpp │ │ ├── startup.c │ │ └── stm32f10x_conf.h │ ├── triangle_newlib │ │ ├── app.lds │ │ ├── bios.h │ │ ├── bios.s │ │ ├── buildmac.sh │ │ ├── buildwin.bat │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.c │ │ ├── startup.c │ │ └── stm32f10x_conf.h │ ├── triangle_oldlib │ │ ├── FWLib │ │ │ ├── asm │ │ │ │ └── cortexm3_macro.s │ │ │ ├── inc │ │ │ │ ├── cortexm3_macro.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_map.h │ │ │ │ ├── stm32f10x_nvic.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ └── stm32f10x_type.h │ │ │ └── src │ │ │ │ └── stm32f10x_nvic.c │ │ ├── app.lds │ │ ├── bios.h │ │ ├── bios.s │ │ ├── buildmac.sh │ │ ├── buildwin.bat │ │ ├── main.c │ │ ├── startup.c │ │ └── stm32f10x_conf.h │ └── worm │ │ ├── Bios.h │ │ ├── Classes.h │ │ ├── Snake.h │ │ ├── Types.h │ │ ├── Utils.h │ │ ├── Wnd.cpp │ │ ├── Wnd.h │ │ ├── app.lds │ │ ├── bios.s │ │ ├── buildmac.sh │ │ ├── la104bios.h │ │ ├── lib │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── STM32F10x │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ └── Source │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ └── system_stm32f10x.c │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ └── STM32F10x_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ ├── misc.h │ │ │ ├── stm32f10x_adc.h │ │ │ ├── stm32f10x_bkp.h │ │ │ ├── stm32f10x_can.h │ │ │ ├── stm32f10x_cec.h │ │ │ ├── stm32f10x_crc.h │ │ │ ├── stm32f10x_dac.h │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ ├── stm32f10x_dma.h │ │ │ ├── stm32f10x_exti.h │ │ │ ├── stm32f10x_flash.h │ │ │ ├── stm32f10x_fsmc.h │ │ │ ├── stm32f10x_gpio.h │ │ │ ├── stm32f10x_i2c.h │ │ │ ├── stm32f10x_iwdg.h │ │ │ ├── stm32f10x_lib.h │ │ │ ├── stm32f10x_pwr.h │ │ │ ├── stm32f10x_rcc.h │ │ │ ├── stm32f10x_rtc.h │ │ │ ├── stm32f10x_sdio.h │ │ │ ├── stm32f10x_spi.h │ │ │ ├── stm32f10x_tim.h │ │ │ ├── stm32f10x_usart.h │ │ │ └── stm32f10x_wwdg.h │ │ │ └── src │ │ │ ├── misc.c │ │ │ ├── stm32f10x_adc.c │ │ │ ├── stm32f10x_bkp.c │ │ │ ├── stm32f10x_can.c │ │ │ ├── stm32f10x_cec.c │ │ │ ├── stm32f10x_crc.c │ │ │ ├── stm32f10x_dac.c │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ ├── stm32f10x_dma.c │ │ │ ├── stm32f10x_exti.c │ │ │ ├── stm32f10x_flash.c │ │ │ ├── stm32f10x_fsmc.c │ │ │ ├── stm32f10x_gpio.c │ │ │ ├── stm32f10x_i2c.c │ │ │ ├── stm32f10x_iwdg.c │ │ │ ├── stm32f10x_pwr.c │ │ │ ├── stm32f10x_rcc.c │ │ │ ├── stm32f10x_rtc.c │ │ │ ├── stm32f10x_sdio.c │ │ │ ├── stm32f10x_spi.c │ │ │ ├── stm32f10x_tim.c │ │ │ ├── stm32f10x_usart.c │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.cpp │ │ ├── startup.c │ │ └── stm32f10x_conf.h ├── hybridmp3.png ├── imgAnalyser.png ├── imgApds1.png ├── imgBmp180.png ├── imgCharset.png ├── imgDht.png ├── imgDs1820.png ├── imgGpio1.png ├── imgGpio2.png ├── imgManager.png ├── imgMidi1.png ├── imgMidi2.png ├── imgMp3.png ├── imgPulseview.png ├── imgPwm.png ├── imgScanner.png ├── imgSequencer1.png ├── imgSequencer2.png ├── imgShell1.png ├── imgShell2.png ├── imgTempMeas1.jpg ├── imgTempMeas2.png ├── imgWasm.png ├── imgWs2812.png ├── ladsall.jpg ├── official_fw_gcc │ ├── app.ld │ ├── bios.s │ ├── build │ │ └── output.hex │ ├── buildmac.sh │ ├── buildwin.bat │ ├── cp.sh │ ├── lib │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── STM32F10x │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ └── Source │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ └── system_stm32f10x.c │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ ├── MSD │ │ │ ├── USB_bot.c │ │ │ ├── USB_bot.h │ │ │ ├── USB_conf.h │ │ │ ├── USB_desc.c │ │ │ ├── USB_desc.h │ │ │ ├── USB_istr.c │ │ │ ├── USB_istr.h │ │ │ ├── USB_prop.c │ │ │ ├── USB_prop.h │ │ │ ├── USB_pwr.c │ │ │ ├── USB_pwr.h │ │ │ ├── USB_scsi.c │ │ │ └── USB_scsi.h │ │ ├── STM32F10x_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── STM32_USB-FS-Device_Driver │ │ │ ├── inc │ │ │ │ ├── USB_lib.h │ │ │ │ ├── usb_core.h │ │ │ │ ├── usb_def.h │ │ │ │ ├── usb_init.h │ │ │ │ ├── usb_int.h │ │ │ │ ├── usb_mem.h │ │ │ │ ├── usb_mem1.h │ │ │ │ ├── usb_regs.h │ │ │ │ ├── usb_sil.h │ │ │ │ └── usb_type.h │ │ │ └── src │ │ │ │ ├── usb_core.c │ │ │ │ ├── usb_init.c │ │ │ │ ├── usb_int.c │ │ │ │ ├── usb_mem.c │ │ │ │ ├── usb_regs.c │ │ │ │ └── usb_sil.c │ │ ├── spf.c │ │ └── spf.h │ ├── source │ │ ├── Analyze.c │ │ ├── Analyze.h │ │ ├── AppBios.c │ │ ├── AppBios.h │ │ ├── Ctrl.c │ │ ├── Ctrl.h │ │ ├── Disk.c │ │ ├── Disk.h │ │ ├── Ext_Flash.c │ │ ├── Ext_Flash.h │ │ ├── FAT12.c │ │ ├── FAT12.h │ │ ├── Files.c │ │ ├── Files.h │ │ ├── Font.h │ │ ├── Func.c │ │ ├── Func.h │ │ ├── GUI.c │ │ ├── GUI.h │ │ ├── Interrupt.c │ │ ├── Interrupt.h │ │ ├── Main.c │ │ ├── Menu.c │ │ ├── Menu.h │ │ ├── MyDefine.h │ │ └── STM32F103_System.c │ ├── startup.c │ └── stm32f10x_conf.h ├── productBrief.png ├── tutorial_building │ └── readme.md ├── wasmbuild │ ├── app.js │ ├── apps │ │ ├── charmap.wasm │ │ ├── charmap.wasm.map │ │ ├── fileman.wasm │ │ ├── fileman.wasm.map │ │ ├── shell.wasm │ │ ├── shell.wasm.map │ │ ├── triangle.wasm │ │ ├── triangle.wasm.map │ │ ├── viewtxt.wasm │ │ ├── viewtxt.wasm.map │ │ ├── ws2812.wasm │ │ └── ws2812.wasm.map │ ├── index.html │ ├── inflate.js │ ├── la104fat.zip │ ├── z-worker.js │ └── zip.js ├── waveAlchemy1.jpeg ├── waveAlchemy2.jpeg └── waveAlchemy3.png ├── system ├── apps │ ├── 105_avrprogrammer │ │ ├── CMakeLists.txt │ │ ├── arduino │ │ │ ├── blink.hex │ │ │ ├── dekor45.hex │ │ │ ├── empty.hex │ │ │ ├── full.hex │ │ │ ├── full.ino │ │ │ ├── pulse.hex │ │ │ ├── schematic.png │ │ │ ├── star.hex │ │ │ ├── star.ino │ │ │ ├── toggle.hex │ │ │ ├── toggle.ino │ │ │ ├── twinkle.hex │ │ │ ├── twinkle.ino │ │ │ ├── wheel.hex │ │ │ └── wheel.ino │ │ ├── build.sh │ │ ├── build_la104.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── avrisp.h │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── ihex.h │ │ │ ├── main.cpp │ │ │ ├── platform.cpp │ │ │ └── platform.h │ ├── 109_radsense │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── readme.jpg │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── arduino │ │ │ ├── Arduino.h │ │ │ └── Wire.h │ │ │ ├── main.cpp │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ └── radsens │ │ │ ├── defines.h │ │ │ ├── origin │ │ │ ├── radSens1v2.cpp │ │ │ └── radSens1v2.h │ ├── 110_mhz19b │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.jpg │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── graph │ │ │ ├── axis.h │ │ │ ├── draw.h │ │ │ ├── graph.h │ │ │ ├── palette.h │ │ │ └── series.h │ │ │ ├── logger.h │ │ │ └── main.cpp │ ├── 115_hunter │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.jpg │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── framework │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── hunter.h │ │ │ ├── main.cpp │ │ │ └── platform.h │ ├── 120_ps2keyboard │ │ ├── app.lds │ │ ├── build.sh │ │ ├── keyboard.h │ │ ├── main.cpp │ │ ├── periph.h │ │ ├── readme.md │ │ ├── scancode.h │ │ ├── v0_bitbang │ │ │ └── main_bitbang.cpp │ │ ├── v1_isr │ │ │ ├── isr.c │ │ │ ├── main.cpp │ │ │ └── scancode.h │ │ └── v2_isrclean │ │ │ ├── keyboard.h │ │ │ ├── main.cpp │ │ │ ├── periph_core.h │ │ │ ├── periph_interface.h │ │ │ ├── periph_structures.h │ │ │ └── scancode.h │ ├── 123_fpga │ │ ├── bin │ │ │ ├── 01blink.fpg │ │ │ ├── 01blink.vlf │ │ │ ├── 02count.fpg │ │ │ ├── 02count.vlf │ │ │ ├── 03fib.fpg │ │ │ └── 03fib.vlf │ │ ├── build.sh │ │ ├── build_la104.sh │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ └── main.cpp │ ├── 125_rtc │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── readme.png │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── application.h │ │ │ ├── lib │ │ │ │ ├── Arduino.cpp │ │ │ │ ├── Arduino.h │ │ │ │ ├── DS1307.cpp │ │ │ │ ├── DS3231.cpp │ │ │ │ ├── DateTime.cpp │ │ │ │ ├── PCF8563.cpp │ │ │ │ ├── RTC.h │ │ │ │ ├── Wire.h │ │ │ │ └── bitbangi2c.h │ │ │ ├── main.cpp │ │ │ └── testcases.h │ │ └── tools │ │ │ ├── ca.html │ │ │ ├── ca4.html │ │ │ ├── ca8_small.html │ │ │ ├── testcases.h │ │ │ └── tests.js │ ├── 138_stk500 │ │ ├── arduino │ │ │ ├── bl100ms.hex │ │ │ └── bl1s.hex │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── gpio.h │ │ │ ├── ihex.h │ │ │ └── main.cpp │ ├── 62_memview │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── cp.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── application.h │ │ │ ├── layout.h │ │ │ ├── list.h │ │ │ ├── main.cpp │ │ │ └── shapes.h │ ├── 73_invt │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── assert.h │ │ ├── build.sh │ │ ├── invt.h │ │ ├── invtgd10.h │ │ ├── main.cpp │ │ ├── packet.h │ │ ├── readme.md │ │ └── serial.h │ ├── 79_cc1101osc │ │ ├── build.sh │ │ ├── build_la104.sh │ │ ├── source │ │ │ ├── app.h │ │ │ ├── app.lds │ │ │ ├── atof.h │ │ │ ├── cc1101.h │ │ │ ├── device │ │ │ │ ├── cc1101.h │ │ │ │ ├── json.h │ │ │ │ ├── send.h │ │ │ │ └── spi.h │ │ │ ├── evaluator.h │ │ │ ├── main.cpp │ │ │ ├── memory.h │ │ │ ├── rpc.h │ │ │ ├── streamer │ │ │ │ ├── core_cm3.h │ │ │ │ ├── dma.h │ │ │ │ ├── ringbuf.h │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── streamer.cpp │ │ │ │ └── streamer.h │ │ │ ├── terminal.h │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ └── web │ │ │ ├── analyser.js │ │ │ ├── bios.js │ │ │ ├── canvas.js │ │ │ ├── comm.js │ │ │ ├── editor │ │ │ ├── code.js │ │ │ ├── demo.js │ │ │ ├── index.html │ │ │ ├── offline │ │ │ │ ├── alight.min.js │ │ │ │ ├── area-plugin.min.js │ │ │ │ ├── comment-plugin.min.js │ │ │ │ ├── connection-mastery-plugin.min.js │ │ │ │ ├── connection-plugin.min.js │ │ │ │ ├── context-menu-plugin.min.js │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── highcharts.js │ │ │ │ ├── histogram-bellcurve.js │ │ │ │ ├── history-plugin.min.js │ │ │ │ ├── lifecycle-plugin.min.js │ │ │ │ ├── lodash.min.js │ │ │ │ ├── rete.min.js │ │ │ │ ├── vue-render-plugin.min.js │ │ │ │ └── vue.min.js │ │ │ ├── retecomponents.js │ │ │ ├── retecontrols.js │ │ │ ├── rtl433.js │ │ │ ├── rtl433_wasm.js │ │ │ ├── signal.js │ │ │ ├── signalcanvas.js │ │ │ ├── signalhistogram.js │ │ │ └── vuecontrols.js │ │ │ ├── index.html │ │ │ ├── nice │ │ │ ├── remotegui.js │ │ │ ├── serial.js │ │ │ └── server.sh │ ├── 81_image │ │ ├── build.sh │ │ ├── create.sh │ │ ├── gabo.png │ │ ├── res │ │ │ ├── gabo.bmp │ │ │ └── logo.bmp │ │ └── source │ │ │ ├── app.lds │ │ │ ├── bitmap.h │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ └── main.cpp │ ├── 82_specan │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── CC1101.cpp │ │ │ ├── CC1101.h │ │ │ ├── SmartResponseXE.cpp │ │ │ ├── SmartResponseXE.h │ │ │ ├── _CC1101.cpp │ │ │ ├── layout.h │ │ │ ├── main.cpp │ │ │ ├── shapes.h │ │ │ ├── specan.cpp │ │ │ ├── specan.h │ │ │ ├── spi.h │ │ │ ├── srxe_specan.cpp │ │ │ └── srxe_specan.h │ ├── 99_3d │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds213.sh │ │ ├── build_la104.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── 3dcube.cpp │ │ │ ├── app.lds │ │ │ └── main.cpp │ ├── test13_mp3 │ │ ├── Arduino.cpp │ │ ├── Arduino.h │ │ ├── MD_YX5300.cpp │ │ ├── MD_YX5300.h │ │ ├── Menu.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── gif │ │ │ ├── GifDecoder.h │ │ │ ├── GifDecoder_Impl.h │ │ │ ├── LzwDecoder_Impl.h │ │ │ └── licence.h │ │ ├── main.cpp │ │ ├── sch_mp3.gif │ │ └── shapes.h │ ├── test15_charmap │ │ ├── CharMap.cpp │ │ ├── CharMap.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_wasm.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test17_official │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ └── source │ │ │ ├── Analyze.c │ │ │ ├── Analyze.h │ │ │ ├── AppBios.c │ │ │ ├── AppBios.h │ │ │ ├── Ctrl.c │ │ │ ├── Ctrl.h │ │ │ ├── Files.c │ │ │ ├── Files.h │ │ │ ├── Font.h │ │ │ ├── Func.c │ │ │ ├── Func.h │ │ │ ├── GUI.c │ │ │ ├── GUI.h │ │ │ ├── Interrupt.c │ │ │ ├── Interrupt.h │ │ │ ├── Main.c │ │ │ ├── Menu.c │ │ │ ├── Menu.h │ │ │ └── MyDefine.h │ ├── test22_sequencer │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── cp.sh │ │ └── source │ │ │ ├── PCF8574.h │ │ │ ├── main.cpp │ │ │ └── shapes.h │ ├── test23_screenshot │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.cpp │ │ └── screenshot.h │ ├── test30_dcf77 │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── dcf77.h │ │ └── main.cpp │ ├── test31_testsignal │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── gpio.h │ │ └── main.cpp │ ├── test34_scope │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── cp.sh │ │ ├── graph │ │ │ ├── axis.h │ │ │ ├── draw.h │ │ │ ├── graph.h │ │ │ ├── palette.h │ │ │ └── series.h │ │ ├── main.cpp │ │ └── sensor │ │ │ └── pcf8591t.h │ ├── test35_view │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_wasm.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test36_esp_server │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── atdevice.h │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── esp8266.h │ │ ├── main.cpp │ │ ├── promise.h │ │ ├── stdfunc.h │ │ └── stream.h │ ├── test41_alchemy │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── logs │ │ │ ├── ir_optibox.sig │ │ │ ├── ir_volumeup.sig │ │ │ ├── rf_keeloq.sig │ │ │ ├── rf_oregon1.sig │ │ │ ├── rf_unk_ba1.sig │ │ │ ├── rf_unk_ba2.sig │ │ │ ├── rf_unk_ba3.sig │ │ │ ├── rf_unk_ba4.sig │ │ │ ├── rf_unk_ba5.sig │ │ │ ├── rf_unk_sd1.sig │ │ │ ├── rf_unk_sd2.sig │ │ │ ├── rf_unk_sd3.sig │ │ │ └── visualize.html │ │ ├── source │ │ │ ├── codecs │ │ │ │ ├── codec.h │ │ │ │ ├── codecs.h │ │ │ │ ├── oregon.h │ │ │ │ ├── samsung.h │ │ │ │ ├── tvremote1.h │ │ │ │ ├── unknown1.h │ │ │ │ ├── unknown2.h │ │ │ │ ├── unknown3.h │ │ │ │ ├── unknown4.h │ │ │ │ └── weather1.h │ │ │ ├── controls │ │ │ │ ├── button.h │ │ │ │ ├── histogram.h │ │ │ │ ├── signal.h │ │ │ │ └── signalview.h │ │ │ ├── devices │ │ │ │ ├── cc1101.h │ │ │ │ ├── infra.h │ │ │ │ ├── infra │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── ir_code.h │ │ │ │ │ ├── ir_tx.c │ │ │ │ │ ├── ir_tx.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── CMSIS │ │ │ │ │ │ │ ├── Device │ │ │ │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ │ │ │ └── Include │ │ │ │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ │ │ │ ├── arm_math.h │ │ │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ │ │ └── core_sc300.h │ │ │ │ │ │ ├── STM32F10x_StdPeriph_Driver │ │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ │ │ │ │ ├── stm32f10x_can.h │ │ │ │ │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ │ │ │ │ ├── stm32f10x_can.c │ │ │ │ │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ │ │ │ │ └── stm32f10x_wwdg.c │ │ │ │ │ │ └── stm32f10x_conf.h │ │ │ │ │ └── platform_config.h │ │ │ │ ├── raw.h │ │ │ │ ├── sampler.h │ │ │ │ └── spi.h │ │ │ ├── layouts │ │ │ │ ├── analyse.h │ │ │ │ ├── file.h │ │ │ │ ├── file │ │ │ │ │ ├── load.h │ │ │ │ │ ├── play.h │ │ │ │ │ └── save.h │ │ │ │ ├── filter.h │ │ │ │ ├── meas.h │ │ │ │ ├── meas │ │ │ │ │ └── menuitems.h │ │ │ │ ├── modem.h │ │ │ │ ├── modem │ │ │ │ │ ├── cc1101.h │ │ │ │ │ ├── infra.h │ │ │ │ │ └── raw.h │ │ │ │ └── play.h │ │ │ ├── main.cpp │ │ │ ├── settings.h │ │ │ └── utils │ │ │ │ ├── Menu.h │ │ │ │ ├── json.h │ │ │ │ └── shapes.h │ │ └── test │ │ │ ├── library.h │ │ │ ├── main.cpp │ │ │ └── test.sh │ ├── test45_simcom │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── simcom.h │ ├── test4_snake │ │ ├── Snake.h │ │ ├── Utils.h │ │ ├── Wnd.cpp │ │ ├── Wnd.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test70_webusb │ │ ├── build.sh │ │ ├── source │ │ │ ├── analyser.h │ │ │ ├── app.lds │ │ │ ├── atof.h │ │ │ ├── evaluator.h │ │ │ ├── main.cpp │ │ │ ├── memory.h │ │ │ ├── rpc.h │ │ │ ├── terminal.h │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ └── web │ │ │ ├── bios.js │ │ │ ├── canvas.js │ │ │ ├── comm.js │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── serial.js │ └── test7_pwm_app │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.cpp │ │ └── shapes.h ├── apps_ds213 │ ├── 118_dht_app │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_ds213.sh │ │ ├── readme.jpg │ │ ├── readme.md │ │ └── source │ │ │ ├── DHT.h │ │ │ ├── Delay.h │ │ │ ├── Framework.h │ │ │ ├── Pin.h │ │ │ ├── main.cpp │ │ │ └── shapes.h │ ├── 52_oscilloscope │ │ ├── app.lds │ │ ├── app │ │ │ ├── Calibrat.c │ │ │ ├── Calibrat.h │ │ │ ├── Draw.c │ │ │ ├── Draw.h │ │ │ ├── Fpga.h │ │ │ ├── Main.cpp │ │ │ ├── Menu.c │ │ │ ├── Menu.h │ │ │ ├── Process.c │ │ │ ├── Process.h │ │ │ ├── Sys.c │ │ │ └── Sys.h │ │ ├── build.sh │ │ └── pub │ │ │ ├── DS213Bios.h │ │ │ ├── DS213HwDriver.h │ │ │ ├── DispDrv.c │ │ │ ├── File.c │ │ │ ├── File.h │ │ │ ├── Func.c │ │ │ ├── Func.h │ │ │ └── Platform.h │ ├── 58_gabmini │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds213.sh │ │ ├── build_mac.sh │ │ ├── cp_203.sh │ │ ├── cp_213.sh │ │ ├── source │ │ │ ├── Framework.h │ │ │ ├── Framework │ │ │ │ ├── Calibration.h │ │ │ │ ├── ListItems.h │ │ │ │ ├── Midi.h │ │ │ │ ├── Sampler.cpp │ │ │ │ └── Sampler.h │ │ │ ├── MainWnd.cpp │ │ │ ├── MainWnd.h │ │ │ ├── Oscilloscope │ │ │ │ ├── Controls │ │ │ │ │ ├── GraphBase.h │ │ │ │ │ ├── GraphOsc.cpp │ │ │ │ │ ├── GraphOsc.h │ │ │ │ │ ├── GraphSig.h │ │ │ │ │ ├── LevelRef.h │ │ │ │ │ ├── OscInfo.h │ │ │ │ │ ├── TimeRef.h │ │ │ │ │ └── ZoomBar.h │ │ │ │ ├── Core │ │ │ │ │ ├── CoreOscilloscope.cpp │ │ │ │ │ └── CoreOscilloscope.h │ │ │ │ ├── Disp │ │ │ │ │ ├── ItemDisp.h │ │ │ │ │ ├── MenuDisp.cpp │ │ │ │ │ └── MenuDisp.h │ │ │ │ ├── Input │ │ │ │ │ ├── ItemAnalog.h │ │ │ │ │ ├── ItemDigital.h │ │ │ │ │ ├── ItemTime.h │ │ │ │ │ ├── ItemTrigger.h │ │ │ │ │ ├── ItemWindow.h │ │ │ │ │ ├── ListAnalog.h │ │ │ │ │ ├── ListDigital.h │ │ │ │ │ ├── ListTrigger.h │ │ │ │ │ ├── MenuInput.cpp │ │ │ │ │ └── MenuInput.h │ │ │ │ ├── Marker │ │ │ │ │ ├── ItemDelta.h │ │ │ │ │ ├── ItemMarker.h │ │ │ │ │ ├── ListMarker.h │ │ │ │ │ ├── MenuMarker.cpp │ │ │ │ │ └── MenuMarker.h │ │ │ │ └── Oscilloscope.h │ │ │ ├── Settings.cpp │ │ │ ├── Settings.h │ │ │ ├── Shapes.cpp │ │ │ ├── Shapes.h │ │ │ ├── ToolBar.cpp │ │ │ ├── ToolBar.h │ │ │ ├── Windows │ │ │ │ ├── MessageBox.h │ │ │ │ ├── WndButton.h │ │ │ │ └── WndConfirm.h │ │ │ ├── app_ds203.lds │ │ │ ├── app_ds213.lds │ │ │ ├── main.cpp │ │ │ └── oldtypes.h │ │ └── todos │ └── 60_gabgen │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds213.sh │ │ ├── build_mac.sh │ │ ├── source │ │ ├── Framework.h │ │ ├── Framework │ │ │ ├── Calibration.h │ │ │ ├── Lcd.cpp │ │ │ ├── Lcd.h │ │ │ ├── ListItems.h │ │ │ ├── Midi.h │ │ │ ├── MyUtils.cpp │ │ │ ├── MyUtils.h │ │ │ ├── Sampler.cpp │ │ │ └── Sampler.h │ │ ├── Generator │ │ │ ├── Controls │ │ │ │ └── GraphSig.h │ │ │ ├── Core │ │ │ │ ├── CoreGenerator.cpp │ │ │ │ └── CoreGenerator.h │ │ │ ├── Edit │ │ │ │ ├── MenuGenEdit.cpp │ │ │ │ └── MenuGenEdit.h │ │ │ ├── Generator.h │ │ │ ├── Main │ │ │ │ ├── ItemGenAmplitude.h │ │ │ │ ├── ItemGenDuty.h │ │ │ │ ├── ItemGenFrequency.h │ │ │ │ ├── ItemGenOffset.h │ │ │ │ ├── ItemGenWaveform.h │ │ │ │ ├── MenuGenMain.cpp │ │ │ │ └── MenuGenMain.h │ │ │ └── Modulation │ │ │ │ ├── MenuGenModulation.cpp │ │ │ │ └── MenuGenModulation.h │ │ ├── MainWnd.cpp │ │ ├── MainWnd.h │ │ ├── Oscilloscope │ │ │ ├── Controls │ │ │ │ ├── GraphBase.h │ │ │ │ ├── GraphOsc.cpp │ │ │ │ ├── GraphOsc.h │ │ │ │ └── GraphSig.h │ │ │ └── Oscilloscope.h │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── Shapes.cpp │ │ ├── Shapes.h │ │ ├── ToolBar.cpp │ │ ├── ToolBar.h │ │ ├── Windows │ │ │ ├── MessageBox.h │ │ │ ├── WndButton.h │ │ │ └── WndConfirm.h │ │ ├── app.lds │ │ ├── main.cpp │ │ └── oldtypes.h │ │ └── todos ├── apps_experiments │ ├── 100_lowi2c │ │ ├── build.sh │ │ ├── cp.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ └── stm32 │ │ │ ├── core_cm3.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── la104_i2c.h │ │ │ ├── stm32f10x.h │ │ │ ├── stm32f10x_i2c.c │ │ │ ├── stm32f10x_i2c.h │ │ │ ├── stm32f10x_rcc.h │ │ │ └── system_stm32f10x.h │ ├── 102_ssd1306 │ │ ├── build.sh │ │ └── source │ │ │ ├── Adafruit_SSD1306.cpp │ │ │ ├── Adafruit_SSD1306.h │ │ │ ├── app.lds │ │ │ ├── i2c.h │ │ │ ├── main.cpp │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── splash.h │ │ │ └── starfields.h │ ├── 106_mpr121 │ │ ├── Adafruit_MPR121.cpp │ │ ├── Adafruit_MPR121.h │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── platform.h │ ├── 107_scheme │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── res │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ └── test.sch │ │ └── source │ │ │ ├── app.lds │ │ │ ├── data.h │ │ │ ├── draw.h │ │ │ ├── json.h │ │ │ └── main.cpp │ ├── 108_si1145 │ │ ├── Adafruit_SI1145.cpp │ │ ├── Adafruit_SI1145.h │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── platform.h │ ├── 111_micropython │ │ ├── .vscode │ │ │ ├── .cortex-debug.peripherals.state.json │ │ │ ├── .cortex-debug.registers.state.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── build_test.sh │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── extmod │ │ │ ├── virtpin.c │ │ │ └── virtpin.h │ │ │ ├── frozen │ │ │ ├── _frozen_mpy.c │ │ │ ├── frozentest.mpy │ │ │ └── frozentest.py │ │ │ ├── genhdr │ │ │ ├── moduledefs.h │ │ │ ├── mpversion.h │ │ │ └── qstrdefs.generated.h │ │ │ ├── glue.c │ │ │ ├── lib │ │ │ ├── mp-readline │ │ │ │ ├── readline.c │ │ │ │ └── readline.h │ │ │ └── utils │ │ │ │ ├── pyexec.c │ │ │ │ └── pyexec.h │ │ │ ├── main.cpp │ │ │ ├── mpconfigport.h │ │ │ ├── mphalport.h │ │ │ ├── platform.cpp │ │ │ └── py │ │ │ ├── argcheck.c │ │ │ ├── asmarm.c │ │ │ ├── asmarm.h │ │ │ ├── asmbase.c │ │ │ ├── asmbase.h │ │ │ ├── asmthumb.c │ │ │ ├── asmthumb.h │ │ │ ├── asmx64.c │ │ │ ├── asmx64.h │ │ │ ├── asmx86.c │ │ │ ├── asmx86.h │ │ │ ├── asmxtensa.c │ │ │ ├── asmxtensa.h │ │ │ ├── bc.c │ │ │ ├── bc.h │ │ │ ├── bc0.h │ │ │ ├── binary.c │ │ │ ├── binary.h │ │ │ ├── builtin.h │ │ │ ├── builtinevex.c │ │ │ ├── builtinhelp.c │ │ │ ├── builtinimport.c │ │ │ ├── compile.c │ │ │ ├── compile.h │ │ │ ├── dynruntime.h │ │ │ ├── dynruntime.mk │ │ │ ├── emit.h │ │ │ ├── emitbc.c │ │ │ ├── emitcommon.c │ │ │ ├── emitglue.c │ │ │ ├── emitglue.h │ │ │ ├── emitinlinethumb.c │ │ │ ├── emitinlinextensa.c │ │ │ ├── emitnarm.c │ │ │ ├── emitnative.c │ │ │ ├── emitnthumb.c │ │ │ ├── emitnx64.c │ │ │ ├── emitnx86.c │ │ │ ├── emitnxtensa.c │ │ │ ├── emitnxtensawin.c │ │ │ ├── formatfloat.c │ │ │ ├── formatfloat.h │ │ │ ├── frozenmod.c │ │ │ ├── frozenmod.h │ │ │ ├── gc.c │ │ │ ├── gc.h │ │ │ ├── grammar.h │ │ │ ├── lexer.c │ │ │ ├── lexer.h │ │ │ ├── makecompresseddata.py │ │ │ ├── makemoduledefs.py │ │ │ ├── makeqstrdata.py │ │ │ ├── makeqstrdefs.py │ │ │ ├── makeversionhdr.py │ │ │ ├── malloc.c │ │ │ ├── map.c │ │ │ ├── misc.h │ │ │ ├── mkenv.mk │ │ │ ├── mkrules.cmake │ │ │ ├── mkrules.mk │ │ │ ├── modarray.c │ │ │ ├── modbuiltins.c │ │ │ ├── modcmath.c │ │ │ ├── modcollections.c │ │ │ ├── modgc.c │ │ │ ├── modio.c │ │ │ ├── modmath.c │ │ │ ├── modmicropython.c │ │ │ ├── modstruct.c │ │ │ ├── modsys.c │ │ │ ├── modthread.c │ │ │ ├── moduerrno.c │ │ │ ├── mpconfig.h │ │ │ ├── mperrno.h │ │ │ ├── mphal.h │ │ │ ├── mpprint.c │ │ │ ├── mpprint.h │ │ │ ├── mpstate.c │ │ │ ├── mpstate.h │ │ │ ├── mpthread.h │ │ │ ├── mpz.c │ │ │ ├── mpz.h │ │ │ ├── nativeglue.c │ │ │ ├── nativeglue.h │ │ │ ├── nlr.c │ │ │ ├── nlr.h │ │ │ ├── nlrpowerpc.c │ │ │ ├── nlrsetjmp.c │ │ │ ├── nlrthumb.c │ │ │ ├── nlrx64.c │ │ │ ├── nlrx86.c │ │ │ ├── nlrxtensa.c │ │ │ ├── obj.c │ │ │ ├── obj.h │ │ │ ├── objarray.c │ │ │ ├── objarray.h │ │ │ ├── objattrtuple.c │ │ │ ├── objbool.c │ │ │ ├── objboundmeth.c │ │ │ ├── objcell.c │ │ │ ├── objclosure.c │ │ │ ├── objcomplex.c │ │ │ ├── objdeque.c │ │ │ ├── objdict.c │ │ │ ├── objenumerate.c │ │ │ ├── objexcept.c │ │ │ ├── objexcept.h │ │ │ ├── objfilter.c │ │ │ ├── objfloat.c │ │ │ ├── objfun.c │ │ │ ├── objfun.h │ │ │ ├── objgenerator.c │ │ │ ├── objgenerator.h │ │ │ ├── objgetitemiter.c │ │ │ ├── objint.c │ │ │ ├── objint.h │ │ │ ├── objint_longlong.c │ │ │ ├── objint_mpz.c │ │ │ ├── objlist.c │ │ │ ├── objlist.h │ │ │ ├── objmap.c │ │ │ ├── objmodule.c │ │ │ ├── objmodule.h │ │ │ ├── objnamedtuple.c │ │ │ ├── objnamedtuple.h │ │ │ ├── objnone.c │ │ │ ├── objobject.c │ │ │ ├── objpolyiter.c │ │ │ ├── objproperty.c │ │ │ ├── objrange.c │ │ │ ├── objreversed.c │ │ │ ├── objset.c │ │ │ ├── objsingleton.c │ │ │ ├── objslice.c │ │ │ ├── objstr.c │ │ │ ├── objstr.h │ │ │ ├── objstringio.c │ │ │ ├── objstringio.h │ │ │ ├── objstrunicode.c │ │ │ ├── objtuple.c │ │ │ ├── objtuple.h │ │ │ ├── objtype.c │ │ │ ├── objtype.h │ │ │ ├── objzip.c │ │ │ ├── opmethods.c │ │ │ ├── pairheap.c │ │ │ ├── pairheap.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── parsenum.c │ │ │ ├── parsenum.h │ │ │ ├── parsenumbase.c │ │ │ ├── parsenumbase.h │ │ │ ├── persistentcode.c │ │ │ ├── persistentcode.h │ │ │ ├── profile.c │ │ │ ├── profile.h │ │ │ ├── py.cmake │ │ │ ├── py.mk │ │ │ ├── pystack.c │ │ │ ├── pystack.h │ │ │ ├── qstr.c │ │ │ ├── qstr.h │ │ │ ├── qstrdefs.h │ │ │ ├── reader.c │ │ │ ├── reader.h │ │ │ ├── repl.c │ │ │ ├── repl.h │ │ │ ├── ringbuf.c │ │ │ ├── ringbuf.h │ │ │ ├── runtime.c │ │ │ ├── runtime.h │ │ │ ├── runtime0.h │ │ │ ├── runtime_utils.c │ │ │ ├── scheduler.c │ │ │ ├── scope.c │ │ │ ├── scope.h │ │ │ ├── sequence.c │ │ │ ├── showbc.c │ │ │ ├── smallint.c │ │ │ ├── smallint.h │ │ │ ├── stackctrl.c │ │ │ ├── stackctrl.h │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── unicode.c │ │ │ ├── unicode.h │ │ │ ├── vm.c │ │ │ ├── vmentrytable.h │ │ │ ├── vstr.c │ │ │ └── warning.c │ ├── 112_blackmagic │ │ ├── build.sh │ │ ├── build_test.sh │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── blackmagic │ │ │ │ ├── command.c │ │ │ │ ├── command.h │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── exception.c │ │ │ │ ├── exception.h │ │ │ │ ├── gdb_hostio.c │ │ │ │ ├── gdb_hostio.h │ │ │ │ ├── gdb_if.h │ │ │ │ ├── gdb_main.c │ │ │ │ ├── gdb_main.h │ │ │ │ ├── gdb_packet.c │ │ │ │ ├── gdb_packet.h │ │ │ │ ├── general.h │ │ │ │ ├── hex_utils.c │ │ │ │ ├── hex_utils.h │ │ │ │ ├── jtagtap.h │ │ │ │ ├── morse.c │ │ │ │ ├── morse.h │ │ │ │ ├── platform_support.h │ │ │ │ ├── remote.c │ │ │ │ ├── remote.h │ │ │ │ ├── serialno.h │ │ │ │ ├── swdptap.h │ │ │ │ ├── target.h │ │ │ │ ├── timing.c │ │ │ │ └── timing.h │ │ │ ├── main.cpp │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── target │ │ │ │ ├── target.c │ │ │ │ └── target_internal.h │ │ │ ├── version.h │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ └── test.sh │ ├── 114_micropython_compiler │ │ ├── .vscode │ │ │ ├── .cortex-debug.peripherals.state.json │ │ │ ├── .cortex-debug.registers.state.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── build_test.sh │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── genhdr │ │ │ ├── moduledefs.h │ │ │ ├── mpversion.h │ │ │ └── qstrdefs.generated.h │ │ │ ├── glue.c │ │ │ ├── lib │ │ │ └── mp-readline │ │ │ │ ├── readline.c │ │ │ │ └── readline.h │ │ │ ├── main.cpp │ │ │ ├── mpconfigport.h │ │ │ ├── mphalport.h │ │ │ ├── platform.cpp │ │ │ └── py │ │ │ ├── argcheck.c │ │ │ ├── asmarm.c │ │ │ ├── asmarm.h │ │ │ ├── asmbase.c │ │ │ ├── asmbase.h │ │ │ ├── asmthumb.c │ │ │ ├── asmthumb.h │ │ │ ├── asmx64.c │ │ │ ├── asmx64.h │ │ │ ├── asmx86.c │ │ │ ├── asmx86.h │ │ │ ├── asmxtensa.c │ │ │ ├── asmxtensa.h │ │ │ ├── bc.c │ │ │ ├── bc.h │ │ │ ├── bc0.h │ │ │ ├── binary.c │ │ │ ├── binary.h │ │ │ ├── builtin.h │ │ │ ├── builtinevex.c │ │ │ ├── builtinhelp.c │ │ │ ├── builtinimport.c │ │ │ ├── compile.c │ │ │ ├── compile.h │ │ │ ├── dynruntime.h │ │ │ ├── dynruntime.mk │ │ │ ├── emit.h │ │ │ ├── emitbc.c │ │ │ ├── emitcommon.c │ │ │ ├── emitglue.c │ │ │ ├── emitglue.h │ │ │ ├── emitinlinethumb.c │ │ │ ├── emitinlinextensa.c │ │ │ ├── emitnarm.c │ │ │ ├── emitnative.c │ │ │ ├── emitnthumb.c │ │ │ ├── emitnx64.c │ │ │ ├── emitnx86.c │ │ │ ├── emitnxtensa.c │ │ │ ├── emitnxtensawin.c │ │ │ ├── formatfloat.c │ │ │ ├── formatfloat.h │ │ │ ├── frozenmod.c │ │ │ ├── frozenmod.h │ │ │ ├── gc.c │ │ │ ├── gc.h │ │ │ ├── grammar.h │ │ │ ├── lexer.c │ │ │ ├── lexer.h │ │ │ ├── makecompresseddata.py │ │ │ ├── makemoduledefs.py │ │ │ ├── makeqstrdata.py │ │ │ ├── makeqstrdefs.py │ │ │ ├── makeversionhdr.py │ │ │ ├── malloc.c │ │ │ ├── map.c │ │ │ ├── misc.h │ │ │ ├── mkenv.mk │ │ │ ├── mkrules.cmake │ │ │ ├── mkrules.mk │ │ │ ├── modarray.c │ │ │ ├── modbuiltins.c │ │ │ ├── modcmath.c │ │ │ ├── modcollections.c │ │ │ ├── modgc.c │ │ │ ├── modio.c │ │ │ ├── modmath.c │ │ │ ├── modmicropython.c │ │ │ ├── modstruct.c │ │ │ ├── modsys.c │ │ │ ├── modthread.c │ │ │ ├── moduerrno.c │ │ │ ├── mpconfig.h │ │ │ ├── mperrno.h │ │ │ ├── mphal.h │ │ │ ├── mpprint.c │ │ │ ├── mpprint.h │ │ │ ├── mpstate.c │ │ │ ├── mpstate.h │ │ │ ├── mpthread.h │ │ │ ├── mpz.c │ │ │ ├── mpz.h │ │ │ ├── nativeglue.c │ │ │ ├── nativeglue.h │ │ │ ├── nlr.c │ │ │ ├── nlr.h │ │ │ ├── nlrpowerpc.c │ │ │ ├── nlrsetjmp.c │ │ │ ├── nlrthumb.c │ │ │ ├── nlrx64.c │ │ │ ├── nlrx86.c │ │ │ ├── nlrxtensa.c │ │ │ ├── obj.c │ │ │ ├── obj.h │ │ │ ├── objarray.c │ │ │ ├── objarray.h │ │ │ ├── objattrtuple.c │ │ │ ├── objbool.c │ │ │ ├── objboundmeth.c │ │ │ ├── objcell.c │ │ │ ├── objclosure.c │ │ │ ├── objcomplex.c │ │ │ ├── objdeque.c │ │ │ ├── objdict.c │ │ │ ├── objenumerate.c │ │ │ ├── objexcept.c │ │ │ ├── objexcept.h │ │ │ ├── objfilter.c │ │ │ ├── objfloat.c │ │ │ ├── objfun.c │ │ │ ├── objfun.h │ │ │ ├── objgenerator.c │ │ │ ├── objgenerator.h │ │ │ ├── objgetitemiter.c │ │ │ ├── objint.c │ │ │ ├── objint.h │ │ │ ├── objint_longlong.c │ │ │ ├── objint_mpz.c │ │ │ ├── objlist.c │ │ │ ├── objlist.h │ │ │ ├── objmap.c │ │ │ ├── objmodule.c │ │ │ ├── objmodule.h │ │ │ ├── objnamedtuple.c │ │ │ ├── objnamedtuple.h │ │ │ ├── objnone.c │ │ │ ├── objobject.c │ │ │ ├── objpolyiter.c │ │ │ ├── objproperty.c │ │ │ ├── objrange.c │ │ │ ├── objreversed.c │ │ │ ├── objset.c │ │ │ ├── objsingleton.c │ │ │ ├── objslice.c │ │ │ ├── objstr.c │ │ │ ├── objstr.h │ │ │ ├── objstringio.c │ │ │ ├── objstringio.h │ │ │ ├── objstrunicode.c │ │ │ ├── objtuple.c │ │ │ ├── objtuple.h │ │ │ ├── objtype.c │ │ │ ├── objtype.h │ │ │ ├── objzip.c │ │ │ ├── opmethods.c │ │ │ ├── pairheap.c │ │ │ ├── pairheap.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── parsenum.c │ │ │ ├── parsenum.h │ │ │ ├── parsenumbase.c │ │ │ ├── parsenumbase.h │ │ │ ├── persistentcode.c │ │ │ ├── persistentcode.h │ │ │ ├── profile.c │ │ │ ├── profile.h │ │ │ ├── py.cmake │ │ │ ├── py.mk │ │ │ ├── pystack.c │ │ │ ├── pystack.h │ │ │ ├── qstr.c │ │ │ ├── qstr.h │ │ │ ├── qstrdefs.h │ │ │ ├── reader.c │ │ │ ├── reader.h │ │ │ ├── repl.c │ │ │ ├── repl.h │ │ │ ├── ringbuf.c │ │ │ ├── ringbuf.h │ │ │ ├── runtime.c │ │ │ ├── runtime.h │ │ │ ├── runtime0.h │ │ │ ├── runtime_utils.c │ │ │ ├── scheduler.c │ │ │ ├── scope.c │ │ │ ├── scope.h │ │ │ ├── sequence.c │ │ │ ├── showbc.c │ │ │ ├── smallint.c │ │ │ ├── smallint.h │ │ │ ├── stackctrl.c │ │ │ ├── stackctrl.h │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── unicode.c │ │ │ ├── unicode.h │ │ │ ├── vm.c │ │ │ ├── vmentrytable.h │ │ │ ├── vstr.c │ │ │ └── warning.c │ ├── 119_bpkt │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ └── main.cpp │ ├── 126_sdvid │ │ ├── build.sh │ │ ├── build_video.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── fat.h │ │ │ ├── main.cpp │ │ │ ├── platform.h │ │ │ ├── sd.h │ │ │ └── spi.h │ ├── 128_sdjpeg │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── sd.h │ │ │ ├── spi.h │ │ │ ├── tjpgd.c │ │ │ ├── tjpgd.h │ │ │ └── tjpgdcnf.h │ ├── 129_sdplay │ │ ├── build.sh │ │ └── source │ │ │ ├── FFT.cpp │ │ │ ├── FFT.h │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── sd.h │ │ │ └── spi.h │ ├── 130_i2s │ │ ├── build.sh │ │ ├── convert.sh │ │ ├── playback_beep │ │ │ ├── app.lds │ │ │ ├── gpio.h │ │ │ └── main.cpp │ │ ├── playback_dma │ │ │ ├── app.lds │ │ │ ├── file │ │ │ │ ├── file.h │ │ │ │ ├── layout.h │ │ │ │ └── shapes.h │ │ │ ├── gpio.h │ │ │ └── main.cpp │ │ ├── playback_wav │ │ │ ├── app.lds │ │ │ ├── gpio.h │ │ │ └── main.cpp │ │ ├── record_test │ │ │ ├── app.lds │ │ │ ├── gpio.h │ │ │ └── main.cpp │ │ └── record_wav │ │ │ ├── app.lds │ │ │ ├── gpio.h │ │ │ └── main.cpp │ ├── 131_mca25 │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── gpio.h │ │ │ ├── main.cpp │ │ │ ├── tjpgd.c │ │ │ ├── tjpgd.h │ │ │ └── tjpgdcnf.h │ ├── 132_diskspeed │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── build.sh │ │ │ ├── gpio.h │ │ │ └── main.cpp │ ├── 134_nokia5110 │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── main_gpio.cpp │ │ │ └── spi.h │ ├── 135_espflasher │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── esp-serial-flasher │ │ │ ├── esp_loader.c │ │ │ ├── esp_loader.h │ │ │ ├── esp_loader_io.h │ │ │ ├── esp_targets.c │ │ │ ├── esp_targets.h │ │ │ ├── protocol.c │ │ │ ├── protocol.h │ │ │ ├── slip.c │ │ │ └── slip.h │ │ │ ├── glue.h │ │ │ ├── gpio.h │ │ │ └── main.cpp │ ├── 139_bebetoy │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── res │ │ │ └── bebetoy │ │ │ │ ├── antena.bmp │ │ │ │ ├── auto.bmp │ │ │ │ ├── autobus.bmp │ │ │ │ ├── avokado.bmp │ │ │ │ ├── babo.bmp │ │ │ │ ├── banan.bmp │ │ │ │ ├── bicykel.bmp │ │ │ │ ├── bubon.bmp │ │ │ │ ├── cesnak.bmp │ │ │ │ ├── cesta.bmp │ │ │ │ ├── cibula.bmp │ │ │ │ ├── cumlik.bmp │ │ │ │ ├── darcek.bmp │ │ │ │ ├── dazdnik.bmp │ │ │ │ ├── doktorka.bmp │ │ │ │ ├── dom.bmp │ │ │ │ ├── duha.bmp │ │ │ │ ├── egres.bmp │ │ │ │ ├── elektricka.bmp │ │ │ │ ├── euro.bmp │ │ │ │ ├── fazula.bmp │ │ │ │ ├── figa.bmp │ │ │ │ ├── figurka.bmp │ │ │ │ ├── fotka.bmp │ │ │ │ └── gramofon.bmp │ │ └── source │ │ │ ├── app.lds │ │ │ ├── images.h │ │ │ ├── main.cpp │ │ │ └── ps2 │ │ │ ├── gpio.h │ │ │ ├── keyboard.h │ │ │ ├── periph.h │ │ │ └── scancode.h │ ├── 53_213oscfpgatest │ │ ├── CMakeLists.txt │ │ ├── DS213HwDriver.h │ │ ├── Fpga.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── fpga2.h │ │ ├── main.cpp │ │ └── platform.h │ ├── 54_2x3_gaboscshell │ │ ├── Bitmap.h │ │ ├── Framework.h │ │ ├── MainMenu.cpp │ │ ├── MainMenu.h │ │ ├── MainWnd.cpp │ │ ├── MainWnd.h │ │ ├── MessageBox.h │ │ ├── Shapes.cpp │ │ ├── Shapes.h │ │ ├── ToolBar.cpp │ │ ├── ToolBar.h │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── 55_2x3_gabosc │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── Framework.h │ │ │ ├── Framework │ │ │ ├── Calibration.h │ │ │ ├── ListItems.h │ │ │ ├── Midi.h │ │ │ ├── Sampler.cpp │ │ │ └── Sampler.h │ │ │ ├── MainWnd.cpp │ │ │ ├── MainWnd.h │ │ │ ├── Oscilloscope │ │ │ ├── Controls │ │ │ │ ├── GraphBase.h │ │ │ │ ├── GraphOsc.cpp │ │ │ │ ├── GraphOsc.h │ │ │ │ ├── GraphSig.h │ │ │ │ ├── LevelRef.h │ │ │ │ ├── OscInfo.h │ │ │ │ ├── TimeRef.h │ │ │ │ └── ZoomBar.h │ │ │ ├── Core │ │ │ │ ├── CoreOscilloscope.cpp │ │ │ │ └── CoreOscilloscope.h │ │ │ ├── Disp │ │ │ │ ├── ItemDisp.h │ │ │ │ ├── MenuDisp.cpp │ │ │ │ └── MenuDisp.h │ │ │ ├── Input │ │ │ │ ├── ItemAnalog.h │ │ │ │ ├── ItemDigital.h │ │ │ │ ├── ItemTime.h │ │ │ │ ├── ItemTrigger.h │ │ │ │ ├── ItemWindow.h │ │ │ │ ├── ListAnalog.h │ │ │ │ ├── ListDigital.h │ │ │ │ ├── ListTrigger.h │ │ │ │ ├── MenuInput.cpp │ │ │ │ └── MenuInput.h │ │ │ ├── Marker │ │ │ │ ├── ItemDelta.h │ │ │ │ ├── ItemMarker.h │ │ │ │ ├── ListMarker.h │ │ │ │ ├── MenuMarker.cpp │ │ │ │ └── MenuMarker.h │ │ │ ├── Mask │ │ │ │ ├── MenuMask.cpp │ │ │ │ └── MenuMask.h │ │ │ ├── Math │ │ │ │ ├── ChannelMath.cpp │ │ │ │ ├── ChannelMath.h │ │ │ │ ├── FirFilter.cpp │ │ │ │ ├── FirFilter.h │ │ │ │ ├── ItemOperand.h │ │ │ │ ├── ItemOperator.h │ │ │ │ ├── ListOperand.h │ │ │ │ ├── ListOperator.h │ │ │ │ ├── MenuMath.cpp │ │ │ │ └── MenuMath.h │ │ │ ├── Meas │ │ │ │ ├── Decoders │ │ │ │ │ ├── CanBus.h │ │ │ │ │ └── Serial.h │ │ │ │ ├── ItemMeas.h │ │ │ │ ├── ListMeas.h │ │ │ │ ├── MenuMeas.cpp │ │ │ │ ├── MenuMeas.h │ │ │ │ ├── Statistics.cpp │ │ │ │ └── Statistics.h │ │ │ └── Oscilloscope.h │ │ │ ├── Settings.cpp │ │ │ ├── Settings.h │ │ │ ├── Shapes.cpp │ │ │ ├── Shapes.h │ │ │ ├── ToolBar.cpp │ │ │ ├── ToolBar.h │ │ │ ├── Windows │ │ │ ├── MessageBox.h │ │ │ ├── WndButton.h │ │ │ └── WndConfirm.h │ │ │ ├── app.lds │ │ │ ├── app213.lds │ │ │ ├── main.cpp │ │ │ └── oldtypes.h │ ├── 59_2x3_memtest │ │ ├── app.lds │ │ ├── build.sh │ │ ├── ds203.h │ │ ├── main.cpp │ │ ├── main2.cpp │ │ ├── main3.cpp │ │ └── testdata.c │ ├── 71_213_dmastreamer │ │ ├── build.sh │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── ringbuf.h │ │ │ ├── streamer │ │ │ │ ├── core_cm3.h │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── streamer.cpp │ │ │ │ └── streamer.h │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ └── web │ │ │ ├── bios.js │ │ │ ├── comm.js │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── serial.js │ │ │ └── server.sh │ ├── 75_invtemu │ │ ├── build.sh │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── main.cpp │ │ │ ├── vfd │ │ │ ├── debug.h │ │ │ ├── invt.h │ │ │ ├── invtgd10.h │ │ │ ├── packet.h │ │ │ └── serial.h │ │ │ ├── vfdAttributes.h │ │ │ └── vfdManager.h │ ├── 76_cc1101send │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── device │ │ │ │ ├── cc1101.h │ │ │ │ ├── json.h │ │ │ │ └── spi.h │ │ │ ├── graph.h │ │ │ ├── main.cpp │ │ │ ├── protocol │ │ │ │ ├── dummy.h │ │ │ │ ├── protocol.h │ │ │ │ └── weather.h │ │ │ ├── send.h │ │ │ ├── streamer │ │ │ │ ├── core_cm3.h │ │ │ │ ├── dma.h │ │ │ │ ├── ringbuf.h │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── streamer.cpp │ │ │ │ └── streamer.h │ │ │ └── thermo.h │ │ └── tools │ │ │ ├── bwcalc.js │ │ │ ├── dataratecalc.js │ │ │ ├── jointest.js │ │ │ ├── jointest2.html │ │ │ ├── rtl433 │ │ │ ├── decoder.js │ │ │ ├── index.html │ │ │ └── rtl433.wasm │ │ │ ├── simplesend.cpp │ │ │ ├── test380.js │ │ │ └── testfob.js │ ├── 77_dmatest │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── main.cpp │ │ │ └── streamer │ │ │ ├── core_cm3.h │ │ │ ├── dma.h │ │ │ ├── ringbuf.h │ │ │ ├── stm32f10x.h │ │ │ ├── streamer.cpp │ │ │ └── streamer.h │ ├── 78_uartgen │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── 84_max7219 │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── main.cpp │ │ │ └── spi.h │ ├── 87_mlx90614 │ │ ├── build.sh │ │ └── source │ │ │ ├── Adafruit_MLX90614.cpp │ │ │ ├── Adafruit_MLX90614.h │ │ │ ├── Arduino.cpp │ │ │ ├── Arduino.h │ │ │ ├── app.lds │ │ │ └── main.cpp │ ├── 88_epd_ssd1675a │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── epd │ │ │ ├── epd.cpp │ │ │ ├── epd.h │ │ │ ├── epdif.cpp │ │ │ └── epdif.h │ │ │ ├── epdpaint │ │ │ ├── epdpaint.cpp │ │ │ ├── epdpaint.h │ │ │ ├── font12.c │ │ │ ├── font16.c │ │ │ ├── font20.c │ │ │ ├── font24.c │ │ │ ├── font8.c │ │ │ └── fonts.h │ │ │ ├── imagedata.cpp │ │ │ ├── imagedata.h │ │ │ ├── main.cpp │ │ │ └── spi │ │ │ └── spi.h │ ├── 89_fancyepd │ │ ├── build.sh │ │ └── source │ │ │ ├── adafruitgfx │ │ │ ├── Adafruit_GFX.cpp │ │ │ ├── Adafruit_GFX.h │ │ │ └── gfxfont.h │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── fancyepd │ │ │ ├── FancyEPD.cpp │ │ │ ├── FancyEPD.h │ │ │ ├── FancyEPD_Demo_images.h │ │ │ ├── FancyEPD_models.h │ │ │ ├── compression_test.h │ │ │ └── crystal_fontz_test.h │ │ │ ├── main.cpp │ │ │ └── spi │ │ │ └── spi.h │ ├── 92_bmp180 │ │ ├── Adafruit_BMP085.cpp │ │ ├── Adafruit_BMP085.h │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── platform.h │ ├── 93_mfrc522 │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── mfrc522 │ │ │ ├── MFRC522.cpp │ │ │ ├── MFRC522.h │ │ │ ├── MFRC522Extended.cpp │ │ │ ├── MFRC522Extended.h │ │ │ ├── MFRC522_i2c.cpp │ │ │ ├── MFRC522_spi.cpp │ │ │ ├── deprecated.h │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ └── require_cpp11.h │ │ │ └── spi │ │ │ └── spi.h │ ├── 95_sht20 │ │ ├── CMakeLists.txt │ │ ├── DFRobot_SHT20.cpp │ │ ├── DFRobot_SHT20.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── platform.h │ ├── 96_tm1637 │ │ ├── CMakeLists.txt │ │ ├── TM1637Display.cpp │ │ ├── TM1637Display.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── main.cpp │ │ └── platform.h │ ├── 97_backlight │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── bios.h │ │ ├── build.sh │ │ └── main.cpp │ ├── test10_i2c_direct │ │ ├── app.lds │ │ ├── bmp085.h │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.cpp │ │ └── stm32f10x_conf.h │ ├── test11_i2c_api │ │ ├── app.lds │ │ ├── arduino.h │ │ ├── bmp085.h │ │ ├── build.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test12_uart_api │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test14_apds9960 │ │ ├── ColorSensor.ino │ │ ├── GestureTest.ino │ │ ├── SparkFun_APDS9960.cpp │ │ ├── SparkFun_APDS9960.h │ │ ├── arduino │ │ │ ├── Arduino.cpp │ │ │ ├── Arduino.h │ │ │ ├── Wire.h │ │ │ ├── app.lds │ │ │ └── main.cpp │ │ ├── build.sh │ │ └── cp.sh │ ├── test16_cc1101 │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cc1101.cpp │ │ ├── cc1101.h │ │ ├── cp.sh │ │ ├── main.cpp │ │ ├── oregon.h │ │ └── spi.h │ ├── test18_onewire │ │ ├── DS18x20_Temperature.ino │ │ ├── Multibus_simple.ino │ │ ├── arduino │ │ │ ├── Arduino.cpp │ │ │ ├── Arduino.h │ │ │ ├── Wire.h │ │ │ ├── app.lds │ │ │ └── main.cpp │ │ ├── build.sh │ │ ├── cp.sh │ │ └── lib │ │ │ ├── DallasTemperature.cpp │ │ │ ├── DallasTemperature.h │ │ │ ├── OneWire.cpp │ │ │ ├── OneWire.h │ │ │ └── util │ │ │ ├── OneWire_direct_gpio.h │ │ │ └── OneWire_direct_regtype.h │ ├── test1_noimport │ │ ├── app.lds │ │ ├── bios.h │ │ ├── bios.s │ │ ├── build.sh │ │ └── main.cpp │ ├── test20_uartplay │ │ ├── alley.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── gabosong.txt │ │ ├── holiday.txt │ │ ├── laisla.txt │ │ └── main.cpp │ ├── test27_irsend │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── ir │ │ │ ├── gpio.h │ │ │ ├── ir_code.h │ │ │ ├── ir_tx.c │ │ │ ├── ir_tx.h │ │ │ └── platform_config.h │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.cpp │ │ ├── readme.txt │ │ └── stm32f10x_conf.h │ ├── test2_import │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_wasm.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test32_graph │ │ ├── app.lds │ │ ├── axis.h │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── draw.h │ │ ├── graph.h │ │ ├── main.cpp │ │ ├── palette.h │ │ ├── series.h │ │ └── shapes.h │ ├── test38_cc1101 │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cc1101.cpp │ │ ├── cc1101.h │ │ ├── cp.sh │ │ ├── main.cpp │ │ ├── oregon.h │ │ └── spi.h │ ├── test39_lcd │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── lcd.h │ │ └── main.cpp │ ├── test3_gui │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.cpp │ │ └── shapes.h │ ├── test40_fpga │ │ ├── analyser.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ └── main.cpp │ ├── test42_ccview │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cc1101.cpp │ │ ├── cc1101.h │ │ ├── cp.sh │ │ ├── logs │ │ │ ├── RF000_1.SIG │ │ │ ├── RF000_2.SIG │ │ │ ├── RF001_1.SIG │ │ │ ├── RF001_2.SIG │ │ │ ├── RF002_1.SIG │ │ │ ├── RF002_2.SIG │ │ │ ├── RF003_1.SIG │ │ │ ├── RF003_2.SIG │ │ │ ├── RF004_1.SIG │ │ │ ├── RF004_2.SIG │ │ │ ├── RF005_2.SIG │ │ │ ├── RF006_2.SIG │ │ │ ├── keeloq.txt │ │ │ ├── prot │ │ │ ├── prot2.js │ │ │ └── visualize.html │ │ ├── main.cpp │ │ ├── oregon.h │ │ └── spi.h │ ├── test43_dumpmem │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── dump │ │ │ ├── RAM.DAT │ │ │ └── ROM1.DAT │ │ ├── layout.txt │ │ └── main.cpp │ ├── test44_hardfault │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── test46_console │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── test48_scroll │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── test56_ds1307 │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── test57_ds3231 │ │ ├── app.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── test5_blink_hex │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.c │ │ └── pinio.h │ ├── test68_webusb │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_la104.sh │ │ ├── source │ │ │ ├── adc.h │ │ │ ├── app.lds │ │ │ ├── atof.h │ │ │ ├── evaluator.h │ │ │ ├── main.cpp │ │ │ ├── parser.h │ │ │ ├── rpc.h │ │ │ ├── spi.h │ │ │ ├── terminal.h │ │ │ ├── webusb.c │ │ │ └── webusb.h │ │ └── web │ │ │ ├── WebUSB-LED.js │ │ │ ├── index.html │ │ │ └── serial.js │ ├── test6_pwm_hex │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── lib │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── STM32F10x │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ └── STM32F10x_StdPeriph_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── main.c │ │ └── stm32f10x_conf.h │ ├── test8_ds_app │ │ ├── DS1820.h │ │ ├── Delay.h │ │ ├── Pin.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.cpp │ │ └── shapes.h │ └── test9_dht_app │ │ ├── DHT.h │ │ ├── Delay.h │ │ ├── Pin.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── main.cpp │ │ └── shapes.h ├── apps_featured │ ├── 103_servo │ │ ├── CMakeLists.txt │ │ ├── back24.png │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── circle.js │ │ ├── knob24w.png │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── knob.h │ │ │ ├── knob2.h │ │ │ ├── main.cpp │ │ │ └── pca9685 │ │ │ │ ├── Adafruit_PWMServoDriver.cpp │ │ │ │ ├── Adafruit_PWMServoDriver.h │ │ │ │ ├── platform.cpp │ │ │ │ └── platform.h │ │ └── test.js │ ├── 113_circuitpython │ │ ├── .vscode │ │ │ ├── .cortex-debug.peripherals.state.json │ │ │ ├── .cortex-debug.registers.state.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── readme │ │ │ ├── readme1.png │ │ │ ├── readme2.png │ │ │ ├── readme3.png │ │ │ ├── readme4.png │ │ │ └── readme5.png │ │ ├── scripts │ │ │ ├── chess.py │ │ │ ├── incompatible │ │ │ │ └── tetris2.py │ │ │ ├── lines.py │ │ │ ├── lines2.py │ │ │ └── test.py │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.cpp │ │ │ ├── assert.h │ │ │ ├── bindings │ │ │ ├── draw.h │ │ │ ├── mini.c │ │ │ ├── mini.h │ │ │ └── miniimpl.cpp │ │ │ ├── circuitpython │ │ │ ├── extmod │ │ │ │ ├── vfs.h │ │ │ │ └── virtpin.h │ │ │ ├── genhdr │ │ │ │ ├── moduledefs.h │ │ │ │ ├── mpversion.h │ │ │ │ ├── qstrdefs.enum.h │ │ │ │ ├── qstrdefs.generated.h │ │ │ │ └── qstrdefs.mini.h │ │ │ ├── lib │ │ │ │ ├── mp-readline │ │ │ │ │ └── readline.h │ │ │ │ └── utils │ │ │ │ │ ├── context_manager_helpers.c │ │ │ │ │ ├── context_manager_helpers.h │ │ │ │ │ └── interrupt_char.h │ │ │ ├── py │ │ │ │ ├── argcheck.c │ │ │ │ ├── asmarm.c │ │ │ │ ├── asmarm.h │ │ │ │ ├── asmbase.c │ │ │ │ ├── asmbase.h │ │ │ │ ├── asmthumb.c │ │ │ │ ├── asmthumb.h │ │ │ │ ├── asmx64.c │ │ │ │ ├── asmx64.h │ │ │ │ ├── asmx86.c │ │ │ │ ├── asmx86.h │ │ │ │ ├── asmxtensa.c │ │ │ │ ├── asmxtensa.h │ │ │ │ ├── bc.c │ │ │ │ ├── bc.h │ │ │ │ ├── bc0.h │ │ │ │ ├── binary.c │ │ │ │ ├── binary.h │ │ │ │ ├── builtin.h │ │ │ │ ├── builtinevex.c │ │ │ │ ├── builtinhelp.c │ │ │ │ ├── builtinimport.c │ │ │ │ ├── circuitpy_defns.mk │ │ │ │ ├── circuitpy_mpconfig.h │ │ │ │ ├── circuitpy_mpconfig.mk │ │ │ │ ├── compile.c │ │ │ │ ├── compile.h │ │ │ │ ├── emit.h │ │ │ │ ├── emitbc.c │ │ │ │ ├── emitcommon.c │ │ │ │ ├── emitglue.c │ │ │ │ ├── emitglue.h │ │ │ │ ├── emitinlinethumb.c │ │ │ │ ├── emitinlinextensa.c │ │ │ │ ├── emitnarm.c │ │ │ │ ├── emitnative.c │ │ │ │ ├── emitnthumb.c │ │ │ │ ├── emitnx64.c │ │ │ │ ├── emitnx86.c │ │ │ │ ├── emitnxtensa.c │ │ │ │ ├── enum.c │ │ │ │ ├── enum.h │ │ │ │ ├── formatfloat.c │ │ │ │ ├── formatfloat.h │ │ │ │ ├── frozenmod.c │ │ │ │ ├── frozenmod.h │ │ │ │ ├── gc.c │ │ │ │ ├── gc.h │ │ │ │ ├── gc_long_lived.c │ │ │ │ ├── gc_long_lived.h │ │ │ │ ├── genlast.py │ │ │ │ ├── grammar.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── lexer.c │ │ │ │ ├── lexer.h │ │ │ │ ├── makemoduledefs.py │ │ │ │ ├── makeqstrdata.py │ │ │ │ ├── makeqstrdefs.py │ │ │ │ ├── makeversionhdr.py │ │ │ │ ├── malloc.c │ │ │ │ ├── map.c │ │ │ │ ├── misc.h │ │ │ │ ├── mkenv.mk │ │ │ │ ├── mkrules.mk │ │ │ │ ├── modarray.c │ │ │ │ ├── modbuiltins.c │ │ │ │ ├── modcmath.c │ │ │ │ ├── modcollections.c │ │ │ │ ├── modgc.c │ │ │ │ ├── modio.c │ │ │ │ ├── modmath.c │ │ │ │ ├── modmicropython.c │ │ │ │ ├── modstruct.c │ │ │ │ ├── modsys.c │ │ │ │ ├── modthread.c │ │ │ │ ├── moduerrno.c │ │ │ │ ├── mpconfig.h │ │ │ │ ├── mperrno.h │ │ │ │ ├── mphal.h │ │ │ │ ├── mpprint.c │ │ │ │ ├── mpprint.h │ │ │ │ ├── mpstate.c │ │ │ │ ├── mpstate.h │ │ │ │ ├── mpthread.h │ │ │ │ ├── mpz.c │ │ │ │ ├── mpz.h │ │ │ │ ├── nativeglue.c │ │ │ │ ├── nlr.c │ │ │ │ ├── nlr.h │ │ │ │ ├── nlrsetjmp.c │ │ │ │ ├── nlrthumb.c │ │ │ │ ├── nlrx64.c │ │ │ │ ├── nlrx86.c │ │ │ │ ├── nlrxtensa.c │ │ │ │ ├── obj.c │ │ │ │ ├── obj.h │ │ │ │ ├── objarray.c │ │ │ │ ├── objarray.h │ │ │ │ ├── objattrtuple.c │ │ │ │ ├── objbool.c │ │ │ │ ├── objboundmeth.c │ │ │ │ ├── objcell.c │ │ │ │ ├── objclosure.c │ │ │ │ ├── objcomplex.c │ │ │ │ ├── objdeque.c │ │ │ │ ├── objdict.c │ │ │ │ ├── objenumerate.c │ │ │ │ ├── objexcept.c │ │ │ │ ├── objexcept.h │ │ │ │ ├── objfilter.c │ │ │ │ ├── objfloat.c │ │ │ │ ├── objfun.c │ │ │ │ ├── objfun.h │ │ │ │ ├── objgenerator.c │ │ │ │ ├── objgenerator.h │ │ │ │ ├── objgetitemiter.c │ │ │ │ ├── objint.c │ │ │ │ ├── objint.h │ │ │ │ ├── objint_longlong.c │ │ │ │ ├── objint_mpz.c │ │ │ │ ├── objlist.c │ │ │ │ ├── objlist.h │ │ │ │ ├── objmap.c │ │ │ │ ├── objmodule.c │ │ │ │ ├── objmodule.h │ │ │ │ ├── objnamedtuple.c │ │ │ │ ├── objnamedtuple.h │ │ │ │ ├── objnone.c │ │ │ │ ├── objobject.c │ │ │ │ ├── objpolyiter.c │ │ │ │ ├── objproperty.c │ │ │ │ ├── objproperty.h │ │ │ │ ├── objrange.c │ │ │ │ ├── objreversed.c │ │ │ │ ├── objset.c │ │ │ │ ├── objsingleton.c │ │ │ │ ├── objslice.c │ │ │ │ ├── objstr.c │ │ │ │ ├── objstr.h │ │ │ │ ├── objstringio.c │ │ │ │ ├── objstringio.h │ │ │ │ ├── objstrunicode.c │ │ │ │ ├── objtuple.c │ │ │ │ ├── objtuple.h │ │ │ │ ├── objtype.c │ │ │ │ ├── objtype.h │ │ │ │ ├── objzip.c │ │ │ │ ├── opmethods.c │ │ │ │ ├── parse.c │ │ │ │ ├── parse.h │ │ │ │ ├── parsenum.c │ │ │ │ ├── parsenum.h │ │ │ │ ├── parsenumbase.c │ │ │ │ ├── parsenumbase.h │ │ │ │ ├── persistentcode.c │ │ │ │ ├── persistentcode.h │ │ │ │ ├── proto.c │ │ │ │ ├── proto.h │ │ │ │ ├── py.mk │ │ │ │ ├── pystack.c │ │ │ │ ├── pystack.h │ │ │ │ ├── qstr.c │ │ │ │ ├── qstr.h │ │ │ │ ├── qstrdefs.h │ │ │ │ ├── reader.c │ │ │ │ ├── reader.h │ │ │ │ ├── reload.c │ │ │ │ ├── reload.h │ │ │ │ ├── repl.c │ │ │ │ ├── repl.h │ │ │ │ ├── ringbuf.c │ │ │ │ ├── ringbuf.h │ │ │ │ ├── runtime.c │ │ │ │ ├── runtime.h │ │ │ │ ├── runtime0.h │ │ │ │ ├── runtime_utils.c │ │ │ │ ├── scheduler.c │ │ │ │ ├── scope.c │ │ │ │ ├── scope.h │ │ │ │ ├── sequence.c │ │ │ │ ├── showbc.c │ │ │ │ ├── smallint.c │ │ │ │ ├── smallint.h │ │ │ │ ├── stackctrl.c │ │ │ │ ├── stackctrl.h │ │ │ │ ├── stream.c │ │ │ │ ├── stream.h │ │ │ │ ├── unicode.c │ │ │ │ ├── unicode.h │ │ │ │ ├── vm.c │ │ │ │ ├── vmentrytable.h │ │ │ │ ├── vstr.c │ │ │ │ └── warning.c │ │ │ └── supervisor │ │ │ │ ├── flash_root_pointers.h │ │ │ │ ├── internal_flash_root_pointers.h │ │ │ │ ├── linker.h │ │ │ │ ├── memory.h │ │ │ │ └── shared │ │ │ │ ├── safe_mode.h │ │ │ │ ├── stack.h │ │ │ │ └── translate.h │ │ │ ├── exec.c │ │ │ ├── exec.h │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── glue.c │ │ │ ├── main.cpp │ │ │ ├── mpconfigboard.h │ │ │ └── mpconfigport.h │ ├── 116_breakout │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── readme.png │ │ ├── res │ │ │ ├── back.h │ │ │ ├── back.png │ │ │ ├── c.js │ │ │ ├── conv.js │ │ │ ├── enemies.png │ │ │ └── powerups.png │ │ └── source │ │ │ ├── app.lds │ │ │ ├── images.h │ │ │ └── main.cpp │ ├── 117_gabuino │ │ ├── build.sh │ │ ├── build_ds213.sh │ │ ├── build_la104.sh │ │ ├── examples │ │ │ ├── 00_bars.cpp │ │ │ ├── 01_hello.cpp │ │ │ ├── 02_counter.cpp │ │ │ ├── 03_chart.cpp │ │ │ ├── 04_colorpicker.cpp │ │ │ ├── 05_flappybird.cpp │ │ │ ├── 06_drawing.cpp │ │ │ ├── 07_3d.cpp │ │ │ ├── 08_cat.cpp │ │ │ ├── 09_bouncetext.cpp │ │ │ ├── 10_breakpoint.cpp │ │ │ ├── bounceballs.cpp │ │ │ ├── build.js │ │ │ ├── build.sh │ │ │ ├── caliperfun.cpp │ │ │ ├── calipershort.cpp │ │ │ ├── gps.cpp │ │ │ └── melody.cpp │ │ ├── readme.jpg │ │ ├── readme.md │ │ ├── service │ │ │ ├── app.lds │ │ │ ├── assembly.js │ │ │ ├── nmparse.js │ │ │ ├── run.sh │ │ │ └── service.js │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── debug.h │ │ │ ├── evaluator.h │ │ │ ├── gabuino.h │ │ │ ├── lib │ │ │ │ ├── core_cm3.h │ │ │ │ └── stm32f10x.h │ │ │ ├── main.cpp │ │ │ ├── rpc.h │ │ │ ├── terminal.h │ │ │ ├── webusb.h │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ ├── symbols │ │ │ ├── ds213_gabuino_a59aacb6.js │ │ │ ├── ds213_gabuino_ee961e64.js │ │ │ ├── ds213_os_739632fa.js │ │ │ ├── ds213_os_8be066a1.js │ │ │ ├── ds213_os_f5103ada.js │ │ │ ├── la104_gabuino_03ff9b22.js │ │ │ ├── la104_gabuino_48f329f0.js │ │ │ ├── la104_os_ab4b9ef8.js │ │ │ ├── la104_os_cedee65d.js │ │ │ └── la104_os_d98c58de.js │ │ ├── test │ │ │ ├── compiletest.js │ │ │ ├── debugtest.js │ │ │ ├── stack.js │ │ │ └── svctest.js │ │ └── web │ │ │ ├── v0 │ │ │ ├── bios.js │ │ │ ├── comm.js │ │ │ ├── index.html │ │ │ └── serial.js │ │ │ └── v1 │ │ │ ├── ace │ │ │ └── readme.md │ │ │ ├── binary-parser │ │ │ ├── binary_parser.js │ │ │ └── context.js │ │ │ ├── bios.js │ │ │ ├── breakpoint.js │ │ │ ├── comm.js │ │ │ ├── compiler.js │ │ │ ├── debugger.js │ │ │ ├── editor.js │ │ │ ├── examples.js │ │ │ ├── gabuino.png │ │ │ ├── gui.js │ │ │ ├── gui_debug.js │ │ │ ├── index.html │ │ │ ├── parseelf.js │ │ │ ├── serial.js │ │ │ └── symbols │ │ │ ├── ds213_gabuino_ee961e64.js │ │ │ ├── ds213_os_8be066a1.js │ │ │ └── la104_os_cedee65d.js │ ├── 118_basic │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── examples │ │ │ ├── ROT3D.BAS │ │ │ ├── TOWER.BAS │ │ │ ├── ball.bas │ │ │ ├── music.bas │ │ │ └── tetris.bas │ │ ├── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── arduino │ │ │ ├── Arduino.h │ │ │ ├── LiquidCrystal.h │ │ │ ├── Print.h │ │ │ ├── Printable.h │ │ │ ├── Stream.h │ │ │ └── assert.h │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── font8x8.h │ │ │ ├── main.cpp │ │ │ └── terminal-basic │ │ │ ├── HAL.c │ │ │ ├── HAL.h │ │ │ ├── HALProxyStream.hpp │ │ │ ├── HAL_config.h │ │ │ ├── _tokens_en.h │ │ │ ├── arduino_logger.hpp │ │ │ ├── arduinoext.hpp │ │ │ ├── ascii.hpp │ │ │ ├── avr │ │ │ └── pgmspace.h │ │ │ ├── basic.c │ │ │ ├── basic.h │ │ │ ├── basic.hpp │ │ │ ├── basic_config.h │ │ │ ├── basic_config.hpp │ │ │ ├── basic_dataparser.cpp │ │ │ ├── basic_dataparser.hpp │ │ │ ├── basic_functionblock.cpp │ │ │ ├── basic_functionblock.hpp │ │ │ ├── basic_gfx.cpp │ │ │ ├── basic_gfx.hpp │ │ │ ├── basic_internalfuncs.cpp │ │ │ ├── basic_internalfuncs.hpp │ │ │ ├── basic_interpreter.hpp │ │ │ ├── basic_interpreterw.cpp │ │ │ ├── basic_lexer.c │ │ │ ├── basic_lexer.h │ │ │ ├── basic_lexer.hpp │ │ │ ├── basic_lexer_en.c │ │ │ ├── basic_lexerw.cpp │ │ │ ├── basic_math.cpp │ │ │ ├── basic_math.hpp │ │ │ ├── basic_parser.c │ │ │ ├── basic_parser.h │ │ │ ├── basic_parser.hpp │ │ │ ├── basic_parser_value.cpp │ │ │ ├── basic_parser_value.hpp │ │ │ ├── basic_parserw.cpp │ │ │ ├── basic_program.cpp │ │ │ ├── basic_program.hpp │ │ │ ├── basic_value.c │ │ │ ├── basic_value.h │ │ │ ├── bytearray.hpp │ │ │ ├── helper.hpp │ │ │ ├── math.hpp │ │ │ ├── strings_en.hpp │ │ │ ├── terminal.h │ │ │ ├── tools.c │ │ │ ├── tools.h │ │ │ ├── types.hpp │ │ │ ├── version.h │ │ │ ├── vt100.cpp │ │ │ └── vt100.hpp │ ├── 121_pasteur │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── logs │ │ │ └── pasterizacia.html │ │ └── source │ │ │ ├── app.lds │ │ │ ├── collect.h │ │ │ ├── graph │ │ │ ├── axis.h │ │ │ ├── draw.h │ │ │ ├── graph.h │ │ │ ├── palette.h │ │ │ └── series.h │ │ │ ├── logger.h │ │ │ ├── main.cpp │ │ │ └── sensor │ │ │ ├── OneWire.cpp │ │ │ ├── OneWire.h │ │ │ ├── ds1820.h │ │ │ └── gpio.h │ ├── 133_fpgawave │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── images │ │ │ ├── highimp.bin │ │ │ ├── highimp.v │ │ │ ├── mosiandsck.bin │ │ │ ├── mosiandsck.v │ │ │ ├── notclk.bin │ │ │ └── notclk.v │ │ ├── readme.md │ │ ├── res │ │ │ ├── app.png │ │ │ ├── detail.png │ │ │ ├── quartus.png │ │ │ ├── readme1.html │ │ │ ├── readme2.html │ │ │ ├── testcode.png │ │ │ └── waveviewer.png │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── application.h │ │ │ ├── file │ │ │ │ ├── file.h │ │ │ │ ├── layout.h │ │ │ │ └── shapes.h │ │ │ ├── main.cpp │ │ │ └── screenshot.h │ │ └── web │ │ │ └── fpgaenv.js │ ├── 140_cat │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── res │ │ │ └── alleycat.exe │ │ └── source │ │ │ ├── app.lds │ │ │ ├── cat.cpp │ │ │ ├── cicoctx.h │ │ │ ├── main.cpp │ │ │ └── wasmhost.cpp │ ├── 61_devinfo │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── app_x.lds │ │ ├── build.sh │ │ └── main.cpp │ ├── 69_webusbosc │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds203hd.sh │ │ ├── build_ds213.sh │ │ ├── readme.md │ │ ├── resources │ │ │ ├── imgWebusb.png │ │ │ ├── imgWebusb2.png │ │ │ └── imgWebusbRgb.png │ │ ├── source │ │ │ ├── v1 │ │ │ │ ├── adc.h │ │ │ │ ├── app.lds │ │ │ │ ├── atof.h │ │ │ │ ├── evaluator.h │ │ │ │ ├── main.cpp │ │ │ │ ├── parser.h │ │ │ │ ├── rpc.h │ │ │ │ ├── spi.h │ │ │ │ ├── terminal.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ │ ├── v2 │ │ │ │ ├── adc.h │ │ │ │ ├── app.lds │ │ │ │ ├── atof.h │ │ │ │ ├── evaluator.h │ │ │ │ ├── experiments.h │ │ │ │ ├── main.cpp │ │ │ │ ├── memory.h │ │ │ │ ├── parser.h │ │ │ │ ├── rpc.h │ │ │ │ ├── spi.h │ │ │ │ ├── terminal.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ │ └── v3 │ │ │ │ ├── adc.h │ │ │ │ ├── app.lds │ │ │ │ ├── app_ds203hd.lds │ │ │ │ ├── atof.h │ │ │ │ ├── evaluator.h │ │ │ │ ├── main.cpp │ │ │ │ ├── memory.h │ │ │ │ ├── native │ │ │ │ ├── DS213HwDriver.h │ │ │ │ ├── ds203.h │ │ │ │ └── ds213.h │ │ │ │ ├── rpc.h │ │ │ │ ├── streamer │ │ │ │ ├── core_cm3.h │ │ │ │ ├── ringbuf.h │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── streamer.cpp │ │ │ │ └── streamer.h │ │ │ │ ├── terminal.h │ │ │ │ ├── webusb.h │ │ │ │ └── webusb │ │ │ │ ├── opencm3.c │ │ │ │ ├── opencm3.h │ │ │ │ ├── webusb.c │ │ │ │ └── webusb.h │ │ ├── test.sh │ │ └── web │ │ │ ├── index.html │ │ │ ├── v1 │ │ │ ├── analyser.js │ │ │ ├── bios.js │ │ │ ├── calibration.js │ │ │ ├── canvas.js │ │ │ ├── comm.js │ │ │ ├── controls.js │ │ │ ├── generator.js │ │ │ ├── index.html │ │ │ ├── measure.js │ │ │ ├── oscilloscope.js │ │ │ ├── remotegui.js │ │ │ └── serial.js │ │ │ ├── v2 │ │ │ ├── analyser.js │ │ │ ├── bios.js │ │ │ ├── calibration.js │ │ │ ├── canvas.js │ │ │ ├── comm.js │ │ │ ├── controls.js │ │ │ ├── experiments.js │ │ │ ├── extensions │ │ │ │ ├── rtl433 │ │ │ │ │ ├── decoder.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── rtl433.wasm │ │ │ │ ├── sample │ │ │ │ │ └── index.html │ │ │ │ └── streamer │ │ │ │ │ └── index.html │ │ │ ├── generator.js │ │ │ ├── index.html │ │ │ ├── measure.js │ │ │ ├── oscilloscope.js │ │ │ ├── remotegui.js │ │ │ ├── serial.js │ │ │ └── server.sh │ │ │ └── v3 │ │ │ ├── analyser.js │ │ │ ├── bios.js │ │ │ ├── calibration.js │ │ │ ├── canvas.js │ │ │ ├── comm.js │ │ │ ├── controls.js │ │ │ ├── extensions │ │ │ ├── rtl433 │ │ │ │ ├── decoder.js │ │ │ │ ├── index.html │ │ │ │ └── rtl433.wasm │ │ │ ├── sample │ │ │ │ └── index.html │ │ │ └── streamer │ │ │ │ └── index.html │ │ │ ├── generator.js │ │ │ ├── index.html │ │ │ ├── measure.js │ │ │ ├── oscilloscope.js │ │ │ ├── remotegui.js │ │ │ ├── serial.js │ │ │ └── server.sh │ ├── 72_uartmon │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── res │ │ │ ├── guilog.png │ │ │ ├── guiport.png │ │ │ ├── guisend.png │ │ │ ├── guiview.png │ │ │ ├── log.png │ │ │ └── uart02.log │ │ └── source │ │ │ ├── app.lds │ │ │ ├── appdata.h │ │ │ ├── framework │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── gpio.h │ │ │ ├── logger.h │ │ │ ├── main.cpp │ │ │ ├── page.h │ │ │ ├── pagegpio.h │ │ │ ├── pagelog.h │ │ │ ├── pageport.h │ │ │ ├── pagesend.h │ │ │ └── pageview.h │ ├── 74_invtvisual │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── readme.md │ │ ├── res │ │ │ ├── app.png │ │ │ ├── emulation.jpg │ │ │ ├── module.jpg │ │ │ └── preview.jpg │ │ └── source │ │ │ ├── app.lds │ │ │ ├── graph │ │ │ ├── axis.h │ │ │ ├── draw.h │ │ │ ├── graph.h │ │ │ ├── palette.h │ │ │ └── series.h │ │ │ ├── main.cpp │ │ │ ├── pressure.h │ │ │ ├── vfd │ │ │ ├── debug.h │ │ │ ├── invt.h │ │ │ ├── invtgd10.h │ │ │ ├── packet.h │ │ │ └── serial.h │ │ │ ├── vfdAttributes.h │ │ │ ├── vfdManager.h │ │ │ └── xassert.h │ ├── 80_rftool │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_la104.sh │ │ ├── build_mac.sh │ │ ├── logs │ │ │ ├── 868mhz.cfg │ │ │ ├── conrad.sig │ │ │ ├── default.cfg │ │ │ ├── gate868.sig │ │ │ └── oregon.sig │ │ ├── readme.md │ │ ├── source │ │ │ ├── app.lds │ │ │ ├── appdata.h │ │ │ ├── framer │ │ │ │ └── framer.h │ │ │ ├── framework │ │ │ │ ├── Menu.h │ │ │ │ ├── block.h │ │ │ │ ├── file.h │ │ │ │ ├── json.h │ │ │ │ ├── layout.h │ │ │ │ ├── ringbuf.h │ │ │ │ ├── scroller.h │ │ │ │ └── shapes.h │ │ │ ├── gui │ │ │ │ ├── capture.h │ │ │ │ ├── details.h │ │ │ │ ├── modem.h │ │ │ │ └── signalview.h │ │ │ ├── main.cpp │ │ │ ├── modem │ │ │ │ ├── cc1101.h │ │ │ │ ├── send.h │ │ │ │ └── spi.h │ │ │ ├── protocol │ │ │ │ ├── all.h │ │ │ │ ├── ev1527.h │ │ │ │ ├── gate.h │ │ │ │ ├── hcs200.h │ │ │ │ ├── key360.h │ │ │ │ ├── nexus.h │ │ │ │ ├── oregon.h │ │ │ │ ├── oregon2.h │ │ │ │ ├── protocol.h │ │ │ │ ├── somfy.h │ │ │ │ ├── vw.h │ │ │ │ └── weather.h │ │ │ ├── storage.h │ │ │ ├── streamer │ │ │ │ ├── core_cm3.h │ │ │ │ ├── dma.h │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── streamer.cpp │ │ │ │ └── streamer.h │ │ │ └── testwave.h │ │ └── test │ │ │ ├── build.sh │ │ │ ├── library.h │ │ │ └── test.cpp │ ├── 85_i2ceeprom │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── 24LC256.cpp │ │ │ ├── 24LC256.h │ │ │ ├── app.lds │ │ │ ├── application.h │ │ │ ├── layout.h │ │ │ ├── main.cpp │ │ │ └── spi.h │ ├── 90_epd_image │ │ ├── build.sh │ │ ├── readme.md │ │ ├── res │ │ │ ├── blinka1.bmp │ │ │ ├── blinka2.bmp │ │ │ ├── kon.bmp │ │ │ ├── macka.bmp │ │ │ ├── pes.bmp │ │ │ └── readme.md │ │ └── source │ │ │ ├── app.lds │ │ │ ├── assert.h │ │ │ ├── bitmap │ │ │ └── bitmap.h │ │ │ ├── epd │ │ │ ├── epd.cpp │ │ │ ├── epd.h │ │ │ ├── epdif.cpp │ │ │ └── epdif.h │ │ │ ├── file │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ └── shapes.h │ │ │ ├── main.cpp │ │ │ └── spi │ │ │ └── spi.h │ ├── 94_rfid │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── logs │ │ │ ├── RFID6A05.TXT │ │ │ └── RFID9B60.TXT │ │ └── source │ │ │ ├── app.lds │ │ │ ├── application.h │ │ │ ├── framework │ │ │ ├── block.h │ │ │ ├── file.h │ │ │ ├── layout.h │ │ │ ├── menu.h │ │ │ ├── scroller.h │ │ │ └── shapes.h │ │ │ ├── main.cpp │ │ │ ├── mainmenu.h │ │ │ ├── mfrc522 │ │ │ ├── MFRC522.cpp │ │ │ ├── MFRC522.h │ │ │ ├── MFRC522_spi.cpp │ │ │ ├── deprecated.h │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ └── require_cpp11.h │ │ │ ├── rfid.h │ │ │ └── spi │ │ │ └── spi.h │ ├── test21_midiplay │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds203hd.sh │ │ ├── build_ds213.sh │ │ ├── build_la104.sh │ │ ├── build_mac.sh │ │ ├── midi │ │ │ ├── breath.mid │ │ │ ├── demo.mid │ │ │ ├── gabosong.mid │ │ │ ├── gipsy.mid │ │ │ ├── hocus.mid │ │ │ ├── holiday.mid │ │ │ ├── laisla.mid │ │ │ ├── salsa.mid │ │ │ ├── sting.mid │ │ │ ├── thesign.mid │ │ │ └── yolanda.mid │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── mididevice.h │ │ │ └── shapes.h │ ├── test33_temper │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── graph │ │ │ ├── axis.h │ │ │ ├── draw.h │ │ │ ├── graph.h │ │ │ ├── palette.h │ │ │ └── series.h │ │ ├── logger.h │ │ ├── main.cpp │ │ ├── sensor │ │ │ ├── OneWire.cpp │ │ │ ├── OneWire.h │ │ │ ├── ds1820.h │ │ │ └── gpio.h │ │ └── visualize │ │ │ ├── TEMPER01.HTM │ │ │ └── visualize.js │ ├── test37_i2cscan │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── devices.txt │ │ ├── i2c.h │ │ └── main.cpp │ ├── test49_gpio │ │ ├── CMakeLists.txt │ │ ├── Menu.h │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── digital.h │ │ ├── main.cpp │ │ ├── pwm.h │ │ ├── shapes.h │ │ ├── shapes2.h │ │ └── stm32pwm.h │ └── test63_ws2812 │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── build_ds203.sh │ │ ├── build_ds213.sh │ │ ├── build_la104.sh │ │ ├── build_mac.sh │ │ ├── build_wasm.sh │ │ ├── build_wasm │ │ ├── app.js │ │ ├── app_wasm.js │ │ └── index.html │ │ ├── source │ │ ├── SPI.h │ │ ├── SPI_ds203.cpp │ │ ├── SPI_dummy.cpp │ │ ├── SPI_la104.cpp │ │ ├── WS2812B.cpp │ │ ├── WS2812B.h │ │ ├── app.lds │ │ ├── colorspace.h │ │ └── main.cpp │ │ └── tools │ │ ├── SPI_temp.cpp │ │ └── randomize.js ├── apps_shell │ ├── test127_sdman │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_fs.sh │ │ ├── build_mac.sh │ │ └── source │ │ │ ├── Manager.cpp │ │ │ ├── Manager.h │ │ │ ├── fat.h │ │ │ ├── main.cpp │ │ │ ├── platform.h │ │ │ ├── sd.h │ │ │ └── spi.h │ ├── test28_shell │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── build_wasm.sh │ │ ├── cp.sh │ │ └── source │ │ │ ├── bitmap.h │ │ │ ├── font.h │ │ │ ├── json.h │ │ │ ├── main.cpp │ │ │ ├── menu.h │ │ │ └── shapes.h │ └── test29_fileman │ │ ├── CMakeLists.txt │ │ ├── app.lds │ │ ├── app_ds203.lds │ │ ├── build.sh │ │ ├── build_mac.sh │ │ ├── build_wasm.sh │ │ ├── cp.sh │ │ └── source │ │ ├── Manager.cpp │ │ ├── Manager.h │ │ └── main.cpp ├── apps_usb │ ├── 104_avrisp │ │ ├── build.sh │ │ ├── build_la104.sh │ │ ├── resources │ │ │ ├── atmini45.txt │ │ │ ├── flashing_log.txt │ │ │ ├── log.txt │ │ │ └── serialdesc.txt │ │ └── source │ │ │ ├── app.h │ │ │ ├── app.lds │ │ │ ├── avrisp.h │ │ │ ├── main.cpp │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── ringbuf.h │ │ │ └── webusb │ │ │ ├── opencm3.c │ │ │ ├── opencm3.h │ │ │ ├── webusb.c │ │ │ └── webusb.h │ ├── 116_webcdc │ │ ├── build.sh │ │ └── source │ │ │ ├── app.lds │ │ │ ├── main.cpp │ │ │ ├── ringbuf.h │ │ │ └── webusb │ │ │ ├── opencm3.c │ │ │ ├── opencm3.h │ │ │ ├── webusb.c │ │ │ └── webusb.h │ ├── test24_usbcdc │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── if.c │ │ ├── main.cpp │ │ ├── usb │ │ │ ├── atomic.h │ │ │ ├── cdcusb_app.c │ │ │ ├── cdcusb_app.h │ │ │ ├── cdcusb_conf.h │ │ │ ├── cdcusb_desc.c │ │ │ ├── cdcusb_desc.h │ │ │ ├── cdcusb_endp.c │ │ │ ├── cdcusb_prop.c │ │ │ ├── cdcusb_prop.h │ │ │ └── cdcusb_pwr.c │ │ └── usbhelpers.c │ ├── test25_hid │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── if.c │ │ ├── main.cpp │ │ ├── usb │ │ │ ├── common.h │ │ │ ├── hid_app.c │ │ │ ├── hid_app.h │ │ │ ├── hid_conf.h │ │ │ ├── hid_desc.c │ │ │ ├── hid_desc.h │ │ │ ├── hid_endp.c │ │ │ ├── hid_prop.c │ │ │ ├── hid_prop.h │ │ │ └── hid_pwr.c │ │ └── usbhelpers.c │ ├── test26_midi │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── if.c │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── ringbuf.h │ │ ├── usb │ │ │ ├── midi_app.c │ │ │ ├── midi_app.h │ │ │ ├── midi_conf.h │ │ │ ├── midi_desc.c │ │ │ ├── midi_desc.h │ │ │ ├── midi_endp.c │ │ │ ├── midi_prop.c │ │ │ ├── midi_prop.h │ │ │ └── midi_pwr.c │ │ └── usbhelpers.c │ ├── test32_sump │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── if.c │ │ ├── main.cpp │ │ ├── readme.md │ │ ├── sump │ │ │ ├── delay.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── sump.c │ │ │ └── sump.h │ │ ├── usb │ │ │ ├── atomic.h │ │ │ ├── sump_app.c │ │ │ ├── sump_app.h │ │ │ ├── sump_conf.h │ │ │ ├── sump_desc.c │ │ │ ├── sump_desc.h │ │ │ ├── sump_endp.c │ │ │ ├── sump_prop.c │ │ │ ├── sump_prop.h │ │ │ └── sump_pwr.c │ │ └── usbhelpers.c │ ├── test64_remote │ │ ├── app.lds │ │ ├── build.sh │ │ ├── cp.sh │ │ ├── desktop │ │ │ └── remote.js │ │ ├── if.c │ │ ├── loop.cpp │ │ ├── main.cpp │ │ ├── memlayout.txt │ │ ├── terminal.cpp │ │ ├── terminal.h │ │ ├── usb │ │ │ ├── atomic.h │ │ │ ├── cdcusb_app.c │ │ │ ├── cdcusb_app.h │ │ │ ├── cdcusb_conf.h │ │ │ ├── cdcusb_desc.c │ │ │ ├── cdcusb_desc.h │ │ │ ├── cdcusb_endp.c │ │ │ ├── cdcusb_prop.c │ │ │ ├── cdcusb_prop.h │ │ │ └── cdcusb_pwr.c │ │ └── usbhelpers.c │ └── test67_webusb │ │ ├── 1_build_.sh │ │ ├── 2_build_full_clean.sh │ │ ├── 3_build_single.sh │ │ ├── 4_build_single_full.sh │ │ ├── 5_build_single2.sh │ │ ├── 6_build_win_minimal.sh │ │ ├── 7_build_win_single.sh │ │ ├── build.sh │ │ ├── joiner │ │ ├── build_opencm3.sh │ │ ├── build_webusb.sh │ │ ├── join_opencm3.sh │ │ ├── join_webusb_full.sh │ │ ├── join_webusb_minimal.sh │ │ ├── opencm3.c │ │ ├── opencm3.h │ │ ├── webusb.c │ │ └── webusb.h │ │ ├── joiner_win │ │ ├── build_webusb.sh │ │ ├── join_webusb_minimal.sh │ │ ├── opencm3.h │ │ ├── webstrings.h │ │ ├── webusb.c │ │ └── webusb.h │ │ ├── lib │ │ └── libopencm3 │ │ │ ├── include │ │ │ └── libopencm3 │ │ │ │ ├── cm3 │ │ │ │ ├── assert.h │ │ │ │ ├── common.h │ │ │ │ └── memorymap.h │ │ │ │ ├── stm32 │ │ │ │ ├── common │ │ │ │ │ ├── rcc_common_all.h │ │ │ │ │ ├── st_usbfs_common.h │ │ │ │ │ └── st_usbfs_v1.h │ │ │ │ ├── desig.h │ │ │ │ ├── f1 │ │ │ │ │ ├── memorymap.h │ │ │ │ │ ├── rcc.h │ │ │ │ │ └── st_usbfs.h │ │ │ │ ├── memorymap.h │ │ │ │ ├── rcc.h │ │ │ │ ├── st_usbfs.h │ │ │ │ └── tools.h │ │ │ │ └── usb │ │ │ │ ├── cdc.h │ │ │ │ ├── usbd.h │ │ │ │ └── usbstd.h │ │ │ └── lib │ │ │ ├── cm3 │ │ │ └── assert.c │ │ │ ├── stm32 │ │ │ ├── common │ │ │ │ ├── rcc_common_all.c │ │ │ │ ├── st_usbfs_core.c │ │ │ │ └── st_usbfs_core.h │ │ │ ├── desig.c │ │ │ ├── f1 │ │ │ │ └── rcc.c │ │ │ ├── st_usbfs_v1.c │ │ │ └── st_usbfs_v2.c │ │ │ └── usb │ │ │ ├── usb.c │ │ │ ├── usb_control.c │ │ │ ├── usb_private.h │ │ │ └── usb_standard.c │ │ ├── source │ │ ├── app.lds │ │ ├── cdc.c │ │ ├── cdc.h │ │ ├── logger.h │ │ ├── main.cpp │ │ ├── target.h │ │ ├── usb21_standard.c │ │ ├── usb21_standard.h │ │ ├── usb_conf.c │ │ ├── usb_conf.h │ │ ├── webusb.c │ │ ├── webusb.h │ │ ├── webusb_defs.h │ │ ├── winusb.c │ │ ├── winusb.h │ │ └── winusb_defs.h │ │ ├── source_full_clean │ │ ├── app.lds │ │ ├── cdc.c │ │ ├── cdc.h │ │ ├── main.cpp │ │ ├── usb21_standard.c │ │ ├── usb21_standard.h │ │ ├── usb_conf.c │ │ ├── usb_conf.h │ │ ├── webusb.c │ │ ├── webusb.h │ │ ├── webusb_defs.h │ │ ├── winusb.c │ │ ├── winusb.h │ │ └── winusb_defs.h │ │ ├── source_minimal │ │ ├── app.lds │ │ ├── cdc.c │ │ ├── cdc.h │ │ ├── main.cpp │ │ ├── usb_conf.c │ │ ├── usb_conf.h │ │ ├── webusb.c │ │ ├── webusb.h │ │ └── webusb_defs.h │ │ ├── source_single │ │ ├── main.cpp │ │ ├── tools │ │ │ ├── join.sh │ │ │ ├── join2.sh │ │ │ ├── webusb.c │ │ │ ├── webusb.h │ │ │ ├── webusb_code.c │ │ │ ├── webusb_headers.h │ │ │ └── webusb_unexpanded.h │ │ ├── webusb.c │ │ └── webusb.h │ │ ├── source_single2 │ │ ├── main.cpp │ │ ├── opencm3.c │ │ ├── opencm3.h │ │ ├── webusb.c │ │ └── webusb.h │ │ ├── source_single_full │ │ ├── app.lds │ │ ├── main.cpp │ │ ├── opencm3.c │ │ ├── opencm3.h │ │ ├── webusb.c │ │ ├── webusb.h │ │ ├── webusb_old.c │ │ └── webusb_old.h │ │ ├── source_win_minimal │ │ ├── app.lds │ │ ├── cdc.c │ │ ├── cdc.h │ │ ├── main.cpp │ │ ├── usb21_standard.c │ │ ├── usb21_standard.h │ │ ├── usb_conf.c │ │ ├── usb_conf.h │ │ ├── usb_strings.h │ │ ├── webusb.c │ │ ├── webusb.h │ │ ├── webusb_defs.h │ │ ├── winusb.c │ │ ├── winusb.h │ │ └── winusb_defs.h │ │ ├── source_win_single │ │ ├── main.cpp │ │ ├── opencm3.c │ │ ├── opencm3.h │ │ ├── webstrings.h │ │ ├── webusb.c │ │ └── webusb.h │ │ └── web │ │ ├── WebUSB-LED.js │ │ ├── index.html │ │ └── serial.js ├── fpga_la104 │ ├── 00_mini │ │ ├── allinput.v │ │ ├── build │ │ │ ├── allinput_quartus.html │ │ │ ├── allinput_target.html │ │ │ ├── allinput_verilated.html │ │ │ ├── cnt4bit_quartus.html │ │ │ ├── cnt4bit_target.html │ │ │ ├── cnt4bit_verilated.html │ │ │ ├── cnt4bitonsck_msb2_quartus.html │ │ │ ├── cnt4bitonsck_msb2_target.html │ │ │ ├── cnt4bitonsck_msb2_verilated.html │ │ │ ├── cnt4bitonsck_msb3_quartus.html │ │ │ ├── cnt4bitonsck_msb3_target.html │ │ │ ├── cnt4bitonsck_msb3_verilated.html │ │ │ ├── cnt4bitonsck_msb_quartus.html │ │ │ ├── cnt4bitonsck_msb_target.html │ │ │ ├── cnt4bitonsck_msb_verilated.html │ │ │ ├── cnt4bitonsck_quartus.html │ │ │ ├── cnt4bitonsck_target.html │ │ │ ├── cnt4bitonsck_verilated.html │ │ │ ├── cnt7bit_b_quartus.html │ │ │ ├── cnt7bit_b_target.html │ │ │ ├── cnt7bit_b_verilated.html │ │ │ ├── cnt7bit_quartus.html │ │ │ ├── cnt7bit_target.html │ │ │ ├── cnt7bit_verilated.html │ │ │ ├── highimp_quartus.html │ │ │ ├── highimp_target.html │ │ │ ├── highimp_verilated.html │ │ │ ├── mosiandsck_quartus.html │ │ │ ├── mosiandsck_target.html │ │ │ ├── mosiandsck_verilated.html │ │ │ ├── notclk_quartus.html │ │ │ ├── notclk_target.html │ │ │ ├── notclk_verilated.html │ │ │ ├── sckonclk_quartus.html │ │ │ ├── sckonclk_target.html │ │ │ ├── sckonclk_verilated.html │ │ │ ├── toggle2_quartus.html │ │ │ ├── toggle2_target.html │ │ │ ├── toggle2_verilated.html │ │ │ ├── toggle_quartus.html │ │ │ ├── toggle_target.html │ │ │ └── toggle_verilated.html │ │ ├── build_all.sh │ │ ├── build_fpga.sh │ │ ├── build_verilator.sh │ │ ├── cnt4bit.v │ │ ├── cnt4bitonsck.v │ │ ├── cnt4bitonsck_msb.v │ │ ├── cnt4bitonsck_msb2.v │ │ ├── cnt4bitonsck_msb3.v │ │ ├── cnt7bit.v │ │ ├── highimp.v │ │ ├── mosiandsck.v │ │ ├── notclk.v │ │ ├── run_target.sh │ │ ├── sckonclk.v │ │ ├── test.cpp │ │ ├── toggle.v │ │ └── toggle2.v │ ├── 01_blink │ │ ├── build.sh │ │ ├── source │ │ │ ├── app.asf │ │ │ └── app.v │ │ ├── verify │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 02_counter │ │ ├── build.sh │ │ ├── source │ │ │ ├── app.asf │ │ │ └── app.v │ │ ├── verify │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 03_fibonacci │ │ ├── build.sh │ │ ├── source │ │ │ ├── app.asf │ │ │ ├── app.v │ │ │ └── fibonacci.v │ │ ├── verify │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 04_ram │ │ ├── build.sh │ │ ├── source │ │ │ ├── app.asf │ │ │ ├── app.v │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 05_bram │ │ ├── build.bat │ │ ├── build.sh │ │ ├── res │ │ │ ├── data512.txt │ │ │ └── encode.js │ │ └── source │ │ │ ├── app.asf │ │ │ ├── app.v │ │ │ ├── gabobram.ip │ │ │ ├── memory.v │ │ │ └── verify.cpp │ ├── 06_fifo │ │ ├── source │ │ │ ├── app.asf │ │ │ ├── app.v │ │ │ ├── fifo.v │ │ │ ├── identify.txt │ │ │ ├── spi.v │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 07_spi2 │ │ ├── build_fpga.sh │ │ ├── build_verify.sh │ │ ├── log.html │ │ ├── readme.md │ │ ├── source │ │ │ ├── app.asf │ │ │ ├── app.v │ │ │ ├── spi_slave.v │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── 08_fifo2 │ │ ├── build_fpga.sh │ │ ├── build_verify.sh │ │ ├── log_quartus.html │ │ ├── log_verilator.html │ │ ├── source │ │ │ ├── app.asf │ │ │ ├── app.sdc │ │ │ ├── app.v │ │ │ └── verify.cpp │ │ └── verilator.sh │ ├── common │ │ ├── app.asf │ │ ├── build_fpga.bat │ │ ├── build_fpga.sh │ │ ├── input.vc │ │ ├── logger.h │ │ ├── override.h │ │ ├── sim_main.cpp │ │ ├── testbench.h │ │ ├── testbench2.h │ │ └── verify.lds │ └── readme.md ├── os_host │ ├── app.ld │ ├── app_ds203.ld │ ├── build.sh │ ├── build_ds203.sh │ ├── build_ds203hd.sh │ ├── build_ds213.sh │ ├── build_la104.sh │ ├── build_la104_nousb.sh │ ├── cp_ds203.sh │ ├── cp_ds213.sh │ ├── cp_la104.sh │ ├── library │ │ ├── CDC │ │ │ ├── cdcusb_app.c │ │ │ ├── cdcusb_app.h │ │ │ ├── cdcusb_conf.h │ │ │ ├── cdcusb_desc.c │ │ │ ├── cdcusb_desc.h │ │ │ ├── cdcusb_endp.c │ │ │ ├── cdcusb_prop.c │ │ │ └── cdcusb_prop.h │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── STM32F10x │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ └── Source │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ ├── startup_stm32f10x_xl.s │ │ │ │ │ └── system_stm32f10x.c │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ ├── COMMON │ │ │ ├── commonusb_app.c │ │ │ ├── commonusb_app.h │ │ │ ├── commonusb_conf.h │ │ │ ├── commonusb_istr.c │ │ │ ├── commonusb_istr.h │ │ │ ├── commonusb_pwr.c │ │ │ └── commonusb_pwr.h │ │ ├── MSD │ │ │ ├── msdusb_app.c │ │ │ ├── msdusb_app.h │ │ │ ├── msdusb_bot.c │ │ │ ├── msdusb_bot.h │ │ │ ├── msdusb_conf.h │ │ │ ├── msdusb_desc.c │ │ │ ├── msdusb_desc.h │ │ │ ├── msdusb_endp.c │ │ │ ├── msdusb_prop.c │ │ │ ├── msdusb_prop.h │ │ │ ├── msdusb_pwr.c │ │ │ ├── msdusb_scsi.c │ │ │ └── msdusb_scsi.h │ │ ├── STM32F10x_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f10x_adc.h │ │ │ │ ├── stm32f10x_bkp.h │ │ │ │ ├── stm32f10x_can.h │ │ │ │ ├── stm32f10x_cec.h │ │ │ │ ├── stm32f10x_crc.h │ │ │ │ ├── stm32f10x_dac.h │ │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ │ ├── stm32f10x_dma.h │ │ │ │ ├── stm32f10x_exti.h │ │ │ │ ├── stm32f10x_flash.h │ │ │ │ ├── stm32f10x_fsmc.h │ │ │ │ ├── stm32f10x_gpio.h │ │ │ │ ├── stm32f10x_i2c.h │ │ │ │ ├── stm32f10x_iwdg.h │ │ │ │ ├── stm32f10x_lib.h │ │ │ │ ├── stm32f10x_pwr.h │ │ │ │ ├── stm32f10x_rcc.h │ │ │ │ ├── stm32f10x_rtc.h │ │ │ │ ├── stm32f10x_sdio.h │ │ │ │ ├── stm32f10x_spi.h │ │ │ │ ├── stm32f10x_tim.h │ │ │ │ ├── stm32f10x_usart.h │ │ │ │ └── stm32f10x_wwdg.h │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f10x_adc.c │ │ │ │ ├── stm32f10x_bkp.c │ │ │ │ ├── stm32f10x_can.c │ │ │ │ ├── stm32f10x_cec.c │ │ │ │ ├── stm32f10x_crc.c │ │ │ │ ├── stm32f10x_dac.c │ │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ │ ├── stm32f10x_dma.c │ │ │ │ ├── stm32f10x_exti.c │ │ │ │ ├── stm32f10x_flash.c │ │ │ │ ├── stm32f10x_fsmc.c │ │ │ │ ├── stm32f10x_gpio.c │ │ │ │ ├── stm32f10x_i2c.c │ │ │ │ ├── stm32f10x_iwdg.c │ │ │ │ ├── stm32f10x_pwr.c │ │ │ │ ├── stm32f10x_rcc.c │ │ │ │ ├── stm32f10x_rtc.c │ │ │ │ ├── stm32f10x_sdio.c │ │ │ │ ├── stm32f10x_spi.c │ │ │ │ ├── stm32f10x_tim.c │ │ │ │ ├── stm32f10x_usart.c │ │ │ │ └── stm32f10x_wwdg.c │ │ ├── STM32_USB-FS-Device_Driver │ │ │ ├── inc │ │ │ │ ├── usb_core.h │ │ │ │ ├── usb_def.h │ │ │ │ ├── usb_init.h │ │ │ │ ├── usb_int.h │ │ │ │ ├── usb_lib.h │ │ │ │ ├── usb_mem.h │ │ │ │ ├── usb_mem1.h │ │ │ │ ├── usb_regs.h │ │ │ │ ├── usb_sil.h │ │ │ │ └── usb_type.h │ │ │ └── src │ │ │ │ ├── usb_core.c │ │ │ │ ├── usb_init.c │ │ │ │ ├── usb_int.c │ │ │ │ ├── usb_mem.c │ │ │ │ ├── usb_regs.c │ │ │ │ └── usb_sil.c │ │ ├── elf │ │ │ └── elf.h │ │ ├── fatfs │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ └── integer.h │ │ ├── flash │ │ │ ├── all.h │ │ │ ├── flash.c │ │ │ ├── flash.h │ │ │ ├── flashconfig.h │ │ │ ├── helper.c │ │ │ ├── helper.h │ │ │ ├── ihex.c │ │ │ └── ihex.h │ │ └── spf │ │ │ ├── spf.c │ │ │ └── spf.h │ └── source │ │ ├── bios │ │ ├── Bios.h │ │ ├── adc.cpp │ │ ├── clean │ │ │ ├── adc.cpp │ │ │ ├── dac.cpp │ │ │ └── imports.c │ │ ├── dac.cpp │ │ ├── dbg.cpp │ │ ├── ds203 │ │ │ ├── BIOS.h │ │ │ ├── BIOS.s │ │ │ ├── adc.cpp │ │ │ ├── dac.cpp │ │ │ └── imports.c │ │ ├── ds213 │ │ │ ├── DS213HwDriver.h │ │ │ ├── adc.cpp │ │ │ ├── dac.cpp │ │ │ ├── fpga.h │ │ │ ├── imports.c │ │ │ └── platform.h │ │ ├── fat.cpp │ │ ├── fat.h │ │ ├── font.h │ │ ├── gpio.cpp │ │ ├── imports.c │ │ ├── imports.h │ │ ├── key.cpp │ │ ├── la104 │ │ │ ├── Ext_Flash.c │ │ │ ├── Ext_Flash.h │ │ │ ├── gpio.cpp │ │ │ ├── imports.c │ │ │ └── lcd.h │ │ ├── lcd.cpp │ │ ├── memory.cpp │ │ ├── os.cpp │ │ ├── private.cpp │ │ ├── sys.cpp │ │ └── usb.cpp │ │ ├── crash.h │ │ ├── crc.h │ │ ├── framework │ │ ├── BufferedIo.h │ │ ├── Classes.h │ │ ├── Console.h │ │ ├── Rgb.h │ │ ├── Ringbuf.h │ │ ├── Serialize.cpp │ │ ├── Serialize.h │ │ ├── SimpleApp.h │ │ ├── Types.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── Wnd.cpp │ │ └── Wnd.h │ │ ├── gui │ │ ├── Controls.cpp │ │ ├── Controls.h │ │ ├── Design.h │ │ ├── Gui.cpp │ │ ├── Gui.h │ │ ├── MessageBox.h │ │ ├── Shapes.cpp │ │ └── Shapes.h │ │ ├── interrupt.c │ │ ├── main.cpp │ │ ├── main │ │ ├── Execute.cpp │ │ ├── Execute.h │ │ └── Shared.h │ │ ├── startup.c │ │ ├── stm32f10x_conf.h │ │ ├── tokenizer.h │ │ └── usb │ │ ├── Disk.c │ │ ├── Disk.h │ │ └── UsbTypes.h ├── os_library │ ├── build.sh │ ├── exports.js │ ├── include │ │ └── library.h │ └── source │ │ └── library.cpp ├── os_platform │ ├── common │ │ ├── include │ │ │ └── library.h │ │ └── source │ │ │ ├── bios │ │ │ ├── Bios.h │ │ │ ├── dbg.cpp │ │ │ ├── fat.cpp │ │ │ ├── font.h │ │ │ ├── gpio.cpp │ │ │ ├── hal.h │ │ │ ├── key.cpp │ │ │ ├── lcd.cpp │ │ │ ├── memory.cpp │ │ │ └── sys.cpp │ │ │ └── framework │ │ │ └── framework.cpp │ ├── mac_sdl │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── data │ │ │ ├── la104.fat │ │ │ └── mnt.sh │ │ └── source │ │ │ ├── sdlhal.h │ │ │ └── sdlmain.cpp │ ├── wasm │ │ ├── html │ │ │ ├── index.html │ │ │ ├── package.js │ │ │ └── server.sh │ │ ├── htmllite │ │ │ ├── app.js │ │ │ ├── fat.js │ │ │ ├── index.html │ │ │ └── package.js │ │ └── source │ │ │ ├── wasmhal.h │ │ │ └── wasmmain.cpp │ └── win32_sdl │ │ ├── readme.md │ │ └── source │ │ ├── math.cpp │ │ ├── math.h │ │ ├── sdlhal.h │ │ └── sdlmain.cpp └── scripts │ ├── build.sh │ ├── build_applist.sh │ ├── build_apps.sh │ ├── build_check.sh │ ├── build_full.sh │ ├── build_m1.sh │ ├── build_minimal.sh │ ├── build_os.sh │ ├── build_wasm.sh │ ├── generate_applist.js │ ├── generate_memlist.sh │ ├── imagefile_copy_la104.sh │ ├── imagefile_make_la104.sh │ ├── imagefile_test_la104.sh │ ├── release_image_ds203.sh │ ├── release_image_ds213.sh │ └── release_image_la104.sh └── tools ├── crc32 ├── build.sh ├── force.js └── forcecrc32.c ├── dfuload ├── build.sh ├── dfuload.cpp ├── fat12.h ├── fat12tool.cpp ├── format.sh ├── readme.txt └── snapshot.sh ├── elfdump ├── BufferedIo.h ├── Serialize.cpp ├── Serialize.h ├── Types.h ├── build.sh ├── elf.h ├── elfdump └── main.cpp ├── elfstrip ├── CMakeLists.txt ├── build.sh ├── elfstrip.exe └── main.cpp ├── fpga ├── convert_hex_bin.sh ├── ds203_8mb_hwV272-V261FPGA │ ├── CFG_FPGA.ADR │ └── V261FPGA.BIN ├── ds213_full │ └── gabo_full_flash.bin ├── ds213_v18 │ └── STMU_213_018_fpga.bin ├── ds213_v20 │ ├── ds213v20.elf │ ├── ds213v20_fpga.bin │ └── ds213v20_full_flash.bin ├── extract.sh ├── fpgahex.sh ├── ocd_full_flash_readout.sh └── ocd_full_flash_write.sh ├── genelf ├── build.sh ├── elf.h ├── main.cpp └── readme.md ├── midiconv ├── build.sh └── midiconv.cpp ├── openocd ├── launch.json └── readme.md ├── prerender ├── build.sh ├── main.cpp ├── reader.h ├── save.h └── terminal.cpp ├── recovery ├── RECOVERY281282.zip ├── hwV272-V261FPGA.zip └── readme.md ├── rtl433 ├── build │ └── app_wasm.js ├── buildwasm.sh ├── index.html ├── readme.md ├── rtl433.xcodeproj │ └── project.pbxproj └── rtltest │ ├── alloc.c │ ├── alloc.h │ ├── bitbuffer.c │ ├── bitbuffer.h │ ├── data.c │ ├── data.h │ ├── decoder.h │ ├── decoder_util.c │ ├── decoder_util.h │ ├── devices │ ├── acurite.c │ ├── akhan_100F14.c │ ├── alecto.c │ ├── ambient_weather.c │ ├── ambientweather_tx8300.c │ ├── ambientweather_wh31e.c │ ├── blyss.c │ ├── brennenstuhl_rcs_2044.c │ ├── bresser_3ch.c │ ├── bresser_5in1.c │ ├── bt_rain.c │ ├── calibeur.c │ ├── cardin.c │ ├── chuango.c │ ├── current_cost.c │ ├── danfoss.c │ ├── digitech_xc0324.c │ ├── dish_remote_6_3.c │ ├── dsc.c │ ├── efergy_e2_classic.c │ ├── efergy_optical.c │ ├── elro_db286a.c │ ├── elv.c │ ├── emontx.c │ ├── esa.c │ ├── esperanza_ews.c │ ├── fineoffset.c │ ├── fineoffset_wh1050.c │ ├── fineoffset_wh1080.c │ ├── flex.c │ ├── fordremote.c │ ├── ft004b.c │ ├── ge_coloreffects.c │ ├── generic_motion.c │ ├── generic_remote.c │ ├── generic_temperature_sensor.c │ ├── gt_wt_02.c │ ├── hideki.c │ ├── hondaremote.c │ ├── honeywell.c │ ├── honeywell_wdb.c │ ├── ht680.c │ ├── ibis_beacon.c │ ├── infactory.c │ ├── inovalley-kw9015b.c │ ├── interlogix.c │ ├── intertechno.c │ ├── kedsum.c │ ├── kerui.c │ ├── lacrosse.c │ ├── lacrosse_TX141TH_Bv2.c │ ├── lacrosse_tx35.c │ ├── lacrossews.c │ ├── lightwave_rf.c │ ├── m_bus.c │ ├── maverick_et73.c │ ├── maverick_et73x.c │ ├── mebus.c │ ├── new_template.c │ ├── newkaku.c │ ├── nexa.c │ ├── nexus.c │ ├── oil_standard.c │ ├── oil_watchman.c │ ├── opus_xt300.c │ ├── oregon_scientific.c │ ├── oregon_scientific_sl109h.c │ ├── oregon_scientific_v1.c │ ├── philips.c │ ├── prologue.c │ ├── proove.c │ ├── quhwa.c │ ├── radiohead_ask.c │ ├── rftech.c │ ├── rubicson.c │ ├── s3318p.c │ ├── schraeder.c │ ├── silvercrest.c │ ├── simplisafe.c │ ├── smoke_gs558.c │ ├── solight_te44.c │ ├── springfield.c │ ├── steelmate.c │ ├── tfa_pool_thermometer.c │ ├── tfa_twin_plus_30.3049.c │ ├── thermopro_tp11.c │ ├── thermopro_tp12.c │ ├── tpms_citroen.c │ ├── tpms_ford.c │ ├── tpms_pmv107j.c │ ├── tpms_renault.c │ ├── tpms_toyota.c │ ├── ttx201.c │ ├── vaillant_vrt340f.c │ ├── waveman.c │ ├── wg_pb12v1.c │ ├── wssensor.c │ ├── wt0124.c │ ├── wt450.c │ ├── x10_rf.c │ └── x10_sec.c │ ├── main.cpp │ ├── pulse_demod.c │ ├── pulse_demod.h │ ├── pulse_detect.h │ ├── r_device.h │ ├── rtl_433_devices.h │ ├── util.c │ └── util.h ├── shellicons ├── antenna.png ├── appelf.png ├── application.png ├── arduino.png ├── atom.png ├── basic.png ├── binary.png ├── bineye.png ├── build.sh ├── build_c.sh ├── build_d.sh ├── build_e.sh ├── build_f.sh ├── camera.png ├── charmap.png ├── chip.png ├── circuitpython.png ├── clean.sh ├── co2.png ├── dcf77.png ├── dht.png ├── eeprom.png ├── eink.png ├── fileelf.png ├── folder.png ├── fpga.png ├── fractal.png ├── gabuino.png ├── games.png ├── genie.png ├── hammer.png ├── hunter.png ├── i2c.png ├── imgAnalyser.png ├── imgSeq.png ├── info.png ├── magnifier.png ├── manager.png ├── measure.png ├── midi.png ├── motor.png ├── mouse.png ├── music.png ├── oscillo.png ├── pasteur.png ├── picture.png ├── ps2keyb.png ├── pulseview.png ├── radioactive.png ├── sdcard.png ├── serial.png ├── servo.png ├── settings.png ├── signal.png ├── spectrum.png ├── temper.png ├── usb.png ├── usb2.png └── ws2812.png └── stm32flash ├── ds203_2mb_full ├── dso_quad_bootloader_flash.bin └── dso_quad_bootloader_flash_modified.bin ├── flash.sh ├── readme.txt └── stm32flash /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/LICENSE -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/readme.md -------------------------------------------------------------------------------- /resources/DS203 V2.7_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/DS203 V2.7_SCH.pdf -------------------------------------------------------------------------------- /resources/DS213 V2.0_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/DS213 V2.0_SCH.pdf -------------------------------------------------------------------------------- /resources/ILI9341.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/ILI9341.pdf -------------------------------------------------------------------------------- /resources/LA104 V1.5B_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/LA104 V1.5B_SCH.pdf -------------------------------------------------------------------------------- /resources/appicons/analyser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/analyser.png -------------------------------------------------------------------------------- /resources/appicons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/app.png -------------------------------------------------------------------------------- /resources/appicons/avrflash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/avrflash.png -------------------------------------------------------------------------------- /resources/appicons/avrisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/avrisp.png -------------------------------------------------------------------------------- /resources/appicons/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/basic.png -------------------------------------------------------------------------------- /resources/appicons/cdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/cdc.png -------------------------------------------------------------------------------- /resources/appicons/charmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/charmap.png -------------------------------------------------------------------------------- /resources/appicons/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/chip.png -------------------------------------------------------------------------------- /resources/appicons/cpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/cpython.png -------------------------------------------------------------------------------- /resources/appicons/dcf77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/dcf77.png -------------------------------------------------------------------------------- /resources/appicons/devinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/devinfo.png -------------------------------------------------------------------------------- /resources/appicons/dstemper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/dstemper.png -------------------------------------------------------------------------------- /resources/appicons/eeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/eeview.png -------------------------------------------------------------------------------- /resources/appicons/eink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/eink.png -------------------------------------------------------------------------------- /resources/appicons/fileman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/fileman.png -------------------------------------------------------------------------------- /resources/appicons/fpga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/fpga.png -------------------------------------------------------------------------------- /resources/appicons/gabuino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/gabuino.png -------------------------------------------------------------------------------- /resources/appicons/gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/gpio.png -------------------------------------------------------------------------------- /resources/appicons/hid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/hid.png -------------------------------------------------------------------------------- /resources/appicons/hunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/hunter.png -------------------------------------------------------------------------------- /resources/appicons/i2cscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/i2cscan.png -------------------------------------------------------------------------------- /resources/appicons/imgview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/imgview.png -------------------------------------------------------------------------------- /resources/appicons/mhz19b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/mhz19b.png -------------------------------------------------------------------------------- /resources/appicons/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/midi.png -------------------------------------------------------------------------------- /resources/appicons/midiplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/midiplay.png -------------------------------------------------------------------------------- /resources/appicons/oledssd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/oledssd.png -------------------------------------------------------------------------------- /resources/appicons/pasteur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/pasteur.png -------------------------------------------------------------------------------- /resources/appicons/ps2keyb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/ps2keyb.png -------------------------------------------------------------------------------- /resources/appicons/radsens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/radsens.png -------------------------------------------------------------------------------- /resources/appicons/rftool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/rftool.png -------------------------------------------------------------------------------- /resources/appicons/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/sequence.png -------------------------------------------------------------------------------- /resources/appicons/servo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/servo.png -------------------------------------------------------------------------------- /resources/appicons/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/spectrum.png -------------------------------------------------------------------------------- /resources/appicons/uartmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/uartmon.png -------------------------------------------------------------------------------- /resources/appicons/vfd_invt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/vfd_invt.png -------------------------------------------------------------------------------- /resources/appicons/ws2812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/ws2812.png -------------------------------------------------------------------------------- /resources/appicons/wusbosc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/appicons/wusbosc.png -------------------------------------------------------------------------------- /resources/experiments/blink/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/app.lds -------------------------------------------------------------------------------- /resources/experiments/blink/buildmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/buildmac.sh -------------------------------------------------------------------------------- /resources/experiments/blink/buildwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/buildwin.bat -------------------------------------------------------------------------------- /resources/experiments/blink/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/cp.sh -------------------------------------------------------------------------------- /resources/experiments/blink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/main.c -------------------------------------------------------------------------------- /resources/experiments/blink/pinio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/pinio.h -------------------------------------------------------------------------------- /resources/experiments/blink/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/blink/startup.c -------------------------------------------------------------------------------- /resources/experiments/dynamic_simple/ida.bat: -------------------------------------------------------------------------------- 1 | start C:\Programs\Devel\IDA\idag.exe bin\mains.elf -------------------------------------------------------------------------------- /resources/experiments/triangle_cpp/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/triangle_cpp/bios.h -------------------------------------------------------------------------------- /resources/experiments/triangle_cpp/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/triangle_cpp/bios.s -------------------------------------------------------------------------------- /resources/experiments/worm/Bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Bios.h -------------------------------------------------------------------------------- /resources/experiments/worm/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Classes.h -------------------------------------------------------------------------------- /resources/experiments/worm/Snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Snake.h -------------------------------------------------------------------------------- /resources/experiments/worm/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Types.h -------------------------------------------------------------------------------- /resources/experiments/worm/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Utils.h -------------------------------------------------------------------------------- /resources/experiments/worm/Wnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Wnd.cpp -------------------------------------------------------------------------------- /resources/experiments/worm/Wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/Wnd.h -------------------------------------------------------------------------------- /resources/experiments/worm/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/app.lds -------------------------------------------------------------------------------- /resources/experiments/worm/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/bios.s -------------------------------------------------------------------------------- /resources/experiments/worm/buildmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/buildmac.sh -------------------------------------------------------------------------------- /resources/experiments/worm/la104bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/la104bios.h -------------------------------------------------------------------------------- /resources/experiments/worm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/main.cpp -------------------------------------------------------------------------------- /resources/experiments/worm/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/experiments/worm/startup.c -------------------------------------------------------------------------------- /resources/hybridmp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/hybridmp3.png -------------------------------------------------------------------------------- /resources/imgAnalyser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgAnalyser.png -------------------------------------------------------------------------------- /resources/imgApds1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgApds1.png -------------------------------------------------------------------------------- /resources/imgBmp180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgBmp180.png -------------------------------------------------------------------------------- /resources/imgCharset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgCharset.png -------------------------------------------------------------------------------- /resources/imgDht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgDht.png -------------------------------------------------------------------------------- /resources/imgDs1820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgDs1820.png -------------------------------------------------------------------------------- /resources/imgGpio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgGpio1.png -------------------------------------------------------------------------------- /resources/imgGpio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgGpio2.png -------------------------------------------------------------------------------- /resources/imgManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgManager.png -------------------------------------------------------------------------------- /resources/imgMidi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgMidi1.png -------------------------------------------------------------------------------- /resources/imgMidi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgMidi2.png -------------------------------------------------------------------------------- /resources/imgMp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgMp3.png -------------------------------------------------------------------------------- /resources/imgPulseview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgPulseview.png -------------------------------------------------------------------------------- /resources/imgPwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgPwm.png -------------------------------------------------------------------------------- /resources/imgScanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgScanner.png -------------------------------------------------------------------------------- /resources/imgSequencer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgSequencer1.png -------------------------------------------------------------------------------- /resources/imgSequencer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgSequencer2.png -------------------------------------------------------------------------------- /resources/imgShell1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgShell1.png -------------------------------------------------------------------------------- /resources/imgShell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgShell2.png -------------------------------------------------------------------------------- /resources/imgTempMeas1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgTempMeas1.jpg -------------------------------------------------------------------------------- /resources/imgTempMeas2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgTempMeas2.png -------------------------------------------------------------------------------- /resources/imgWasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgWasm.png -------------------------------------------------------------------------------- /resources/imgWs2812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/imgWs2812.png -------------------------------------------------------------------------------- /resources/ladsall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/ladsall.jpg -------------------------------------------------------------------------------- /resources/official_fw_gcc/app.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/app.ld -------------------------------------------------------------------------------- /resources/official_fw_gcc/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/bios.s -------------------------------------------------------------------------------- /resources/official_fw_gcc/buildmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/buildmac.sh -------------------------------------------------------------------------------- /resources/official_fw_gcc/buildwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/buildwin.bat -------------------------------------------------------------------------------- /resources/official_fw_gcc/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/cp.sh -------------------------------------------------------------------------------- /resources/official_fw_gcc/lib/spf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/lib/spf.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/lib/spf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/lib/spf.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Ctrl.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Ctrl.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Disk.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Disk.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/FAT12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/FAT12.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/FAT12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/FAT12.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Files.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Files.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Font.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Func.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Func.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/GUI.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/GUI.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Main.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Menu.c -------------------------------------------------------------------------------- /resources/official_fw_gcc/source/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/source/Menu.h -------------------------------------------------------------------------------- /resources/official_fw_gcc/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/official_fw_gcc/startup.c -------------------------------------------------------------------------------- /resources/productBrief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/productBrief.png -------------------------------------------------------------------------------- /resources/tutorial_building/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/tutorial_building/readme.md -------------------------------------------------------------------------------- /resources/wasmbuild/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/app.js -------------------------------------------------------------------------------- /resources/wasmbuild/apps/charmap.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/charmap.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/charmap.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/charmap.wasm.map -------------------------------------------------------------------------------- /resources/wasmbuild/apps/fileman.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/fileman.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/fileman.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/fileman.wasm.map -------------------------------------------------------------------------------- /resources/wasmbuild/apps/shell.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/shell.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/shell.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/shell.wasm.map -------------------------------------------------------------------------------- /resources/wasmbuild/apps/triangle.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/triangle.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/viewtxt.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/viewtxt.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/viewtxt.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/viewtxt.wasm.map -------------------------------------------------------------------------------- /resources/wasmbuild/apps/ws2812.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/ws2812.wasm -------------------------------------------------------------------------------- /resources/wasmbuild/apps/ws2812.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/apps/ws2812.wasm.map -------------------------------------------------------------------------------- /resources/wasmbuild/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/index.html -------------------------------------------------------------------------------- /resources/wasmbuild/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/inflate.js -------------------------------------------------------------------------------- /resources/wasmbuild/la104fat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/la104fat.zip -------------------------------------------------------------------------------- /resources/wasmbuild/z-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/z-worker.js -------------------------------------------------------------------------------- /resources/wasmbuild/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/wasmbuild/zip.js -------------------------------------------------------------------------------- /resources/waveAlchemy1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/waveAlchemy1.jpeg -------------------------------------------------------------------------------- /resources/waveAlchemy2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/waveAlchemy2.jpeg -------------------------------------------------------------------------------- /resources/waveAlchemy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/resources/waveAlchemy3.png -------------------------------------------------------------------------------- /system/apps/105_avrprogrammer/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps/105_avrprogrammer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/105_avrprogrammer/readme.md -------------------------------------------------------------------------------- /system/apps/109_radsense/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/build.sh -------------------------------------------------------------------------------- /system/apps/109_radsense/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/cp.sh -------------------------------------------------------------------------------- /system/apps/109_radsense/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/readme.jpg -------------------------------------------------------------------------------- /system/apps/109_radsense/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/readme.md -------------------------------------------------------------------------------- /system/apps/109_radsense/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/source/app.lds -------------------------------------------------------------------------------- /system/apps/109_radsense/source/arduino/Arduino.h: -------------------------------------------------------------------------------- 1 | #include "../platform.h" 2 | -------------------------------------------------------------------------------- /system/apps/109_radsense/source/arduino/Wire.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/apps/109_radsense/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/109_radsense/source/main.cpp -------------------------------------------------------------------------------- /system/apps/109_radsense/source/radsens/origin: -------------------------------------------------------------------------------- 1 | https://github.com/climateguard/RadSens.git 2 | -------------------------------------------------------------------------------- /system/apps/110_mhz19b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/110_mhz19b/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/build.sh -------------------------------------------------------------------------------- /system/apps/110_mhz19b/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/build_mac.sh -------------------------------------------------------------------------------- /system/apps/110_mhz19b/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/readme.jpg -------------------------------------------------------------------------------- /system/apps/110_mhz19b/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/readme.md -------------------------------------------------------------------------------- /system/apps/110_mhz19b/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/source/app.lds -------------------------------------------------------------------------------- /system/apps/110_mhz19b/source/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/source/logger.h -------------------------------------------------------------------------------- /system/apps/110_mhz19b/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/110_mhz19b/source/main.cpp -------------------------------------------------------------------------------- /system/apps/115_hunter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/115_hunter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/build.sh -------------------------------------------------------------------------------- /system/apps/115_hunter/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/build_mac.sh -------------------------------------------------------------------------------- /system/apps/115_hunter/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/readme.jpg -------------------------------------------------------------------------------- /system/apps/115_hunter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/readme.md -------------------------------------------------------------------------------- /system/apps/115_hunter/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/source/app.lds -------------------------------------------------------------------------------- /system/apps/115_hunter/source/hunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/source/hunter.h -------------------------------------------------------------------------------- /system/apps/115_hunter/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/source/main.cpp -------------------------------------------------------------------------------- /system/apps/115_hunter/source/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/115_hunter/source/platform.h -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/app.lds -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/build.sh -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/keyboard.h -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/main.cpp -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/periph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/periph.h -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/readme.md -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/scancode.h -------------------------------------------------------------------------------- /system/apps/120_ps2keyboard/v1_isr/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/120_ps2keyboard/v1_isr/isr.c -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/01blink.fpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/01blink.fpg -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/01blink.vlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/01blink.vlf -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/02count.fpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/02count.fpg -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/02count.vlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/02count.vlf -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/03fib.fpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/03fib.fpg -------------------------------------------------------------------------------- /system/apps/123_fpga/bin/03fib.vlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/bin/03fib.vlf -------------------------------------------------------------------------------- /system/apps/123_fpga/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps/123_fpga/build_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/build_la104.sh -------------------------------------------------------------------------------- /system/apps/123_fpga/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/readme.md -------------------------------------------------------------------------------- /system/apps/123_fpga/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/source/app.lds -------------------------------------------------------------------------------- /system/apps/123_fpga/source/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/source/file/file.h -------------------------------------------------------------------------------- /system/apps/123_fpga/source/file/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/source/file/layout.h -------------------------------------------------------------------------------- /system/apps/123_fpga/source/file/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/source/file/shapes.h -------------------------------------------------------------------------------- /system/apps/123_fpga/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/123_fpga/source/main.cpp -------------------------------------------------------------------------------- /system/apps/125_rtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/125_rtc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/build.sh -------------------------------------------------------------------------------- /system/apps/125_rtc/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/build_mac.sh -------------------------------------------------------------------------------- /system/apps/125_rtc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/readme.md -------------------------------------------------------------------------------- /system/apps/125_rtc/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/readme.png -------------------------------------------------------------------------------- /system/apps/125_rtc/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/app.lds -------------------------------------------------------------------------------- /system/apps/125_rtc/source/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/application.h -------------------------------------------------------------------------------- /system/apps/125_rtc/source/lib/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/lib/Arduino.h -------------------------------------------------------------------------------- /system/apps/125_rtc/source/lib/DS1307.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/lib/DS1307.cpp -------------------------------------------------------------------------------- /system/apps/125_rtc/source/lib/DS3231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/lib/DS3231.cpp -------------------------------------------------------------------------------- /system/apps/125_rtc/source/lib/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/lib/RTC.h -------------------------------------------------------------------------------- /system/apps/125_rtc/source/lib/Wire.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/apps/125_rtc/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/main.cpp -------------------------------------------------------------------------------- /system/apps/125_rtc/source/testcases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/source/testcases.h -------------------------------------------------------------------------------- /system/apps/125_rtc/tools/ca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/tools/ca.html -------------------------------------------------------------------------------- /system/apps/125_rtc/tools/ca4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/tools/ca4.html -------------------------------------------------------------------------------- /system/apps/125_rtc/tools/ca8_small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/tools/ca8_small.html -------------------------------------------------------------------------------- /system/apps/125_rtc/tools/testcases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/tools/testcases.h -------------------------------------------------------------------------------- /system/apps/125_rtc/tools/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/125_rtc/tools/tests.js -------------------------------------------------------------------------------- /system/apps/138_stk500/arduino/bl1s.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/arduino/bl1s.hex -------------------------------------------------------------------------------- /system/apps/138_stk500/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/build.sh -------------------------------------------------------------------------------- /system/apps/138_stk500/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/source/app.lds -------------------------------------------------------------------------------- /system/apps/138_stk500/source/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/source/file/file.h -------------------------------------------------------------------------------- /system/apps/138_stk500/source/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/source/gpio.h -------------------------------------------------------------------------------- /system/apps/138_stk500/source/ihex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/source/ihex.h -------------------------------------------------------------------------------- /system/apps/138_stk500/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/138_stk500/source/main.cpp -------------------------------------------------------------------------------- /system/apps/62_memview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/62_memview/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/build.sh -------------------------------------------------------------------------------- /system/apps/62_memview/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/build_mac.sh -------------------------------------------------------------------------------- /system/apps/62_memview/cp.sh: -------------------------------------------------------------------------------- 1 | cp build/58gmini.elf /Volumes/MINIDSO/ -------------------------------------------------------------------------------- /system/apps/62_memview/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/source/app.lds -------------------------------------------------------------------------------- /system/apps/62_memview/source/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/source/layout.h -------------------------------------------------------------------------------- /system/apps/62_memview/source/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/source/list.h -------------------------------------------------------------------------------- /system/apps/62_memview/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/source/main.cpp -------------------------------------------------------------------------------- /system/apps/62_memview/source/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/62_memview/source/shapes.h -------------------------------------------------------------------------------- /system/apps/73_invt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/73_invt/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/app.lds -------------------------------------------------------------------------------- /system/apps/73_invt/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/assert.h -------------------------------------------------------------------------------- /system/apps/73_invt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/build.sh -------------------------------------------------------------------------------- /system/apps/73_invt/invt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/invt.h -------------------------------------------------------------------------------- /system/apps/73_invt/invtgd10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/invtgd10.h -------------------------------------------------------------------------------- /system/apps/73_invt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/main.cpp -------------------------------------------------------------------------------- /system/apps/73_invt/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/packet.h -------------------------------------------------------------------------------- /system/apps/73_invt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/readme.md -------------------------------------------------------------------------------- /system/apps/73_invt/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/73_invt/serial.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/build_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/build_la104.sh -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/app.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/app.lds -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/atof.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/cc1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/cc1101.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/main.cpp -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/memory.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/source/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/source/rpc.h -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/analyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/analyser.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/bios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/bios.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/canvas.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/comm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/comm.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/index.html -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/nice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/nice -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/remotegui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/remotegui.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/79_cc1101osc/web/serial.js -------------------------------------------------------------------------------- /system/apps/79_cc1101osc/web/server.sh: -------------------------------------------------------------------------------- 1 | http-server . 2 | -------------------------------------------------------------------------------- /system/apps/81_image/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/build.sh -------------------------------------------------------------------------------- /system/apps/81_image/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/create.sh -------------------------------------------------------------------------------- /system/apps/81_image/gabo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/gabo.png -------------------------------------------------------------------------------- /system/apps/81_image/res/gabo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/res/gabo.bmp -------------------------------------------------------------------------------- /system/apps/81_image/res/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/res/logo.bmp -------------------------------------------------------------------------------- /system/apps/81_image/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/app.lds -------------------------------------------------------------------------------- /system/apps/81_image/source/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/bitmap.h -------------------------------------------------------------------------------- /system/apps/81_image/source/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/file/file.h -------------------------------------------------------------------------------- /system/apps/81_image/source/file/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/file/layout.h -------------------------------------------------------------------------------- /system/apps/81_image/source/file/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/file/shapes.h -------------------------------------------------------------------------------- /system/apps/81_image/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/81_image/source/main.cpp -------------------------------------------------------------------------------- /system/apps/82_specan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/82_specan/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/app.lds -------------------------------------------------------------------------------- /system/apps/82_specan/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/build.sh -------------------------------------------------------------------------------- /system/apps/82_specan/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/build_mac.sh -------------------------------------------------------------------------------- /system/apps/82_specan/source/CC1101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/CC1101.cpp -------------------------------------------------------------------------------- /system/apps/82_specan/source/CC1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/CC1101.h -------------------------------------------------------------------------------- /system/apps/82_specan/source/_CC1101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/_CC1101.cpp -------------------------------------------------------------------------------- /system/apps/82_specan/source/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/layout.h -------------------------------------------------------------------------------- /system/apps/82_specan/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/main.cpp -------------------------------------------------------------------------------- /system/apps/82_specan/source/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/shapes.h -------------------------------------------------------------------------------- /system/apps/82_specan/source/specan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/specan.cpp -------------------------------------------------------------------------------- /system/apps/82_specan/source/specan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/specan.h -------------------------------------------------------------------------------- /system/apps/82_specan/source/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/82_specan/source/spi.h -------------------------------------------------------------------------------- /system/apps/99_3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/99_3d/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/build.sh -------------------------------------------------------------------------------- /system/apps/99_3d/build_ds203.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/build_ds203.sh -------------------------------------------------------------------------------- /system/apps/99_3d/build_ds213.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/build_ds213.sh -------------------------------------------------------------------------------- /system/apps/99_3d/build_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/build_la104.sh -------------------------------------------------------------------------------- /system/apps/99_3d/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/build_mac.sh -------------------------------------------------------------------------------- /system/apps/99_3d/source/3dcube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/source/3dcube.cpp -------------------------------------------------------------------------------- /system/apps/99_3d/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/source/app.lds -------------------------------------------------------------------------------- /system/apps/99_3d/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/99_3d/source/main.cpp -------------------------------------------------------------------------------- /system/apps/test13_mp3/Arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/Arduino.cpp -------------------------------------------------------------------------------- /system/apps/test13_mp3/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/Arduino.h -------------------------------------------------------------------------------- /system/apps/test13_mp3/MD_YX5300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/MD_YX5300.cpp -------------------------------------------------------------------------------- /system/apps/test13_mp3/MD_YX5300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/MD_YX5300.h -------------------------------------------------------------------------------- /system/apps/test13_mp3/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/Menu.h -------------------------------------------------------------------------------- /system/apps/test13_mp3/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/app.lds -------------------------------------------------------------------------------- /system/apps/test13_mp3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/build.sh -------------------------------------------------------------------------------- /system/apps/test13_mp3/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/cp.sh -------------------------------------------------------------------------------- /system/apps/test13_mp3/gif/GifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/gif/GifDecoder.h -------------------------------------------------------------------------------- /system/apps/test13_mp3/gif/licence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/gif/licence.h -------------------------------------------------------------------------------- /system/apps/test13_mp3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/main.cpp -------------------------------------------------------------------------------- /system/apps/test13_mp3/sch_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/sch_mp3.gif -------------------------------------------------------------------------------- /system/apps/test13_mp3/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test13_mp3/shapes.h -------------------------------------------------------------------------------- /system/apps/test15_charmap/CharMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/CharMap.cpp -------------------------------------------------------------------------------- /system/apps/test15_charmap/CharMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/CharMap.h -------------------------------------------------------------------------------- /system/apps/test15_charmap/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/app.lds -------------------------------------------------------------------------------- /system/apps/test15_charmap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/build.sh -------------------------------------------------------------------------------- /system/apps/test15_charmap/build_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/build_wasm.sh -------------------------------------------------------------------------------- /system/apps/test15_charmap/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/cp.sh -------------------------------------------------------------------------------- /system/apps/test15_charmap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test15_charmap/main.cpp -------------------------------------------------------------------------------- /system/apps/test17_official/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/app.lds -------------------------------------------------------------------------------- /system/apps/test17_official/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/build.sh -------------------------------------------------------------------------------- /system/apps/test17_official/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/cp.sh -------------------------------------------------------------------------------- /system/apps/test17_official/source/Ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Ctrl.c -------------------------------------------------------------------------------- /system/apps/test17_official/source/Ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Ctrl.h -------------------------------------------------------------------------------- /system/apps/test17_official/source/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Font.h -------------------------------------------------------------------------------- /system/apps/test17_official/source/Func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Func.c -------------------------------------------------------------------------------- /system/apps/test17_official/source/Func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Func.h -------------------------------------------------------------------------------- /system/apps/test17_official/source/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/GUI.c -------------------------------------------------------------------------------- /system/apps/test17_official/source/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/GUI.h -------------------------------------------------------------------------------- /system/apps/test17_official/source/Interrupt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/apps/test17_official/source/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Main.c -------------------------------------------------------------------------------- /system/apps/test17_official/source/Menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Menu.c -------------------------------------------------------------------------------- /system/apps/test17_official/source/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test17_official/source/Menu.h -------------------------------------------------------------------------------- /system/apps/test22_sequencer/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test22_sequencer/app.lds -------------------------------------------------------------------------------- /system/apps/test22_sequencer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test22_sequencer/build.sh -------------------------------------------------------------------------------- /system/apps/test22_sequencer/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test22_sequencer/build_mac.sh -------------------------------------------------------------------------------- /system/apps/test22_sequencer/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test22_sequencer/cp.sh -------------------------------------------------------------------------------- /system/apps/test23_screenshot/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test23_screenshot/app.lds -------------------------------------------------------------------------------- /system/apps/test23_screenshot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test23_screenshot/build.sh -------------------------------------------------------------------------------- /system/apps/test23_screenshot/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test23_screenshot/cp.sh -------------------------------------------------------------------------------- /system/apps/test23_screenshot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test23_screenshot/main.cpp -------------------------------------------------------------------------------- /system/apps/test30_dcf77/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test30_dcf77/app.lds -------------------------------------------------------------------------------- /system/apps/test30_dcf77/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test30_dcf77/build.sh -------------------------------------------------------------------------------- /system/apps/test30_dcf77/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test30_dcf77/cp.sh -------------------------------------------------------------------------------- /system/apps/test30_dcf77/dcf77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test30_dcf77/dcf77.h -------------------------------------------------------------------------------- /system/apps/test30_dcf77/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test30_dcf77/main.cpp -------------------------------------------------------------------------------- /system/apps/test31_testsignal/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test31_testsignal/app.lds -------------------------------------------------------------------------------- /system/apps/test31_testsignal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test31_testsignal/build.sh -------------------------------------------------------------------------------- /system/apps/test31_testsignal/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test31_testsignal/cp.sh -------------------------------------------------------------------------------- /system/apps/test31_testsignal/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test31_testsignal/gpio.h -------------------------------------------------------------------------------- /system/apps/test31_testsignal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test31_testsignal/main.cpp -------------------------------------------------------------------------------- /system/apps/test34_scope/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/test34_scope/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/app.lds -------------------------------------------------------------------------------- /system/apps/test34_scope/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/build.sh -------------------------------------------------------------------------------- /system/apps/test34_scope/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/build_mac.sh -------------------------------------------------------------------------------- /system/apps/test34_scope/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/cp.sh -------------------------------------------------------------------------------- /system/apps/test34_scope/graph/axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/graph/axis.h -------------------------------------------------------------------------------- /system/apps/test34_scope/graph/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/graph/draw.h -------------------------------------------------------------------------------- /system/apps/test34_scope/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/graph/graph.h -------------------------------------------------------------------------------- /system/apps/test34_scope/graph/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/graph/palette.h -------------------------------------------------------------------------------- /system/apps/test34_scope/graph/series.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/graph/series.h -------------------------------------------------------------------------------- /system/apps/test34_scope/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test34_scope/main.cpp -------------------------------------------------------------------------------- /system/apps/test35_view/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test35_view/app.lds -------------------------------------------------------------------------------- /system/apps/test35_view/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test35_view/build.sh -------------------------------------------------------------------------------- /system/apps/test35_view/build_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test35_view/build_wasm.sh -------------------------------------------------------------------------------- /system/apps/test35_view/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test35_view/cp.sh -------------------------------------------------------------------------------- /system/apps/test35_view/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test35_view/main.cpp -------------------------------------------------------------------------------- /system/apps/test36_esp_server/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/app.lds -------------------------------------------------------------------------------- /system/apps/test36_esp_server/atdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/atdevice.h -------------------------------------------------------------------------------- /system/apps/test36_esp_server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/build.sh -------------------------------------------------------------------------------- /system/apps/test36_esp_server/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/cp.sh -------------------------------------------------------------------------------- /system/apps/test36_esp_server/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/esp8266.h -------------------------------------------------------------------------------- /system/apps/test36_esp_server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/main.cpp -------------------------------------------------------------------------------- /system/apps/test36_esp_server/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/promise.h -------------------------------------------------------------------------------- /system/apps/test36_esp_server/stdfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/stdfunc.h -------------------------------------------------------------------------------- /system/apps/test36_esp_server/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test36_esp_server/stream.h -------------------------------------------------------------------------------- /system/apps/test41_alchemy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/test41_alchemy/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/app.lds -------------------------------------------------------------------------------- /system/apps/test41_alchemy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/build.sh -------------------------------------------------------------------------------- /system/apps/test41_alchemy/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/cp.sh -------------------------------------------------------------------------------- /system/apps/test41_alchemy/test/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/test/library.h -------------------------------------------------------------------------------- /system/apps/test41_alchemy/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/test/main.cpp -------------------------------------------------------------------------------- /system/apps/test41_alchemy/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test41_alchemy/test/test.sh -------------------------------------------------------------------------------- /system/apps/test45_simcom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test45_simcom/CMakeLists.txt -------------------------------------------------------------------------------- /system/apps/test45_simcom/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test45_simcom/app.lds -------------------------------------------------------------------------------- /system/apps/test45_simcom/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test45_simcom/build.sh -------------------------------------------------------------------------------- /system/apps/test45_simcom/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test45_simcom/main.cpp -------------------------------------------------------------------------------- /system/apps/test45_simcom/simcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test45_simcom/simcom.h -------------------------------------------------------------------------------- /system/apps/test4_snake/Snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/Snake.h -------------------------------------------------------------------------------- /system/apps/test4_snake/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/Utils.h -------------------------------------------------------------------------------- /system/apps/test4_snake/Wnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/Wnd.cpp -------------------------------------------------------------------------------- /system/apps/test4_snake/Wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/Wnd.h -------------------------------------------------------------------------------- /system/apps/test4_snake/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/app.lds -------------------------------------------------------------------------------- /system/apps/test4_snake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/build.sh -------------------------------------------------------------------------------- /system/apps/test4_snake/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/cp.sh -------------------------------------------------------------------------------- /system/apps/test4_snake/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test4_snake/main.cpp -------------------------------------------------------------------------------- /system/apps/test70_webusb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/build.sh -------------------------------------------------------------------------------- /system/apps/test70_webusb/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/source/app.lds -------------------------------------------------------------------------------- /system/apps/test70_webusb/source/atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/source/atof.h -------------------------------------------------------------------------------- /system/apps/test70_webusb/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/source/main.cpp -------------------------------------------------------------------------------- /system/apps/test70_webusb/source/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/source/memory.h -------------------------------------------------------------------------------- /system/apps/test70_webusb/source/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/source/rpc.h -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/bios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/bios.js -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/canvas.js -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/comm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/comm.js -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/index.html -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/main.js -------------------------------------------------------------------------------- /system/apps/test70_webusb/web/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test70_webusb/web/serial.js -------------------------------------------------------------------------------- /system/apps/test7_pwm_app/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test7_pwm_app/app.lds -------------------------------------------------------------------------------- /system/apps/test7_pwm_app/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test7_pwm_app/build.sh -------------------------------------------------------------------------------- /system/apps/test7_pwm_app/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test7_pwm_app/cp.sh -------------------------------------------------------------------------------- /system/apps/test7_pwm_app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test7_pwm_app/main.cpp -------------------------------------------------------------------------------- /system/apps/test7_pwm_app/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps/test7_pwm_app/shapes.h -------------------------------------------------------------------------------- /system/apps_ds213/118_dht_app/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/118_dht_app/app.lds -------------------------------------------------------------------------------- /system/apps_ds213/118_dht_app/build.sh: -------------------------------------------------------------------------------- 1 | ./build_ds213.sh 2 | -------------------------------------------------------------------------------- /system/apps_ds213/118_dht_app/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/118_dht_app/readme.jpg -------------------------------------------------------------------------------- /system/apps_ds213/118_dht_app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/118_dht_app/readme.md -------------------------------------------------------------------------------- /system/apps_ds213/52_oscilloscope/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/52_oscilloscope/app.lds -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/58_gabmini/build.sh -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/58_gabmini/build_mac.sh -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/cp_203.sh: -------------------------------------------------------------------------------- 1 | cp build/58gmin03.elf /Volumes/DS203/ -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/cp_213.sh: -------------------------------------------------------------------------------- 1 | cp build/58gmin13.elf /Volumes/DS213/ -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/source/Framework/Midi.h: -------------------------------------------------------------------------------- 1 | namespace CUtils 2 | { 3 | char* MidiNote(int n); 4 | 5 | } 6 | -------------------------------------------------------------------------------- /system/apps_ds213/58_gabmini/todos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/58_gabmini/todos -------------------------------------------------------------------------------- /system/apps_ds213/60_gabgen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/60_gabgen/build.sh -------------------------------------------------------------------------------- /system/apps_ds213/60_gabgen/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/60_gabgen/build_mac.sh -------------------------------------------------------------------------------- /system/apps_ds213/60_gabgen/source/Framework/Midi.h: -------------------------------------------------------------------------------- 1 | namespace CUtils 2 | { 3 | char* MidiNote(int n); 4 | 5 | } 6 | -------------------------------------------------------------------------------- /system/apps_ds213/60_gabgen/todos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_ds213/60_gabgen/todos -------------------------------------------------------------------------------- /system/apps_experiments/100_lowi2c/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/100_lowi2c/cp.sh -------------------------------------------------------------------------------- /system/apps_experiments/111_micropython/.vscode/.cortex-debug.peripherals.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_experiments/111_micropython/.vscode/.cortex-debug.registers.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_experiments/111_micropython/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cortex-debug.armToolchainPath": "/Applications/ARM/bin" 3 | } -------------------------------------------------------------------------------- /system/apps_experiments/114_micropython_compiler/.vscode/.cortex-debug.peripherals.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_experiments/114_micropython_compiler/.vscode/.cortex-debug.registers.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_experiments/119_bpkt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/119_bpkt/build.sh -------------------------------------------------------------------------------- /system/apps_experiments/130_i2s/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/130_i2s/build.sh -------------------------------------------------------------------------------- /system/apps_experiments/55_2x3_gabosc/source/Framework/Midi.h: -------------------------------------------------------------------------------- 1 | namespace CUtils 2 | { 3 | char* MidiNote(int n); 4 | 5 | } 6 | -------------------------------------------------------------------------------- /system/apps_experiments/71_213_dmastreamer/web/server.sh: -------------------------------------------------------------------------------- 1 | http-server . 2 | -------------------------------------------------------------------------------- /system/apps_experiments/92_bmp180/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/92_bmp180/app.lds -------------------------------------------------------------------------------- /system/apps_experiments/95_sht20/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/95_sht20/app.lds -------------------------------------------------------------------------------- /system/apps_experiments/95_sht20/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/95_sht20/build.sh -------------------------------------------------------------------------------- /system/apps_experiments/95_sht20/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/95_sht20/main.cpp -------------------------------------------------------------------------------- /system/apps_experiments/96_tm1637/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/96_tm1637/app.lds -------------------------------------------------------------------------------- /system/apps_experiments/test14_apds9960/arduino/Wire.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Arduino.h" 3 | -------------------------------------------------------------------------------- /system/apps_experiments/test18_onewire/arduino/Wire.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Arduino.h" 3 | -------------------------------------------------------------------------------- /system/apps_experiments/test39_lcd/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/test39_lcd/cp.sh -------------------------------------------------------------------------------- /system/apps_experiments/test39_lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/test39_lcd/lcd.h -------------------------------------------------------------------------------- /system/apps_experiments/test3_gui/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/test3_gui/app.lds -------------------------------------------------------------------------------- /system/apps_experiments/test3_gui/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/test3_gui/cp.sh -------------------------------------------------------------------------------- /system/apps_experiments/test40_fpga/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_experiments/test40_fpga/cp.sh -------------------------------------------------------------------------------- /system/apps_featured/103_servo/back24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/103_servo/back24.png -------------------------------------------------------------------------------- /system/apps_featured/103_servo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/103_servo/build.sh -------------------------------------------------------------------------------- /system/apps_featured/103_servo/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/103_servo/circle.js -------------------------------------------------------------------------------- /system/apps_featured/103_servo/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/103_servo/test.js -------------------------------------------------------------------------------- /system/apps_featured/113_circuitpython/.vscode/.cortex-debug.peripherals.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_featured/113_circuitpython/.vscode/.cortex-debug.registers.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /system/apps_featured/113_circuitpython/source/bindings/mini.h: -------------------------------------------------------------------------------- 1 | #include "py/obj.h" 2 | -------------------------------------------------------------------------------- /system/apps_featured/116_breakout/readme.md: -------------------------------------------------------------------------------- 1 | # Breakout game core 2 | 3 | ![preview](readme.png) -------------------------------------------------------------------------------- /system/apps_featured/117_gabuino/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps_featured/117_gabuino/examples/build.sh: -------------------------------------------------------------------------------- 1 | node build.js > ../web/v1/examples.js 2 | -------------------------------------------------------------------------------- /system/apps_featured/118_basic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/118_basic/build.sh -------------------------------------------------------------------------------- /system/apps_featured/118_basic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/118_basic/readme.md -------------------------------------------------------------------------------- /system/apps_featured/118_basic/source/arduino/assert.h: -------------------------------------------------------------------------------- 1 | #define assert(x) -------------------------------------------------------------------------------- /system/apps_featured/118_basic/source/terminal-basic/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "2.3-b1-1360" 2 | -------------------------------------------------------------------------------- /system/apps_featured/121_pasteur/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/121_pasteur/build.sh -------------------------------------------------------------------------------- /system/apps_featured/140_cat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/140_cat/build.sh -------------------------------------------------------------------------------- /system/apps_featured/140_cat/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/140_cat/build_mac.sh -------------------------------------------------------------------------------- /system/apps_featured/140_cat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/140_cat/readme.md -------------------------------------------------------------------------------- /system/apps_featured/61_devinfo/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/61_devinfo/app.lds -------------------------------------------------------------------------------- /system/apps_featured/61_devinfo/app_x.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/61_devinfo/app_x.lds -------------------------------------------------------------------------------- /system/apps_featured/61_devinfo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/61_devinfo/build.sh -------------------------------------------------------------------------------- /system/apps_featured/61_devinfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/61_devinfo/main.cpp -------------------------------------------------------------------------------- /system/apps_featured/69_webusbosc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/69_webusbosc/test.sh -------------------------------------------------------------------------------- /system/apps_featured/69_webusbosc/web/v2/server.sh: -------------------------------------------------------------------------------- 1 | http-server . 2 | -------------------------------------------------------------------------------- /system/apps_featured/69_webusbosc/web/v3/server.sh: -------------------------------------------------------------------------------- 1 | http-server . 2 | -------------------------------------------------------------------------------- /system/apps_featured/72_uartmon/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/72_uartmon/build.sh -------------------------------------------------------------------------------- /system/apps_featured/72_uartmon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/72_uartmon/readme.md -------------------------------------------------------------------------------- /system/apps_featured/80_rftool/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps_featured/80_rftool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/80_rftool/readme.md -------------------------------------------------------------------------------- /system/apps_featured/94_rfid/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/94_rfid/build.sh -------------------------------------------------------------------------------- /system/apps_featured/94_rfid/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/94_rfid/build_mac.sh -------------------------------------------------------------------------------- /system/apps_featured/test37_i2cscan/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test37_i2cscan/cp.sh -------------------------------------------------------------------------------- /system/apps_featured/test37_i2cscan/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test37_i2cscan/i2c.h -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/Menu.h -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/app.lds -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/build.sh -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/main.cpp -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/pwm.h -------------------------------------------------------------------------------- /system/apps_featured/test49_gpio/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_featured/test49_gpio/shapes.h -------------------------------------------------------------------------------- /system/apps_shell/test127_sdman/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test127_sdman/app.lds -------------------------------------------------------------------------------- /system/apps_shell/test127_sdman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test127_sdman/build.sh -------------------------------------------------------------------------------- /system/apps_shell/test28_shell/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test28_shell/app.lds -------------------------------------------------------------------------------- /system/apps_shell/test28_shell/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test28_shell/build.sh -------------------------------------------------------------------------------- /system/apps_shell/test28_shell/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test28_shell/cp.sh -------------------------------------------------------------------------------- /system/apps_shell/test29_fileman/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test29_fileman/app.lds -------------------------------------------------------------------------------- /system/apps_shell/test29_fileman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test29_fileman/build.sh -------------------------------------------------------------------------------- /system/apps_shell/test29_fileman/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_shell/test29_fileman/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/104_avrisp/build.sh: -------------------------------------------------------------------------------- 1 | ./build_la104.sh 2 | -------------------------------------------------------------------------------- /system/apps_usb/104_avrisp/build_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/104_avrisp/build_la104.sh -------------------------------------------------------------------------------- /system/apps_usb/104_avrisp/source/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/104_avrisp/source/app.h -------------------------------------------------------------------------------- /system/apps_usb/104_avrisp/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/104_avrisp/source/app.lds -------------------------------------------------------------------------------- /system/apps_usb/116_webcdc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/116_webcdc/build.sh -------------------------------------------------------------------------------- /system/apps_usb/116_webcdc/source/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/116_webcdc/source/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test24_usbcdc/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test24_usbcdc/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test24_usbcdc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test24_usbcdc/build.sh -------------------------------------------------------------------------------- /system/apps_usb/test24_usbcdc/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test24_usbcdc/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/test24_usbcdc/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test24_usbcdc/if.c -------------------------------------------------------------------------------- /system/apps_usb/test24_usbcdc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test24_usbcdc/main.cpp -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/build.sh -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/if.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/main.cpp -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/common.h -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_app.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_app.h -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_conf.h -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_desc.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_desc.h -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_endp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_endp.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_prop.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_prop.h -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usb/hid_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usb/hid_pwr.c -------------------------------------------------------------------------------- /system/apps_usb/test25_hid/usbhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test25_hid/usbhelpers.c -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/build.sh -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/if.c -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/main.cpp -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/readme.txt -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/ringbuf.h -------------------------------------------------------------------------------- /system/apps_usb/test26_midi/usbhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test26_midi/usbhelpers.c -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/build.sh -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/if.c -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/main.cpp -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/readme.md -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/sump/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/sump/delay.h -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/sump/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/sump/gpio.c -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/sump/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/sump/gpio.h -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/sump/sump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/sump/sump.c -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/sump/sump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/sump/sump.h -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/usb/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/usb/atomic.h -------------------------------------------------------------------------------- /system/apps_usb/test32_sump/usbhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test32_sump/usbhelpers.c -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/app.lds -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/build.sh -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/cp.sh -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/if.c -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/loop.cpp -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/main.cpp -------------------------------------------------------------------------------- /system/apps_usb/test64_remote/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test64_remote/terminal.h -------------------------------------------------------------------------------- /system/apps_usb/test67_webusb/1_build_.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test67_webusb/1_build_.sh -------------------------------------------------------------------------------- /system/apps_usb/test67_webusb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/apps_usb/test67_webusb/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/allinput.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/allinput.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/build_all.sh -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/build_fpga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/build_fpga.sh -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/cnt4bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/cnt4bit.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/cnt4bitonsck.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/cnt4bitonsck.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/cnt7bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/cnt7bit.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/highimp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/highimp.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/mosiandsck.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/mosiandsck.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/notclk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/notclk.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/run_target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/run_target.sh -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/sckonclk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/sckonclk.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/test.cpp -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/toggle.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/toggle.v -------------------------------------------------------------------------------- /system/fpga_la104/00_mini/toggle2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/00_mini/toggle2.v -------------------------------------------------------------------------------- /system/fpga_la104/01_blink/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/01_blink/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/01_blink/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/01_blink/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/01_blink/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/01_blink/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/01_blink/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/01_blink/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/02_counter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/02_counter/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/02_counter/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/02_counter/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/02_counter/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/02_counter/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/03_fibonacci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/03_fibonacci/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/04_ram/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/04_ram/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/04_ram/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/04_ram/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/04_ram/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/04_ram/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/04_ram/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/04_ram/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/build.bat -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/build.sh -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/res/data512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/res/data512.txt -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/res/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/res/encode.js -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/05_bram/source/memory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/05_bram/source/memory.v -------------------------------------------------------------------------------- /system/fpga_la104/06_fifo/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/06_fifo/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/06_fifo/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/06_fifo/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/06_fifo/source/fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/06_fifo/source/fifo.v -------------------------------------------------------------------------------- /system/fpga_la104/06_fifo/source/spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/06_fifo/source/spi.v -------------------------------------------------------------------------------- /system/fpga_la104/06_fifo/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/06_fifo/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/build_fpga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/build_fpga.sh -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/build_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/build_verify.sh -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/log.html -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/readme.md -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/07_spi2/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/07_spi2/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/08_fifo2/build_fpga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/08_fifo2/build_fpga.sh -------------------------------------------------------------------------------- /system/fpga_la104/08_fifo2/source/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/08_fifo2/source/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/08_fifo2/source/app.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/08_fifo2/source/app.sdc -------------------------------------------------------------------------------- /system/fpga_la104/08_fifo2/source/app.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/08_fifo2/source/app.v -------------------------------------------------------------------------------- /system/fpga_la104/08_fifo2/verilator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/08_fifo2/verilator.sh -------------------------------------------------------------------------------- /system/fpga_la104/common/app.asf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/app.asf -------------------------------------------------------------------------------- /system/fpga_la104/common/build_fpga.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/build_fpga.bat -------------------------------------------------------------------------------- /system/fpga_la104/common/build_fpga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/build_fpga.sh -------------------------------------------------------------------------------- /system/fpga_la104/common/input.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/input.vc -------------------------------------------------------------------------------- /system/fpga_la104/common/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/logger.h -------------------------------------------------------------------------------- /system/fpga_la104/common/override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/override.h -------------------------------------------------------------------------------- /system/fpga_la104/common/sim_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/sim_main.cpp -------------------------------------------------------------------------------- /system/fpga_la104/common/testbench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/testbench.h -------------------------------------------------------------------------------- /system/fpga_la104/common/testbench2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/testbench2.h -------------------------------------------------------------------------------- /system/fpga_la104/common/verify.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/common/verify.lds -------------------------------------------------------------------------------- /system/fpga_la104/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/fpga_la104/readme.md -------------------------------------------------------------------------------- /system/os_host/app.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/app.ld -------------------------------------------------------------------------------- /system/os_host/app_ds203.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/app_ds203.ld -------------------------------------------------------------------------------- /system/os_host/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build.sh -------------------------------------------------------------------------------- /system/os_host/build_ds203.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build_ds203.sh -------------------------------------------------------------------------------- /system/os_host/build_ds203hd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build_ds203hd.sh -------------------------------------------------------------------------------- /system/os_host/build_ds213.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build_ds213.sh -------------------------------------------------------------------------------- /system/os_host/build_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build_la104.sh -------------------------------------------------------------------------------- /system/os_host/build_la104_nousb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/build_la104_nousb.sh -------------------------------------------------------------------------------- /system/os_host/cp_ds203.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/cp_ds203.sh -------------------------------------------------------------------------------- /system/os_host/cp_ds213.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/cp_ds213.sh -------------------------------------------------------------------------------- /system/os_host/cp_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/cp_la104.sh -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_app.c -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_app.h -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_conf.h -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_desc.c -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_desc.h -------------------------------------------------------------------------------- /system/os_host/library/CDC/cdcusb_endp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/CDC/cdcusb_endp.c -------------------------------------------------------------------------------- /system/os_host/library/elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/elf/elf.h -------------------------------------------------------------------------------- /system/os_host/library/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/fatfs/diskio.h -------------------------------------------------------------------------------- /system/os_host/library/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/fatfs/ff.c -------------------------------------------------------------------------------- /system/os_host/library/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/fatfs/ff.h -------------------------------------------------------------------------------- /system/os_host/library/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/fatfs/ffconf.h -------------------------------------------------------------------------------- /system/os_host/library/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/fatfs/integer.h -------------------------------------------------------------------------------- /system/os_host/library/flash/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/all.h -------------------------------------------------------------------------------- /system/os_host/library/flash/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/flash.c -------------------------------------------------------------------------------- /system/os_host/library/flash/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/flash.h -------------------------------------------------------------------------------- /system/os_host/library/flash/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/helper.c -------------------------------------------------------------------------------- /system/os_host/library/flash/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/helper.h -------------------------------------------------------------------------------- /system/os_host/library/flash/ihex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/ihex.c -------------------------------------------------------------------------------- /system/os_host/library/flash/ihex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/flash/ihex.h -------------------------------------------------------------------------------- /system/os_host/library/spf/spf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/spf/spf.c -------------------------------------------------------------------------------- /system/os_host/library/spf/spf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/library/spf/spf.h -------------------------------------------------------------------------------- /system/os_host/source/bios/Bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/Bios.h -------------------------------------------------------------------------------- /system/os_host/source/bios/adc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/adc.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/dac.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/dbg.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/fat.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/fat.h -------------------------------------------------------------------------------- /system/os_host/source/bios/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/font.h -------------------------------------------------------------------------------- /system/os_host/source/bios/gpio.cpp: -------------------------------------------------------------------------------- 1 | #if defined(LA104) 2 | #include "la104/gpio.cpp" 3 | #endif 4 | -------------------------------------------------------------------------------- /system/os_host/source/bios/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/imports.c -------------------------------------------------------------------------------- /system/os_host/source/bios/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/imports.h -------------------------------------------------------------------------------- /system/os_host/source/bios/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/key.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/la104/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/la104/lcd.h -------------------------------------------------------------------------------- /system/os_host/source/bios/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/lcd.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/memory.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/os.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/private.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/sys.cpp -------------------------------------------------------------------------------- /system/os_host/source/bios/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/bios/usb.cpp -------------------------------------------------------------------------------- /system/os_host/source/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/crash.h -------------------------------------------------------------------------------- /system/os_host/source/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/crc.h -------------------------------------------------------------------------------- /system/os_host/source/framework/Rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/framework/Rgb.h -------------------------------------------------------------------------------- /system/os_host/source/framework/Wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/framework/Wnd.h -------------------------------------------------------------------------------- /system/os_host/source/gui/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Controls.h -------------------------------------------------------------------------------- /system/os_host/source/gui/Design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Design.h -------------------------------------------------------------------------------- /system/os_host/source/gui/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Gui.cpp -------------------------------------------------------------------------------- /system/os_host/source/gui/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Gui.h -------------------------------------------------------------------------------- /system/os_host/source/gui/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/MessageBox.h -------------------------------------------------------------------------------- /system/os_host/source/gui/Shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Shapes.cpp -------------------------------------------------------------------------------- /system/os_host/source/gui/Shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/gui/Shapes.h -------------------------------------------------------------------------------- /system/os_host/source/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/interrupt.c -------------------------------------------------------------------------------- /system/os_host/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/main.cpp -------------------------------------------------------------------------------- /system/os_host/source/main/Execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/main/Execute.cpp -------------------------------------------------------------------------------- /system/os_host/source/main/Execute.h: -------------------------------------------------------------------------------- 1 | #include "framework/Wnd.h" 2 | uint32_t ElfExecute( char* strName ); 3 | -------------------------------------------------------------------------------- /system/os_host/source/main/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/main/Shared.h -------------------------------------------------------------------------------- /system/os_host/source/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/startup.c -------------------------------------------------------------------------------- /system/os_host/source/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/stm32f10x_conf.h -------------------------------------------------------------------------------- /system/os_host/source/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/tokenizer.h -------------------------------------------------------------------------------- /system/os_host/source/usb/Disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/usb/Disk.c -------------------------------------------------------------------------------- /system/os_host/source/usb/Disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/usb/Disk.h -------------------------------------------------------------------------------- /system/os_host/source/usb/UsbTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_host/source/usb/UsbTypes.h -------------------------------------------------------------------------------- /system/os_library/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_library/build.sh -------------------------------------------------------------------------------- /system/os_library/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_library/exports.js -------------------------------------------------------------------------------- /system/os_library/include/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_library/include/library.h -------------------------------------------------------------------------------- /system/os_library/source/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_library/source/library.cpp -------------------------------------------------------------------------------- /system/os_platform/mac_sdl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_platform/mac_sdl/build.sh -------------------------------------------------------------------------------- /system/os_platform/mac_sdl/data/mnt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_platform/mac_sdl/data/mnt.sh -------------------------------------------------------------------------------- /system/os_platform/wasm/html/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_platform/wasm/html/server.sh -------------------------------------------------------------------------------- /system/os_platform/win32_sdl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/os_platform/win32_sdl/readme.md -------------------------------------------------------------------------------- /system/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build.sh -------------------------------------------------------------------------------- /system/scripts/build_applist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_applist.sh -------------------------------------------------------------------------------- /system/scripts/build_apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_apps.sh -------------------------------------------------------------------------------- /system/scripts/build_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_check.sh -------------------------------------------------------------------------------- /system/scripts/build_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_full.sh -------------------------------------------------------------------------------- /system/scripts/build_m1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_m1.sh -------------------------------------------------------------------------------- /system/scripts/build_minimal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_minimal.sh -------------------------------------------------------------------------------- /system/scripts/build_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_os.sh -------------------------------------------------------------------------------- /system/scripts/build_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/build_wasm.sh -------------------------------------------------------------------------------- /system/scripts/generate_applist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/generate_applist.js -------------------------------------------------------------------------------- /system/scripts/generate_memlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/generate_memlist.sh -------------------------------------------------------------------------------- /system/scripts/imagefile_copy_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/imagefile_copy_la104.sh -------------------------------------------------------------------------------- /system/scripts/imagefile_make_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/imagefile_make_la104.sh -------------------------------------------------------------------------------- /system/scripts/imagefile_test_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/imagefile_test_la104.sh -------------------------------------------------------------------------------- /system/scripts/release_image_ds203.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/release_image_ds203.sh -------------------------------------------------------------------------------- /system/scripts/release_image_ds213.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/release_image_ds213.sh -------------------------------------------------------------------------------- /system/scripts/release_image_la104.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/system/scripts/release_image_la104.sh -------------------------------------------------------------------------------- /tools/crc32/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/crc32/build.sh -------------------------------------------------------------------------------- /tools/crc32/force.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/crc32/force.js -------------------------------------------------------------------------------- /tools/crc32/forcecrc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/crc32/forcecrc32.c -------------------------------------------------------------------------------- /tools/dfuload/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/build.sh -------------------------------------------------------------------------------- /tools/dfuload/dfuload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/dfuload.cpp -------------------------------------------------------------------------------- /tools/dfuload/fat12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/fat12.h -------------------------------------------------------------------------------- /tools/dfuload/fat12tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/fat12tool.cpp -------------------------------------------------------------------------------- /tools/dfuload/format.sh: -------------------------------------------------------------------------------- 1 | sudo newfs_msdos -F 12 -v la104 -O "MSDOS5.0" -S 4096 /dev/disk2 -------------------------------------------------------------------------------- /tools/dfuload/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/readme.txt -------------------------------------------------------------------------------- /tools/dfuload/snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/dfuload/snapshot.sh -------------------------------------------------------------------------------- /tools/elfdump/BufferedIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/BufferedIo.h -------------------------------------------------------------------------------- /tools/elfdump/Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/Serialize.cpp -------------------------------------------------------------------------------- /tools/elfdump/Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/Serialize.h -------------------------------------------------------------------------------- /tools/elfdump/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/Types.h -------------------------------------------------------------------------------- /tools/elfdump/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/build.sh -------------------------------------------------------------------------------- /tools/elfdump/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/elf.h -------------------------------------------------------------------------------- /tools/elfdump/elfdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/elfdump -------------------------------------------------------------------------------- /tools/elfdump/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfdump/main.cpp -------------------------------------------------------------------------------- /tools/elfstrip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfstrip/CMakeLists.txt -------------------------------------------------------------------------------- /tools/elfstrip/build.sh: -------------------------------------------------------------------------------- 1 | g++ main.cpp -o elfstrip -------------------------------------------------------------------------------- /tools/elfstrip/elfstrip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfstrip/elfstrip.exe -------------------------------------------------------------------------------- /tools/elfstrip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/elfstrip/main.cpp -------------------------------------------------------------------------------- /tools/fpga/convert_hex_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/convert_hex_bin.sh -------------------------------------------------------------------------------- /tools/fpga/ds203_8mb_hwV272-V261FPGA/CFG_FPGA.ADR: -------------------------------------------------------------------------------- 1 | 0x0802C000 2 | -------------------------------------------------------------------------------- /tools/fpga/ds213_v20/ds213v20.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/ds213_v20/ds213v20.elf -------------------------------------------------------------------------------- /tools/fpga/ds213_v20/ds213v20_fpga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/ds213_v20/ds213v20_fpga.bin -------------------------------------------------------------------------------- /tools/fpga/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/extract.sh -------------------------------------------------------------------------------- /tools/fpga/fpgahex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/fpgahex.sh -------------------------------------------------------------------------------- /tools/fpga/ocd_full_flash_readout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/ocd_full_flash_readout.sh -------------------------------------------------------------------------------- /tools/fpga/ocd_full_flash_write.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/fpga/ocd_full_flash_write.sh -------------------------------------------------------------------------------- /tools/genelf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/genelf/build.sh -------------------------------------------------------------------------------- /tools/genelf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/genelf/elf.h -------------------------------------------------------------------------------- /tools/genelf/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/genelf/main.cpp -------------------------------------------------------------------------------- /tools/genelf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/genelf/readme.md -------------------------------------------------------------------------------- /tools/midiconv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/midiconv/build.sh -------------------------------------------------------------------------------- /tools/midiconv/midiconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/midiconv/midiconv.cpp -------------------------------------------------------------------------------- /tools/openocd/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/openocd/launch.json -------------------------------------------------------------------------------- /tools/openocd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/openocd/readme.md -------------------------------------------------------------------------------- /tools/prerender/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/prerender/build.sh -------------------------------------------------------------------------------- /tools/prerender/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/prerender/main.cpp -------------------------------------------------------------------------------- /tools/prerender/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/prerender/reader.h -------------------------------------------------------------------------------- /tools/prerender/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/prerender/save.h -------------------------------------------------------------------------------- /tools/prerender/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/prerender/terminal.cpp -------------------------------------------------------------------------------- /tools/recovery/RECOVERY281282.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/recovery/RECOVERY281282.zip -------------------------------------------------------------------------------- /tools/recovery/hwV272-V261FPGA.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/recovery/hwV272-V261FPGA.zip -------------------------------------------------------------------------------- /tools/recovery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/recovery/readme.md -------------------------------------------------------------------------------- /tools/rtl433/build/app_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/build/app_wasm.js -------------------------------------------------------------------------------- /tools/rtl433/buildwasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/buildwasm.sh -------------------------------------------------------------------------------- /tools/rtl433/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/index.html -------------------------------------------------------------------------------- /tools/rtl433/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/readme.md -------------------------------------------------------------------------------- /tools/rtl433/rtltest/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/alloc.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/alloc.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/bitbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/bitbuffer.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/bitbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/bitbuffer.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/data.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/data.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/decoder.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/decoder_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/decoder_util.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/decoder_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/decoder_util.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/acurite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/acurite.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/alecto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/alecto.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/blyss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/blyss.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/bt_rain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/bt_rain.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/cardin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/cardin.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/chuango.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/chuango.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/danfoss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/danfoss.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/dsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/dsc.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/elv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/elv.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/emontx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/emontx.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/esa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/esa.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/flex.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/ft004b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/ft004b.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/hideki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/hideki.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/ht680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/ht680.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/kedsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/kedsum.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/kerui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/kerui.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/m_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/m_bus.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/mebus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/mebus.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/newkaku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/newkaku.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/nexa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/nexa.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/nexus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/nexus.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/philips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/philips.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/proove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/proove.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/quhwa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/quhwa.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/rftech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/rftech.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/s3318p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/s3318p.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/ttx201.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/ttx201.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/waveman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/waveman.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/wt0124.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/wt0124.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/wt450.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/wt450.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/x10_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/x10_rf.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/devices/x10_sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/devices/x10_sec.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/main.cpp -------------------------------------------------------------------------------- /tools/rtl433/rtltest/pulse_demod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/pulse_demod.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/pulse_demod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/pulse_demod.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/pulse_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/pulse_detect.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/r_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/r_device.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/rtl_433_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/rtl_433_devices.h -------------------------------------------------------------------------------- /tools/rtl433/rtltest/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/util.c -------------------------------------------------------------------------------- /tools/rtl433/rtltest/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/rtl433/rtltest/util.h -------------------------------------------------------------------------------- /tools/shellicons/antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/antenna.png -------------------------------------------------------------------------------- /tools/shellicons/appelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/appelf.png -------------------------------------------------------------------------------- /tools/shellicons/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/application.png -------------------------------------------------------------------------------- /tools/shellicons/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/arduino.png -------------------------------------------------------------------------------- /tools/shellicons/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/atom.png -------------------------------------------------------------------------------- /tools/shellicons/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/basic.png -------------------------------------------------------------------------------- /tools/shellicons/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/binary.png -------------------------------------------------------------------------------- /tools/shellicons/bineye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/bineye.png -------------------------------------------------------------------------------- /tools/shellicons/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/build.sh -------------------------------------------------------------------------------- /tools/shellicons/build_c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/build_c.sh -------------------------------------------------------------------------------- /tools/shellicons/build_d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/build_d.sh -------------------------------------------------------------------------------- /tools/shellicons/build_e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/build_e.sh -------------------------------------------------------------------------------- /tools/shellicons/build_f.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/build_f.sh -------------------------------------------------------------------------------- /tools/shellicons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/camera.png -------------------------------------------------------------------------------- /tools/shellicons/charmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/charmap.png -------------------------------------------------------------------------------- /tools/shellicons/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/chip.png -------------------------------------------------------------------------------- /tools/shellicons/circuitpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/circuitpython.png -------------------------------------------------------------------------------- /tools/shellicons/clean.sh: -------------------------------------------------------------------------------- 1 | rm *.bmp -------------------------------------------------------------------------------- /tools/shellicons/co2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/co2.png -------------------------------------------------------------------------------- /tools/shellicons/dcf77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/dcf77.png -------------------------------------------------------------------------------- /tools/shellicons/dht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/dht.png -------------------------------------------------------------------------------- /tools/shellicons/eeprom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/eeprom.png -------------------------------------------------------------------------------- /tools/shellicons/eink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/eink.png -------------------------------------------------------------------------------- /tools/shellicons/fileelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/fileelf.png -------------------------------------------------------------------------------- /tools/shellicons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/folder.png -------------------------------------------------------------------------------- /tools/shellicons/fpga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/fpga.png -------------------------------------------------------------------------------- /tools/shellicons/fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/fractal.png -------------------------------------------------------------------------------- /tools/shellicons/gabuino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/gabuino.png -------------------------------------------------------------------------------- /tools/shellicons/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/games.png -------------------------------------------------------------------------------- /tools/shellicons/genie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/genie.png -------------------------------------------------------------------------------- /tools/shellicons/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/hammer.png -------------------------------------------------------------------------------- /tools/shellicons/hunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/hunter.png -------------------------------------------------------------------------------- /tools/shellicons/i2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/i2c.png -------------------------------------------------------------------------------- /tools/shellicons/imgAnalyser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/imgAnalyser.png -------------------------------------------------------------------------------- /tools/shellicons/imgSeq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/imgSeq.png -------------------------------------------------------------------------------- /tools/shellicons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/info.png -------------------------------------------------------------------------------- /tools/shellicons/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/magnifier.png -------------------------------------------------------------------------------- /tools/shellicons/manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/manager.png -------------------------------------------------------------------------------- /tools/shellicons/measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/measure.png -------------------------------------------------------------------------------- /tools/shellicons/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/midi.png -------------------------------------------------------------------------------- /tools/shellicons/motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/motor.png -------------------------------------------------------------------------------- /tools/shellicons/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/mouse.png -------------------------------------------------------------------------------- /tools/shellicons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/music.png -------------------------------------------------------------------------------- /tools/shellicons/oscillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/oscillo.png -------------------------------------------------------------------------------- /tools/shellicons/pasteur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/pasteur.png -------------------------------------------------------------------------------- /tools/shellicons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/picture.png -------------------------------------------------------------------------------- /tools/shellicons/ps2keyb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/ps2keyb.png -------------------------------------------------------------------------------- /tools/shellicons/pulseview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/pulseview.png -------------------------------------------------------------------------------- /tools/shellicons/radioactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/radioactive.png -------------------------------------------------------------------------------- /tools/shellicons/sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/sdcard.png -------------------------------------------------------------------------------- /tools/shellicons/serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/serial.png -------------------------------------------------------------------------------- /tools/shellicons/servo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/servo.png -------------------------------------------------------------------------------- /tools/shellicons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/settings.png -------------------------------------------------------------------------------- /tools/shellicons/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/signal.png -------------------------------------------------------------------------------- /tools/shellicons/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/spectrum.png -------------------------------------------------------------------------------- /tools/shellicons/temper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/temper.png -------------------------------------------------------------------------------- /tools/shellicons/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/usb.png -------------------------------------------------------------------------------- /tools/shellicons/usb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/usb2.png -------------------------------------------------------------------------------- /tools/shellicons/ws2812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/shellicons/ws2812.png -------------------------------------------------------------------------------- /tools/stm32flash/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/stm32flash/flash.sh -------------------------------------------------------------------------------- /tools/stm32flash/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/stm32flash/readme.txt -------------------------------------------------------------------------------- /tools/stm32flash/stm32flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabonator/LA104/HEAD/tools/stm32flash/stm32flash --------------------------------------------------------------------------------