Line 1... |
Line 1... |
#!/bin/bash
|
#!/bin/bash
|
|
################################################################################
|
|
##
|
|
## Filename: startupex.sh
|
|
##
|
|
## Project: OpenArty, an entirely open SoC based upon the Arty platform
|
|
##
|
|
## Purpose: A simple, but rather neat, demonstration proving that the wishbone
|
|
## command capability works and that the FPGA is at least somewhat responsive.
|
|
##
|
|
## Creator: Dan Gisselquist, Ph.D.
|
|
## Gisselquist Technology, LLC
|
|
##
|
|
################################################################################
|
|
##
|
|
## Copyright (C) 2015-2016, Gisselquist Technology, LLC
|
|
##
|
|
## This program is free software (firmware): 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 MERCHANTIBILITY 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. (It's in the $(ROOT)/doc directory, run make with no
|
|
## target there if the PDF file isn't present.) If not, see
|
|
## <http://www.gnu.org/licenses/> for a copy.
|
|
##
|
|
## License: GPL, v3, as defined and found on www.gnu.org,
|
|
## http://www.gnu.org/licenses/gpl.html
|
|
##
|
|
##
|
|
################################################################################
|
|
##
|
|
##
|
|
export PATH=$PATH:.
|
|
export BINFILE=../../xilinx/openarty/openarty.runs/impl_1/fasttop.bin
|
|
|
WBREGS=host/wbregs
|
WBREGS=host/wbregs
|
RED=0x00ff0000
|
RED=0x00ff0000
|
GREEN=0x0000ff00
|
GREEN=0x0000ff00
|
WHITE=0x000f0f0f
|
WHITE=0x00070707
|
BLACK=0x00000000
|
BLACK=0x00000000
|
DIMGREEN=0x00001f00
|
DIMGREEN=0x00001f00
|
|
|
$WBREGS led 0x0f
|
$WBREGS led 0x0ff
|
|
|
$WBREGS clrled0 $RED
|
$WBREGS clrled0 $RED
|
$WBREGS clrled1 $RED
|
$WBREGS clrled1 $RED
|
$WBREGS clrled2 $RED
|
$WBREGS clrled2 $RED
|
$WBREGS clrled3 $RED
|
$WBREGS clrled3 $RED
|
|
|
sleep 1
|
sleep 1
|
$WBREGS clrled0 $GREEN
|
$WBREGS clrled0 $GREEN
|
|
$WBREGS led 0x10
|
sleep 1
|
sleep 1
|
$WBREGS clrled1 $GREEN
|
$WBREGS clrled1 $GREEN
|
$WBREGS clrled0 $DIMGREEN
|
$WBREGS clrled0 $DIMGREEN
|
|
$WBREGS led 0x20
|
sleep 1
|
sleep 1
|
$WBREGS clrled2 $GREEN
|
$WBREGS clrled2 $GREEN
|
$WBREGS clrled1 $DIMGREEN
|
$WBREGS clrled1 $DIMGREEN
|
|
$WBREGS led 0x40
|
sleep 1
|
sleep 1
|
$WBREGS clrled3 $GREEN
|
$WBREGS clrled3 $GREEN
|
$WBREGS clrled2 $DIMGREEN
|
$WBREGS clrled2 $DIMGREEN
|
|
$WBREGS led 0x80
|
sleep 1
|
sleep 1
|
$WBREGS clrled0 $WHITE
|
$WBREGS clrled0 $WHITE
|
$WBREGS clrled1 $BLACK
|
$WBREGS clrled1 $WHITE
|
$WBREGS clrled2 $BLACK
|
$WBREGS clrled2 $WHITE
|
$WBREGS clrled3 $WHITE
|
$WBREGS clrled3 $WHITE
|
$WBREGS led 0x00
|
$WBREGS led 0x00
|
|
|
|
|
|
|
No newline at end of file
|
No newline at end of file
|