How to burn jic files into FPGA?
A .jic file is most commonly an Intel/Altera Quartus “JTAG Indirect Configuration” image used to program the external configuration flash (EPCS/EPCQ/QSPI) through the FPGA’s JTAG , so the FPGA can boot from flash after reset/power-cycle. 0) Quick clarity: .SOF vs .JIC .sof → programs the FPGA directly (volatile). Works immediately, lost on power-off. .jic → programs the configuration flash (non-volatile). FPGA loads from flash on reboot. A) Program a .JIC into the flash (Quartus GUI) 1) Hardware + board setup Connect USB-Blaster / USB-Blaster II (or compatible) to the board’s JTAG header. Power the board. Set any board jumpers/switches to allow JTAG access (varies by board). 2) Open Quartus Programmer Tools → Programmer Click Hardware Setup… Select your cable (e.g., USB-Blaster ), then Close Set Mode = JTAG 3) Detect the JTAG chain Click Auto Detect Quartus should show your FPGA device in the chain. 4) Attach the flash de...