diff options
author | root <root@new-fish.medaka.james.internal> | 2025-08-06 21:09:44 +0100 |
---|---|---|
committer | root <root@new-fish.medaka.james.internal> | 2025-08-06 21:09:44 +0100 |
commit | 4470dfba4fb0b940fd4c056263ca78af92532a61 (patch) | |
tree | 5a92ba1cafe6b13e7037766ca6f171591eb1fb2e /fpga/hp_lcd_driver/artix7.mk | |
parent | af2641d5d4a6c1ee63d24d1ef7038cb9aabcaa40 (diff) | |
download | hp_instrument_lcds-4470dfba4fb0b940fd4c056263ca78af92532a61.tar.gz hp_instrument_lcds-4470dfba4fb0b940fd4c056263ca78af92532a61.tar.bz2 hp_instrument_lcds-4470dfba4fb0b940fd4c056263ca78af92532a61.zip |
Wednesday's progress - happy working a7, changes to bt475 hat
Diffstat (limited to 'fpga/hp_lcd_driver/artix7.mk')
-rw-r--r-- | fpga/hp_lcd_driver/artix7.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fpga/hp_lcd_driver/artix7.mk b/fpga/hp_lcd_driver/artix7.mk index 578468c..8c83e78 100644 --- a/fpga/hp_lcd_driver/artix7.mk +++ b/fpga/hp_lcd_driver/artix7.mk @@ -7,6 +7,7 @@ IP= \ BIT=${BUILD}/out/hp_lcd_driver.bit +BIN=${BUILD}/out/hp_lcd_driver.bin IP_STAMP=${IP:artix7_ip/%.tcl=${BUILD}/ip/%/stamp} SRCS= ${IP} \ @@ -35,11 +36,12 @@ SRCS= ${IP} \ OPENOCD=openocd -f openocd/${BOARD}.cfg -default: ${BUILD}/build.stamp +default: ${BUILD}/build.stamp ${BUILD}/build.stamp:${SRCS} ${IP_STAMP} mkdir -p ${BUILD} (cd ${BUILD} && BOARD=${BOARD} ../scripts/vivado -mode batch -source ../artix7_hp_lcd_driver.tcl) + scripts/xilinx_bit_to_bin.pl ${BIT} ${BIN} touch $@ ${BUILD}/ip/%/stamp:artix7_ip/%.tcl |