Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
x393
Commits
901020c6
Commit
901020c6
authored
Mar 30, 2016
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typos
parent
51a31706
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
x393_export_c.py
py393/x393_export_c.py
+1
-2
x393.v
x393.v
+2
-2
No files found.
py393/x393_export_c.py
View file @
901020c6
...
...
@@ -880,7 +880,6 @@ class X393ExportC(object):
((
"X393_CMPRS_CBIT_CMODE_MONO1"
,
""
,
vrlg
.
CMPRS_CBIT_CMODE_MONO1
,
0
,
None
,
None
,
""
,
"Mono JPEG (not yet implemented)"
)),
((
"X393_CMPRS_CBIT_CMODE_MONO4"
,
""
,
vrlg
.
CMPRS_CBIT_CMODE_MONO4
,
0
,
None
,
None
,
""
,
"Mono, 4 blocks (2x2 macroblocks)"
)),
((
"X393_CMPRS_CBIT_CMODE_JPEG18"
,
""
,
vrlg
.
CMPRS_CBIT_CMODE_JPEG18
,
0
,
None
,
None
,
""
,
"Color 4:2:0"
)),
((
"X393_CMPRS_CBIT_CMODE_JPEG18"
,
""
,
vrlg
.
CMPRS_CBIT_CMODE_JPEG18
,
0
,
None
,
None
,
""
,
"Color 4:2:0"
)),
((
"X393_CMPRS_CBIT_FRAMES_SINGLE"
,
""
,
vrlg
.
CMPRS_CBIT_FRAMES_SINGLE
,
0
,
None
,
None
,
""
,
"Use single-frame buffer"
)),
((
"X393_CMPRS_CBIT_FRAMES_MULTI"
,
""
,
1
,
0
,
None
,
None
,
""
,
"Use multi-frame buffer"
))]
...
...
@@ -1718,7 +1717,7 @@ class X393ExportC(object):
def
_enc_i2c_tbl_addr
(
self
):
dw
=
[]
dw
.
append
((
"tbl_addr"
,
0
,
8
,
0
,
"Address/length in 64-bit words (<<3 to get byte address"
))
dw
.
append
((
"tbl_addr"
,
0
,
8
,
0
,
"Address/length in 64-bit words (<<3 to get byte address
)
"
))
dw
.
append
((
"tbl_mode"
,
vrlg
.
SENSI2C_CMD_TAND
,
2
,
3
,
"Should be 3 to select table address write mode"
))
return
dw
...
...
x393.v
View file @
901020c6
...
...
@@ -318,7 +318,7 @@ module x393 #(
wire
[
7
:
0
]
cmd_root_ad
;
// multiplexed byte-wide serialized address/data to s
al
ve devices (AL-AH-D0-D1-D2-D3), may contain less cycles
wire
[
7
:
0
]
cmd_root_ad
;
// multiplexed byte-wide serialized address/data to s
la
ve devices (AL-AH-D0-D1-D2-D3), may contain less cycles
wire
cmd_root_stb
;
// strobe marking the first of 1-6 a/d bytes and also data valid for par_waddr and par_data
wire
[
7
:
0
]
status_root_ad
;
// Root status byte-wide address/data
...
...
@@ -884,7 +884,7 @@ assign axi_grst = axi_rst_pre;
.
wr_en
(
axiwr_wen
)
,
// input
.
wdata
(
axiwr_wdata
[
31
:
0
])
,
// input[31:0]
.
busy
(
axiwr_dev_busy
)
,
// output // assign axiwr_dev_ready = ~axiwr_dev_busy; //may combine (AND) multiple sources if needed
//TODO: The following is the interface to the command sequencer
(not yet implemnted)
//TODO: The following is the interface to the command sequencer
.
cseq_waddr
(
cseq_waddr
)
,
// input[12:0] // SuppressThisWarning VivadoSynthesis: [Synth 8-3295] tying undriven pin #cmd_mux_i:cseq_waddr[13:0] to constant 0 (command sequencer not yet implemented)
.
cseq_wr_en
(
cseq_wr_en
)
,
// input // SuppressThisWarning VivadoSynthesis: [Synth 8-3295] tying undriven pin #cmd_mux_i:cseq_wr_en to constant 0 (command sequencer not yet implemented)
.
cseq_wdata
(
cseq_wdata
)
,
// input[31:0] // SuppressThisWarning VivadoSynthesis: [Synth 8-3295] tying undriven pin #cmd_mux_i:cseq_wdata[31:0] to constant 0 (command sequencer not yet implemented)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment