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
8f2f1a21
Commit
8f2f1a21
authored
Apr 19, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grounded unused mosi, fpga 03930121 (vospi)
parent
f8db9544
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
fpga_version.vh
fpga_version.vh
+2
-1
sens_lepton3.v
sensor/sens_lepton3.v
+7
-6
x393_vospi.bit
x393_vospi.bit
+0
-0
No files found.
fpga_version.vh
View file @
8f2f1a21
...
...
@@ -35,7 +35,8 @@
* contains all the components and scripts required to completely simulate it
* with at least one of the Free Software programs.
*/
parameter FPGA_VERSION = 32'h03930120; // VOSPI
parameter FPGA_VERSION = 32'h03930121; // VOSPI setting MOSI to low, according to DS
// parameter FPGA_VERSION = 32'h03930120; // VOSPI
// parameter FPGA_VERSION = 32'h03930108; // parallel - in master branch
// parameter FPGA_VERSION = 32'h03930107; // parallel - 17.4 - restored delay after linear, fixed bug, all met
// parameter FPGA_VERSION = 32'h03930110; //A serial - 17.4 - restored delay after linear, fixed bug, timing met
...
...
sensor/sens_lepton3.v
View file @
8f2f1a21
...
...
@@ -228,8 +228,8 @@ module sens_lepton3 #(
wire
crc_reset_pclk
;
wire
fake_out
;
wire
spi_mosi_int
;
// not used
//
wire fake_out;
//
wire spi_mosi_int; // not used
reg
out_en_r
;
// single paulse - single frame, level - continuous
...
...
@@ -264,8 +264,8 @@ module sens_lepton3 #(
assign
out_en_single_mclk
=
set_ctrl_r
&&
data_r
[
VOSPI_OUT_EN_SINGL
]
&&
!
mrst
;
assign
crc_reset_mclk
=
set_ctrl_r
&&
data_r
[
VOSPI_RESET_CRC
]
&&
!
mrst
;
assign
fake_out
=
set_ctrl_r
&&
data_r
[
VOSPI_FAKE_OUT
]
;
assign
spi_mosi_int
=
set_ctrl_r
&&
data_r
[
VOSPI_MOSI
]
;
// not used
///
assign fake_out = set_ctrl_r && data_r[VOSPI_FAKE_OUT];
///
assign spi_mosi_int = set_ctrl_r && data_r[VOSPI_MOSI]; // not used
assign
prsts
=
prst
|
!
lwir_mrst_pclk
[
1
]
;
...
...
@@ -406,8 +406,9 @@ module sens_lepton3 #(
)
spi_mosi_i
(
.
O
()
,
// output - currently not used
.
IO
(
spi_mosi
)
,
// inout I/O pad
.
I
(
spi_mosi_int
)
,
// input
.
T
(
!
fake_out
)
// input - always off
// .I (spi_mosi_int), // input
.
I
(
1'b0
)
,
// input
.
T
(
1'b0
)
// input - always off
)
;
iobuf
#(
// spi_cs
...
...
x393_vospi.bit
View file @
8f2f1a21
No preview for this file type
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