OpenCores
URL https://opencores.org/ocsvn/fir_wishbone/fir_wishbone/trunk

Subversion Repositories fir_wishbone

[/] [fir_wishbone/] [trunk/] [workspaces/] [synthesis/] [quartus/] [synthesise.sh] - Rev 16

Compare with Previous | Blame | View Log

#!/bin/bash
#
#	Example bash script for Quartus synthesis, place-and-route, and design 
#		assembly.
#	
#	Author(s): 
#	- Daniel C.K. Kho, daniel.kho@opencores.org | daniel.kho@tauhop.com
#	
#	Copyright (C) 2012-2013 Authors and OPENCORES.ORG
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# This notice and disclaimer must be retained as part of this text at all times.
#
#	@dependencies: 
#	@designer: Daniel C.K. Kho [daniel.kho@gmail.com] | [daniel.kho@tauhop.com]
#	@history: @see Mercurial log for full list of changes.
#	
#	@Description:
#
 
echo $(date "+[%Y-%m-%d %H:%M:%S]: Removing previously-generated files and folders...");
cd $1;
rm -rf ./synthesise.log ./db ./incremental_db;
 
# Compile top-level design.
quartus_sh --flow compile fir | tee -ai ./synthesise.log;
 
error=false;
 
errorStr=`grep 'Error (' ./synthesise.log`
if [ `echo ${#errorStr}` -gt 0 ]
then
	echo ${errorStr};
	error=true;
fi
 
errorStr=`grep 'Error (' ./output_files/*.rpt`
if [ `echo ${#errorStr}` -gt 0 ]
then
	echo ${errorStr};
	error=true;
fi
 
if [ $error == 'true' ]
then
	echo "Build error(s) exist. Refer to report files in the output_files directory for more details. Exiting."; exit;
else
	echo $(date "+[%Y-%m-%d %H:%M:%S]: Configuring device...");
	quartus_pgm -c 'USB-Blaster [1-1.1]' -m jtag -o 'p;./output_files/fir.sof' | tee -ai ./synthesise.log;
fi
 
errorStr=`grep 'Error (' ./synthesise.log`
if [ `echo ${#errorStr}` -gt 0 ]
then
#	echo ${errorStr};
	error=true;
fi
 
errorStr=`grep 'Error (' ./output_files/*.rpt`
if [ `echo ${#errorStr}` -gt 0 ]
then
	echo ${errorStr};
	error=true;
fi
 
if [ $error == 'true' ]
then echo "Configuration error(s) exist. Refer to report files in the output_files directory for more details. Exiting."; exit;
else
	echo $(date "+[%Y-%m-%d %H:%M:%S]: Loading waveform session...");
#	quartus_stpw ./waves-spi.stp &
fi
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.