mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-08-14 17:05:54 +10:00
This is ANGIE's firmware and bitstream code. The 'Embeded C' code is based on the openULINK project. The hdl bitstream source code is for the spartan-6 FPGA included in ANGIE. Since ANGIE has a different microcontroller (EZ-USB FX2) than openULINK (EZ-USB AN2131), the registers file (reg_ezusb.h) has been changed completely, so are the descriptors, interruptions and the endpoints configuration. Change-Id: I70590c7c58bac6f1939c5ffba57e87d86850664d Signed-off-by: Ahmed BOUDJELIDA <aboudjelida@nanoxplore.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7701 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
15 lines
449 B
Bash
15 lines
449 B
Bash
#!/bin/bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2023 by NanoXplore, France - all rights reserved
|
|
|
|
[ -z "${XILINX_HOME}" ] && export XILINX_HOME=/home/software/Xilinx/ISE/14.7/ISE_DS/ISE
|
|
export PATH="$XILINX_HOME:$PATH"
|
|
echo "SET XILINX_HOME to ${XILINX_HOME}"
|
|
# This is needed for isim
|
|
XILINX_HOME_BASE=${XILINX_HOME}/..
|
|
for part in common EDK PlanAhead ISE
|
|
do
|
|
el=${XILINX_HOME_BASE}/${part}
|
|
. ${el}/.settings64.sh ${el}
|
|
done
|