2020-12-10 08:49:18 -05:00
|
|
|
#!/bin/bash
|
2020-12-14 08:09:05 -05:00
|
|
|
#
|
2022-02-02 13:41:06 -05:00
|
|
|
# Copyright 2020-2022 F4PGA Authors
|
2020-12-14 08:09:05 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-12-10 08:49:18 -05:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
source ${CURRENT_DIR}/common.sh
|
|
|
|
|
|
|
|
# -- validate input ----------------------------------------------------------
|
|
|
|
|
|
|
|
function help() {
|
|
|
|
echo
|
|
|
|
echo "Build examples from the repository"
|
|
|
|
echo
|
|
|
|
echo "Syntax: $0 fpga_family [examples]..."
|
|
|
|
echo "Arguments:"
|
|
|
|
echo " fpga_family - A supported FPGA family"
|
|
|
|
echo " examples - A name of an available example"
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
|
|
|
if [[ ! $# -ge 1 ]]; then
|
|
|
|
echo "Invalid number of arguments!"
|
|
|
|
help
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# -- tuttest -----------------------------------------------------------------
|
|
|
|
|
|
|
|
fpga_family=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
examples="$@"
|
2022-06-15 20:50:27 -04:00
|
|
|
if [ -z "$examples" ]; then
|
|
|
|
case "$fpga_family" in
|
|
|
|
xc7) examples="counter picosoc litex litex_linux litex_sata button_controller timer pulse_width_led hello-a" ;;
|
|
|
|
eos-s3) examples="counter" ;;
|
|
|
|
esac
|
2020-12-10 08:49:18 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# activate conda and enter example dir
|
2022-07-31 08:06:14 -04:00
|
|
|
activate_env="docs/building-examples.rst:export-install-dir,fpga-fam-$fpga_family,conda-prep-env,f4pga-env-bin,f4pga-env-share-$fpga_family,conda-act-env"
|
2021-09-30 12:17:50 -04:00
|
|
|
snippets="${activate_env},enter-dir-$fpga_family"
|
2020-12-10 08:49:18 -05:00
|
|
|
|
2022-06-15 20:50:27 -04:00
|
|
|
case "$fpga_family" in
|
|
|
|
xc7) for example in $examples; do
|
|
|
|
case $example in
|
|
|
|
"counter") tuttest_exec ${snippets} xc7/counter_test/README.rst:example-counter-*-group ;;
|
|
|
|
"picosoc") tuttest_exec ${snippets} xc7/picosoc_demo/README.rst:example-picosoc-*-group ;;
|
|
|
|
"litex") tuttest_exec ${snippets} xc7/litex_demo/README.rst:example-litex-dir,example-litex-req,example-litex_picorv32-*-group,example-litex_vexriscv-*-group ;;
|
|
|
|
"litex_linux") tuttest_exec ${snippets} xc7/linux_litex_demo/README.rst:example-litex-*-group ;;
|
|
|
|
"litex_sata") tuttest_exec ${snippets} xc7/litex_sata_demo/README.rst:example-litex-sata-*-group ;;
|
2021-07-21 19:44:47 -04:00
|
|
|
|
2022-06-15 20:50:27 -04:00
|
|
|
#Additional examples:
|
|
|
|
"button_controller") tuttest_exec ${activate_env},enter-dir-$fpga_family xc7/additional_examples/button_controller/README.rst:additional-examples,example-debouncer-basys3 ;;
|
|
|
|
"pulse_width_led") tuttest_exec ${snippets} xc7/pulse_width_led/README.rst:example-pulse-arty-35t ;;
|
|
|
|
"timer") tuttest_exec ${snippets} xc7/timer/README.rst:example-watch-basys3 ;;
|
2021-08-27 12:53:59 -04:00
|
|
|
|
2022-06-15 20:50:27 -04:00
|
|
|
# Project F examples
|
|
|
|
"hello") for helloexample in A B C D E F G H I J; do
|
|
|
|
tuttest_exec ${activate_env} projf-makefiles/hello/hello-arty/${helloexample}/README.rst:hello-arty-${helloexample,,}
|
|
|
|
done ;;
|
|
|
|
"hello-k") for helloexample in K L; do
|
|
|
|
tuttest_exec ${activate_env} projf-makefiles/hello/hello-arty/${helloexample}/README.rst:hello-arty-${helloexample,,}
|
|
|
|
done ;;
|
|
|
|
*) echo "ERROR: Unknown example name: $example" >&2
|
|
|
|
exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
eos-s3) for example in $examples; do
|
|
|
|
case $example in
|
|
|
|
"counter") tuttest_exec ${snippets} eos-s3/btn_counter/README.rst:eos-s3-counter ;;
|
|
|
|
*) echo "ERROR: Unknown example name: $example" >&2
|
|
|
|
exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*) echo "ERROR: Unknown fpga_family: $fpga_family" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|