Skip to content

Commit 51d0c87

Browse files
committed
Add decoders as a module
1 parent 143fce6 commit 51d0c87

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,4 @@ These documents are not hosted here! They are available on Library Genesis and a
3737

3838
## Special Thanks
3939

40-
* [Gaurav Singh's posts on his CSI-2 RX implementation](https://www.circuitvalley.com/2020/02/imx219-camera-mipi-csi-receiver-fpga-lattice-raspberry-pi-camera.html)
41-
40+
* [Gaurav Singh's posts on his IMX219 CSI-2 RX implementation](https://www.circuitvalley.com/2020/02/imx219-camera-mipi-csi-receiver-fpga-lattice-raspberry-pi-camera.html)

src/Manifest.py

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
"camera.sv",
33
"d_phy_receiver.sv"
44
]
5+
6+
modules = {
7+
"local": "./decoders/"
8+
}

src/decoders/Manifest.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
files = [
2+
'raw8.sv',
3+
'rgb565.sv',
4+
'rgb888.sv',
5+
'yuv422_8bit.sv'
6+
]

0 commit comments

Comments
 (0)