Files

copied

Scanning the repository...

Last update 5 years 4 months by Kate Temkin
Filesfirmwareapollosrc
..
boards
console.c
console.h
debug_spi.c
debug_spi.h
fpga.h
jtag.c
jtag.h
jtag_tap.c
led.h
main.c
uart.h
vendor.c
fpga.h
/** * Code for basic FPGA interfacing. * This file is part of LUNA. */ #ifndef __FPGA_H__ #define __FPGA_H__ /** * Sets up the I/O pins needed to configure the FPGA. */ void fpga_io_init(void); /** * Requests that the FPGA clear its configuration and try to reconfigure. */ void trigger_fpga_reconfiguration(void); #endif
Report a bug