├── LICENSE ├── README.md ├── TB-03F-KIT-TLSRPGM.png ├── TelinkSWire ├── README.md ├── Table7-1.gif ├── TelinkSWire.pdf └── figure7-1.gif ├── TlsrPgm.py └── sources ├── SampleSwsPrintf ├── .cproject ├── .externalToolBuilders │ └── org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder.launch ├── .project ├── .settings │ ├── org.eclipse.cdt.codan.core.prefs │ ├── org.eclipse.cdt.core.prefs │ └── org.eclipse.core.resources.prefs ├── TelinkIDEmk.cmd ├── makefile ├── sdk │ ├── 8258 │ │ ├── adc.c │ │ ├── adc.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── analog.c │ │ ├── analog.h │ │ ├── aoa.h │ │ ├── audio.c │ │ ├── audio.h │ │ ├── boot.link │ │ ├── bsp.c │ │ ├── bsp.h │ │ ├── clock.c │ │ ├── clock.h │ │ ├── compiler.h │ │ ├── cstartup_825x.S │ │ ├── dfifo.h │ │ ├── div_mod.S │ │ ├── dma.h │ │ ├── driver_8258.h │ │ ├── emi.c │ │ ├── emi.h │ │ ├── flash.c │ │ ├── flash.h │ │ ├── gpio.h │ │ ├── gpio_8258.c │ │ ├── gpio_8258.h │ │ ├── gpio_default_8258.h │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── irq.h │ │ ├── lib_rf_pm.a │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── pga.h │ │ ├── pm.h │ │ ├── printf.c │ │ ├── pwm.h │ │ ├── qdec.c │ │ ├── qdec.h │ │ ├── random.c │ │ ├── random.h │ │ ├── register.h │ │ ├── register_8258.h │ │ ├── rf_drv.h │ │ ├── s7816.c │ │ ├── s7816.h │ │ ├── spi.c │ │ ├── spi.h │ │ ├── spi_i.h │ │ ├── timer.c │ │ ├── timer.h │ │ ├── uart.c │ │ ├── uart.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── usb_desc.c │ │ ├── usb_desc.h │ │ ├── usbhw.c │ │ ├── usbhw.h │ │ ├── usbhw_i.h │ │ ├── usbstd │ │ │ ├── AudioClassCommon.h │ │ │ ├── CDCClassCommon.h │ │ │ ├── CDCClassDevice.h │ │ │ ├── HIDClassCommon.h │ │ │ ├── HIDClassDevice.h │ │ │ ├── HIDReportData.h │ │ │ ├── MassStorageClassCommon.h │ │ │ ├── PrinterClassCommon.h │ │ │ ├── StdRequestType.h │ │ │ ├── USBController.h │ │ │ ├── stdDescriptors.h │ │ │ ├── types.h │ │ │ └── usbstd.h │ │ ├── watchdog.c │ │ └── watchdog.h │ └── make │ │ └── sdk_8258.mk ├── src │ ├── app.c │ ├── app_config.h │ ├── boot.link │ ├── main.c │ ├── project.mk │ ├── sws_printf.c │ ├── sws_printf.h │ └── version.h ├── sws_print.bin └── tools │ ├── TlsrMemInfo.py │ ├── TlsrPgm.py │ ├── TlsrRetMemAddr.py │ └── tl_check_fw.py ├── UART2SWire ├── .cproject ├── .project ├── Include │ ├── analog.h │ ├── app_config.h │ ├── bit.h │ ├── clock.h │ ├── common.h │ ├── compiler.h │ ├── crc.h │ ├── flash.h │ ├── gpio.h │ ├── gpio_8258.h │ ├── macro_trick.h │ ├── main.h │ ├── register_8258.h │ ├── swire.h │ └── types.h ├── Makefile ├── README.md ├── Source │ ├── analog.c │ ├── clock.c │ ├── crc.c │ ├── main.c │ └── swire.c ├── TlsrComProg.py ├── mcu │ ├── boot_825x.link │ └── cstartup_825x_floader.S ├── sdkmake.bat ├── sdkmakeclean.bat ├── tb-0x-pgm │ ├── README.md │ ├── TlsrComProg.py │ ├── floader.bin │ └── tb_pgm.bat ├── tb_pgm.bat ├── uart2swire.bin └── uart2swire.lst └── USB2SWire ├── .cproject ├── .project ├── .settings └── org.eclipse.core.resources.prefs ├── Include ├── analog.h ├── app_config.h ├── bit.h ├── common.h ├── compiler.h ├── crc.h ├── flash.h ├── gpio.h ├── gpio_default_8267.h ├── irq_i.h ├── macro_trick.h ├── main.h ├── register_8267.h ├── spi_i.h ├── swire.h ├── types.h ├── usb.h ├── usbCDC │ ├── drivers.h │ ├── usb_cdc.h │ ├── usb_ctrl.h │ ├── usb_desc.h │ ├── usb_hw.h │ ├── usb_stdDescriptors.h │ └── usb_stdRequestType.h └── utils.h ├── Makefile ├── README.md ├── Source ├── analog.c ├── crc.c ├── flash.c ├── main.c ├── swire.c ├── ttool.c ├── usbCDC │ ├── usb_cdc.c │ ├── usb_ctrl.c │ ├── usb_desc.c │ └── usb_hw.c └── utils.c ├── TlsrMemInfo.py ├── boot.link ├── mcu ├── cstartup_826x.S └── div_mod.S ├── sdkmake.bat ├── sdkmakeclean.bat ├── usb2swire.bin └── usb2swire.lst /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/README.md -------------------------------------------------------------------------------- /TB-03F-KIT-TLSRPGM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TB-03F-KIT-TLSRPGM.png -------------------------------------------------------------------------------- /TelinkSWire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TelinkSWire/README.md -------------------------------------------------------------------------------- /TelinkSWire/Table7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TelinkSWire/Table7-1.gif -------------------------------------------------------------------------------- /TelinkSWire/TelinkSWire.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TelinkSWire/TelinkSWire.pdf -------------------------------------------------------------------------------- /TelinkSWire/figure7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TelinkSWire/figure7-1.gif -------------------------------------------------------------------------------- /TlsrPgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/TlsrPgm.py -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.cproject -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.externalToolBuilders/org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.externalToolBuilders/org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder.launch -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.project -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/TelinkIDEmk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/TelinkIDEmk.cmd -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/makefile -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/adc.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/adc.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/aes.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/aes.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/analog.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/analog.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/aoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/aoa.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/audio.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/audio.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/boot.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/boot.link -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/bsp.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/bsp.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/clock.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/clock.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/compiler.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/cstartup_825x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/cstartup_825x.S -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/dfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/dfifo.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/div_mod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/div_mod.S -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/dma.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/driver_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/driver_8258.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/emi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/emi.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/emi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/emi.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/flash.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/flash.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/gpio.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/gpio_8258.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/gpio_8258.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/gpio_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/gpio_8258.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/gpio_default_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/gpio_default_8258.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/i2c.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/i2c.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/irq.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/lib_rf_pm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/lib_rf_pm.a -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/lpc.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/lpc.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/pga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/pga.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/pm.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/printf.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/pwm.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/qdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/qdec.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/qdec.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/random.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/random.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/register.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/register_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/register_8258.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/rf_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/rf_drv.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/s7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/s7816.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/s7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/s7816.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/spi.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/spi.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/spi_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/spi_i.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/timer.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/timer.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/uart.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/uart.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usb.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usb.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usb_desc.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usb_desc.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbhw.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbhw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbhw.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbhw_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbhw_i.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/AudioClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/AudioClassCommon.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/CDCClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/CDCClassCommon.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/CDCClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/CDCClassDevice.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/HIDClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/HIDClassCommon.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/HIDClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/HIDClassDevice.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/HIDReportData.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/MassStorageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/MassStorageClassCommon.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/PrinterClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/PrinterClassCommon.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/StdRequestType.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/USBController.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/stdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/stdDescriptors.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/types.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/usbstd/usbstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/usbstd/usbstd.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/watchdog.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/8258/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/8258/watchdog.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sdk/make/sdk_8258.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sdk/make/sdk_8258.mk -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/app.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/app_config.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/boot.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/boot.link -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/main.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/project.mk -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/sws_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/sws_printf.c -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/sws_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/sws_printf.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/src/version.h -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/sws_print.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/sws_print.bin -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/tools/TlsrMemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/tools/TlsrMemInfo.py -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/tools/TlsrPgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/tools/TlsrPgm.py -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/tools/TlsrRetMemAddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/tools/TlsrRetMemAddr.py -------------------------------------------------------------------------------- /sources/SampleSwsPrintf/tools/tl_check_fw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/SampleSwsPrintf/tools/tl_check_fw.py -------------------------------------------------------------------------------- /sources/UART2SWire/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/.cproject -------------------------------------------------------------------------------- /sources/UART2SWire/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/.project -------------------------------------------------------------------------------- /sources/UART2SWire/Include/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/analog.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/app_config.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/bit.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/clock.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/common.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/compiler.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/crc.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/flash.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/gpio.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/gpio_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/gpio_8258.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/macro_trick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/macro_trick.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/main.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/register_8258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/register_8258.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/swire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/swire.h -------------------------------------------------------------------------------- /sources/UART2SWire/Include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Include/types.h -------------------------------------------------------------------------------- /sources/UART2SWire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Makefile -------------------------------------------------------------------------------- /sources/UART2SWire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/README.md -------------------------------------------------------------------------------- /sources/UART2SWire/Source/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Source/analog.c -------------------------------------------------------------------------------- /sources/UART2SWire/Source/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Source/clock.c -------------------------------------------------------------------------------- /sources/UART2SWire/Source/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Source/crc.c -------------------------------------------------------------------------------- /sources/UART2SWire/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Source/main.c -------------------------------------------------------------------------------- /sources/UART2SWire/Source/swire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/Source/swire.c -------------------------------------------------------------------------------- /sources/UART2SWire/TlsrComProg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/TlsrComProg.py -------------------------------------------------------------------------------- /sources/UART2SWire/mcu/boot_825x.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/mcu/boot_825x.link -------------------------------------------------------------------------------- /sources/UART2SWire/mcu/cstartup_825x_floader.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/mcu/cstartup_825x_floader.S -------------------------------------------------------------------------------- /sources/UART2SWire/sdkmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/sdkmake.bat -------------------------------------------------------------------------------- /sources/UART2SWire/sdkmakeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/sdkmakeclean.bat -------------------------------------------------------------------------------- /sources/UART2SWire/tb-0x-pgm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/tb-0x-pgm/README.md -------------------------------------------------------------------------------- /sources/UART2SWire/tb-0x-pgm/TlsrComProg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/tb-0x-pgm/TlsrComProg.py -------------------------------------------------------------------------------- /sources/UART2SWire/tb-0x-pgm/floader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/tb-0x-pgm/floader.bin -------------------------------------------------------------------------------- /sources/UART2SWire/tb-0x-pgm/tb_pgm.bat: -------------------------------------------------------------------------------- 1 | python3 TlsrComProg.py -p COM9 -t500 we 0 ../uart2swire.bin -------------------------------------------------------------------------------- /sources/UART2SWire/tb_pgm.bat: -------------------------------------------------------------------------------- 1 | python3 TlsrComProg.py -p COM6 -t500 -r 100 we 0 uart2swire.bin -------------------------------------------------------------------------------- /sources/UART2SWire/uart2swire.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/uart2swire.bin -------------------------------------------------------------------------------- /sources/UART2SWire/uart2swire.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/UART2SWire/uart2swire.lst -------------------------------------------------------------------------------- /sources/USB2SWire/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/.cproject -------------------------------------------------------------------------------- /sources/USB2SWire/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/.project -------------------------------------------------------------------------------- /sources/USB2SWire/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sun Oct 13 23:02:09 MSK 2019 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /sources/USB2SWire/Include/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/analog.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/app_config.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/bit.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/common.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/compiler.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/crc.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/flash.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/gpio.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/gpio_default_8267.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/gpio_default_8267.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/irq_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/irq_i.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/macro_trick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/macro_trick.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/main.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/register_8267.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/register_8267.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/spi_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/spi_i.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/swire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/swire.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/types.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usb.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/drivers.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_cdc.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_ctrl.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_desc.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_hw.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_stdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_stdDescriptors.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/usbCDC/usb_stdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/usbCDC/usb_stdRequestType.h -------------------------------------------------------------------------------- /sources/USB2SWire/Include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Include/utils.h -------------------------------------------------------------------------------- /sources/USB2SWire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Makefile -------------------------------------------------------------------------------- /sources/USB2SWire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/README.md -------------------------------------------------------------------------------- /sources/USB2SWire/Source/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/analog.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/crc.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/flash.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/main.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/swire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/swire.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/ttool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/ttool.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/usbCDC/usb_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/usbCDC/usb_cdc.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/usbCDC/usb_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/usbCDC/usb_ctrl.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/usbCDC/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/usbCDC/usb_desc.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/usbCDC/usb_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/usbCDC/usb_hw.c -------------------------------------------------------------------------------- /sources/USB2SWire/Source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/Source/utils.c -------------------------------------------------------------------------------- /sources/USB2SWire/TlsrMemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/TlsrMemInfo.py -------------------------------------------------------------------------------- /sources/USB2SWire/boot.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/boot.link -------------------------------------------------------------------------------- /sources/USB2SWire/mcu/cstartup_826x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/mcu/cstartup_826x.S -------------------------------------------------------------------------------- /sources/USB2SWire/mcu/div_mod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/mcu/div_mod.S -------------------------------------------------------------------------------- /sources/USB2SWire/sdkmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/sdkmake.bat -------------------------------------------------------------------------------- /sources/USB2SWire/sdkmakeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/sdkmakeclean.bat -------------------------------------------------------------------------------- /sources/USB2SWire/usb2swire.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/usb2swire.bin -------------------------------------------------------------------------------- /sources/USB2SWire/usb2swire.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvvx/TLSRPGM/HEAD/sources/USB2SWire/usb2swire.lst --------------------------------------------------------------------------------