├── .gitignore ├── Hex2bix.exe ├── Makefile ├── copying.txt ├── dscr.a51 ├── eeprom.c ├── eeprom.h ├── fx2 ├── Makefile ├── delay.c ├── delay.h ├── fx2regs.h ├── fx2utils.c ├── fx2utils.h ├── i2c.c ├── i2c.h ├── isr.c ├── isr.h ├── syncdelay.h ├── timer.c ├── timer.h ├── usb_common.c ├── usb_common.h ├── usb_descriptors.h └── usb_requests.h ├── hardware.h ├── hw_basic.c ├── hw_xpcu_i.c ├── hw_xpcu_x.c ├── readme.txt ├── startup.a51 ├── usbjtag.c ├── usbjtag.hex ├── usbjtag.iic └── vectors.a51 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/.gitignore -------------------------------------------------------------------------------- /Hex2bix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/Hex2bix.exe -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/Makefile -------------------------------------------------------------------------------- /copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/copying.txt -------------------------------------------------------------------------------- /dscr.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/dscr.a51 -------------------------------------------------------------------------------- /eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/eeprom.c -------------------------------------------------------------------------------- /eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/eeprom.h -------------------------------------------------------------------------------- /fx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/Makefile -------------------------------------------------------------------------------- /fx2/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/delay.c -------------------------------------------------------------------------------- /fx2/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/delay.h -------------------------------------------------------------------------------- /fx2/fx2regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/fx2regs.h -------------------------------------------------------------------------------- /fx2/fx2utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/fx2utils.c -------------------------------------------------------------------------------- /fx2/fx2utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/fx2utils.h -------------------------------------------------------------------------------- /fx2/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/i2c.c -------------------------------------------------------------------------------- /fx2/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/i2c.h -------------------------------------------------------------------------------- /fx2/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/isr.c -------------------------------------------------------------------------------- /fx2/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/isr.h -------------------------------------------------------------------------------- /fx2/syncdelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/syncdelay.h -------------------------------------------------------------------------------- /fx2/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/timer.c -------------------------------------------------------------------------------- /fx2/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/timer.h -------------------------------------------------------------------------------- /fx2/usb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/usb_common.c -------------------------------------------------------------------------------- /fx2/usb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/usb_common.h -------------------------------------------------------------------------------- /fx2/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/usb_descriptors.h -------------------------------------------------------------------------------- /fx2/usb_requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/fx2/usb_requests.h -------------------------------------------------------------------------------- /hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/hardware.h -------------------------------------------------------------------------------- /hw_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/hw_basic.c -------------------------------------------------------------------------------- /hw_xpcu_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/hw_xpcu_i.c -------------------------------------------------------------------------------- /hw_xpcu_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/hw_xpcu_x.c -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/readme.txt -------------------------------------------------------------------------------- /startup.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/startup.a51 -------------------------------------------------------------------------------- /usbjtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/usbjtag.c -------------------------------------------------------------------------------- /usbjtag.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/usbjtag.hex -------------------------------------------------------------------------------- /usbjtag.iic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/usbjtag.iic -------------------------------------------------------------------------------- /vectors.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl3yc/fx2fw-sdcc/HEAD/vectors.a51 --------------------------------------------------------------------------------