├── .gitignore ├── GNUmakefile ├── README.md ├── acquisition.c ├── acquisition.h ├── bsp ├── cache.c ├── cache.h ├── dma.c ├── dma.h ├── fx3.ld ├── gctl.c ├── gctl.h ├── gpif.c ├── gpif.h ├── gpio.c ├── gpio.h ├── irq.c ├── irq.h ├── regaccess.h ├── uart.c ├── uart.h ├── usb.c ├── usb.h ├── util.c ├── util.h └── vectors.S ├── command.h ├── descriptors.c ├── descriptors.h ├── elf2img.py ├── main.c └── rdb ├── dma.h ├── gctl.h ├── generator ├── convert.py └── convert.sh ├── gpif.h ├── gpio.h ├── i2c.h ├── i2s.h ├── lpp.h ├── pib.h ├── pport.h ├── readme.txt ├── spi.h ├── uart.h ├── uib.h ├── uibin.h └── vic.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/GNUmakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/README.md -------------------------------------------------------------------------------- /acquisition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/acquisition.c -------------------------------------------------------------------------------- /acquisition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/acquisition.h -------------------------------------------------------------------------------- /bsp/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/cache.c -------------------------------------------------------------------------------- /bsp/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/cache.h -------------------------------------------------------------------------------- /bsp/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/dma.c -------------------------------------------------------------------------------- /bsp/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/dma.h -------------------------------------------------------------------------------- /bsp/fx3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/fx3.ld -------------------------------------------------------------------------------- /bsp/gctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gctl.c -------------------------------------------------------------------------------- /bsp/gctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gctl.h -------------------------------------------------------------------------------- /bsp/gpif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gpif.c -------------------------------------------------------------------------------- /bsp/gpif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gpif.h -------------------------------------------------------------------------------- /bsp/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gpio.c -------------------------------------------------------------------------------- /bsp/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/gpio.h -------------------------------------------------------------------------------- /bsp/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/irq.c -------------------------------------------------------------------------------- /bsp/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/irq.h -------------------------------------------------------------------------------- /bsp/regaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/regaccess.h -------------------------------------------------------------------------------- /bsp/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/uart.c -------------------------------------------------------------------------------- /bsp/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/uart.h -------------------------------------------------------------------------------- /bsp/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/usb.c -------------------------------------------------------------------------------- /bsp/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/usb.h -------------------------------------------------------------------------------- /bsp/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/util.c -------------------------------------------------------------------------------- /bsp/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/util.h -------------------------------------------------------------------------------- /bsp/vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/bsp/vectors.S -------------------------------------------------------------------------------- /command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/command.h -------------------------------------------------------------------------------- /descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/descriptors.c -------------------------------------------------------------------------------- /descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/descriptors.h -------------------------------------------------------------------------------- /elf2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/elf2img.py -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/main.c -------------------------------------------------------------------------------- /rdb/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/dma.h -------------------------------------------------------------------------------- /rdb/gctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/gctl.h -------------------------------------------------------------------------------- /rdb/generator/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/generator/convert.py -------------------------------------------------------------------------------- /rdb/generator/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/generator/convert.sh -------------------------------------------------------------------------------- /rdb/gpif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/gpif.h -------------------------------------------------------------------------------- /rdb/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/gpio.h -------------------------------------------------------------------------------- /rdb/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/i2c.h -------------------------------------------------------------------------------- /rdb/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/i2s.h -------------------------------------------------------------------------------- /rdb/lpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/lpp.h -------------------------------------------------------------------------------- /rdb/pib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/pib.h -------------------------------------------------------------------------------- /rdb/pport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/pport.h -------------------------------------------------------------------------------- /rdb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/readme.txt -------------------------------------------------------------------------------- /rdb/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/spi.h -------------------------------------------------------------------------------- /rdb/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/uart.h -------------------------------------------------------------------------------- /rdb/uib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/uib.h -------------------------------------------------------------------------------- /rdb/uibin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/uibin.h -------------------------------------------------------------------------------- /rdb/vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldin/fx3lafw/HEAD/rdb/vic.h --------------------------------------------------------------------------------