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

Subversion Repositories openarty

[/] [openarty/] [trunk/] [sw/] [host/] [program.sh] - Blame information for rev 22

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 22 dgisselq
#!/bin/bash
2
################################################################################
3
##
4
## Filename:    program.sh
5
##
6
## Project:     OpenArty, an entirely open SoC based upon the Arty platform
7
##
8
## Purpose:     To install a new program into the Arty, using the main
9
##              programming slot (slot 0).
10
##
11
## Creator:     Dan Gisselquist, Ph.D.
12
##              Gisselquist Technology, LLC
13
##
14
################################################################################
15
##
16
## Copyright (C) 2015-2016, Gisselquist Technology, LLC
17
##
18
## This program is free software (firmware): you can redistribute it and/or
19
## modify it under the terms of  the GNU General Public License as published
20
## by the Free Software Foundation, either version 3 of the License, or (at
21
## your option) any later version.
22
##
23
## This program is distributed in the hope that it will be useful, but WITHOUT
24
## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
25
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26
## for more details.
27
##
28
## You should have received a copy of the GNU General Public License along
29
## with this program.  (It's in the $(ROOT)/doc directory, run make with no
30
## target there if the PDF file isn't present.)  If not, see
31
## <http://www.gnu.org/licenses/> for a copy.
32
##
33
## License:     GPL, v3, as defined and found on www.gnu.org,
34
##              http://www.gnu.org/licenses/gpl.html
35
##
36
##
37
################################################################################
38
##
39
##
40
export PATH=$PATH:.
41
export BINFILE=../../xilinx/openarty/openarty.runs/impl_1/fasttop.bin
42
 
43
WBREGS=wbregs
44
WBPROG=wbprogram
45
 
46
#
47
$WBREGS qspiv 0x8b
48
#
49
$WBREGS clock 0x023fffff        # Show the stopwatch
50
$WBREGS stopwatch 2     # Clear and stop the stopwatch
51
$WBREGS stopwatch 1     # Start the stopwatch
52
echo $WBPROG @0x0400000 $BINFILE
53
$WBPROG @0x0400000 $BINFILE
54
$WBREGS stopwatch 0     # Stop the stopwatch, we are done
55
$WBREGS stopwatch       # Print out the time on the stopwatch
56
 
57
$WBREGS wbstar 0
58
$WBREGS fpgacmd 15
59
sleep 1
60
 
61
 
62
RED=0x00ff0000
63
GREEN=0x0000ff00
64
WHITE=0x000f0f0f
65
BLACK=0x00000000
66
DIMGREEN=0x00001f00
67
 
68
$WBREGS led 0x0f
69
$WBREGS clrled0 $RED
70
$WBREGS clrled1 $RED
71
$WBREGS clrled2 $RED
72
$WBREGS clrled3 $RED
73
 
74
sleep 1
75
$WBREGS clrled0 $GREEN
76
$WBREGS led 0x10
77
sleep 1
78
$WBREGS clrled1 $GREEN
79
$WBREGS clrled0 $DIMGREEN
80
$WBREGS led 0x20
81
sleep 1
82
$WBREGS clrled2 $GREEN
83
$WBREGS clrled1 $DIMGREEN
84
$WBREGS led 0x40
85
 
86
if [[ -x ./wbsettime ]]; then
87
  ./wbsettime
88
fi
89
 
90
$WBREGS clrled3 $GREEN
91
$WBREGS clrled2 $DIMGREEN
92
$WBREGS led 0x80
93
sleep 1
94
$WBREGS clrled0 $WHITE
95
$WBREGS clrled1 $BLACK
96
$WBREGS clrled2 $BLACK
97
$WBREGS clrled3 $WHITE
98
$WBREGS led 0x00
99
 
100
 

powered by: WebSVN 2.1.0

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