-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
3,372 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
| Module | Partition | Slices | Slice Reg | LUTs | LUTRAM | BRAM | MULT18X18 | BUFG | DCM | Full Hierarchical Name | | ||
| +u_jt51 v1.0 | | 60/2001 | 62/1197 | 2/2697 | 0/446 | 0/1 | 0/2 | 1/1 | 0/0 | ymplayer/u_jt51 | | ||
| +u_jt51 v1.1 | | 108/2029 | 62/1270 | 52/2504 | 0/439 | 0/1 | 0/2 | 1/1 | 0/0 | ymplayer/u_jt51 | |
3,349 changes: 3,349 additions & 0 deletions
3,349
syn/xilinx/contra_snd/doc/ymplayer_map jt51 v1.0.mrp
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
#!/bin/bash | ||
stty 921600 raw -echo | ||
UART=/dev/ttyUSB0 | ||
stty -F $UART 921600 raw -echo | ||
echo Volcando... | ||
cat 21j-0-1 > $UART | ||
echo Volcado completo | ||
|
||
i=1 | ||
while [ $i -lt 31 ]; do | ||
x=$(printf "%X" $i) | ||
echo Cancion 0x$x | ||
echo -e -n "\x$x" > $UART | ||
timeout 8m cat $UART > $x.jtx | ||
echo -e -n "\x$FF" > $UART | ||
i=$((i+1)) | ||
done | ||
# echo Volcado completo | ||
|
||
# i=1 | ||
# while [ $i -lt 31 ]; do | ||
# x=$(printf "%X" $i) | ||
# echo Cancion 0x$x | ||
# echo -e -n "\x$x" > $UART | ||
# timeout 8m cat $UART > $x.jtx | ||
# echo -e -n "\x$FF" > $UART | ||
# i=$((i+1)) | ||
# done | ||
|
||
echo -e -n "\x1" > $UART | ||
|
||
reset |