├── .gitignore ├── LICENSE ├── README.md ├── doc ├── IMX307LQD-C.pdf └── IMX335LQNC_E_Datasheet_E18112A84(2).pdf ├── fileserver ├── build.sh ├── fileserver └── fileserver.go ├── fullflash-backup ├── 3516ev200+imx307-fullflash.zip └── 3516ev300+imx335-fullflash.zip ├── image └── ev200-rootfs-0524-1542.img ├── mpp ├── component │ └── isp │ │ └── user │ │ └── sensor │ │ └── hi3516ev200 │ │ ├── sony_imx307_2L │ │ ├── imx307_2l_cmos.c │ │ └── imx307_2l_sensor_ctl.c │ │ └── sony_imx335 │ │ ├── imx335_cmos.c │ │ └── imx335_sensor_ctl.c └── sample │ ├── Makefile │ ├── Makefile.param │ ├── common │ ├── dictionary.c │ ├── dictionary.h │ ├── iniparser.c │ ├── iniparser.h │ ├── sample_comm.h │ ├── sample_comm_isp.c │ ├── sample_comm_venc.c │ └── sample_comm_vi.c │ └── yjsnpi │ ├── Makefile │ ├── venc.ini │ └── yjsnpi-venc.c ├── pics ├── 307.png ├── 335.png ├── bootargs.png ├── conn-1.png ├── eth-power-conn.png ├── flash-erase.png ├── flash-tftp.png ├── fpc-conn-finish.png ├── fpc-conn.png ├── fpc-connect.png ├── uart-conn-finish.png └── uart-conn.png └── rootfs-mtd1 └── etc └── init.d └── rcS /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/README.md -------------------------------------------------------------------------------- /doc/IMX307LQD-C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/doc/IMX307LQD-C.pdf -------------------------------------------------------------------------------- /doc/IMX335LQNC_E_Datasheet_E18112A84(2).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/doc/IMX335LQNC_E_Datasheet_E18112A84(2).pdf -------------------------------------------------------------------------------- /fileserver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/fileserver/build.sh -------------------------------------------------------------------------------- /fileserver/fileserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/fileserver/fileserver -------------------------------------------------------------------------------- /fileserver/fileserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/fileserver/fileserver.go -------------------------------------------------------------------------------- /fullflash-backup/3516ev200+imx307-fullflash.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/fullflash-backup/3516ev200+imx307-fullflash.zip -------------------------------------------------------------------------------- /fullflash-backup/3516ev300+imx335-fullflash.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/fullflash-backup/3516ev300+imx335-fullflash.zip -------------------------------------------------------------------------------- /image/ev200-rootfs-0524-1542.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/image/ev200-rootfs-0524-1542.img -------------------------------------------------------------------------------- /mpp/component/isp/user/sensor/hi3516ev200/sony_imx307_2L/imx307_2l_cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/component/isp/user/sensor/hi3516ev200/sony_imx307_2L/imx307_2l_cmos.c -------------------------------------------------------------------------------- /mpp/component/isp/user/sensor/hi3516ev200/sony_imx307_2L/imx307_2l_sensor_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/component/isp/user/sensor/hi3516ev200/sony_imx307_2L/imx307_2l_sensor_ctl.c -------------------------------------------------------------------------------- /mpp/component/isp/user/sensor/hi3516ev200/sony_imx335/imx335_cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/component/isp/user/sensor/hi3516ev200/sony_imx335/imx335_cmos.c -------------------------------------------------------------------------------- /mpp/component/isp/user/sensor/hi3516ev200/sony_imx335/imx335_sensor_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/component/isp/user/sensor/hi3516ev200/sony_imx335/imx335_sensor_ctl.c -------------------------------------------------------------------------------- /mpp/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/Makefile -------------------------------------------------------------------------------- /mpp/sample/Makefile.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/Makefile.param -------------------------------------------------------------------------------- /mpp/sample/common/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/dictionary.c -------------------------------------------------------------------------------- /mpp/sample/common/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/dictionary.h -------------------------------------------------------------------------------- /mpp/sample/common/iniparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/iniparser.c -------------------------------------------------------------------------------- /mpp/sample/common/iniparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/iniparser.h -------------------------------------------------------------------------------- /mpp/sample/common/sample_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/sample_comm.h -------------------------------------------------------------------------------- /mpp/sample/common/sample_comm_isp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/sample_comm_isp.c -------------------------------------------------------------------------------- /mpp/sample/common/sample_comm_venc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/sample_comm_venc.c -------------------------------------------------------------------------------- /mpp/sample/common/sample_comm_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/common/sample_comm_vi.c -------------------------------------------------------------------------------- /mpp/sample/yjsnpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/yjsnpi/Makefile -------------------------------------------------------------------------------- /mpp/sample/yjsnpi/venc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/yjsnpi/venc.ini -------------------------------------------------------------------------------- /mpp/sample/yjsnpi/yjsnpi-venc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/mpp/sample/yjsnpi/yjsnpi-venc.c -------------------------------------------------------------------------------- /pics/307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/307.png -------------------------------------------------------------------------------- /pics/335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/335.png -------------------------------------------------------------------------------- /pics/bootargs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/bootargs.png -------------------------------------------------------------------------------- /pics/conn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/conn-1.png -------------------------------------------------------------------------------- /pics/eth-power-conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/eth-power-conn.png -------------------------------------------------------------------------------- /pics/flash-erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/flash-erase.png -------------------------------------------------------------------------------- /pics/flash-tftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/flash-tftp.png -------------------------------------------------------------------------------- /pics/fpc-conn-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/fpc-conn-finish.png -------------------------------------------------------------------------------- /pics/fpc-conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/fpc-conn.png -------------------------------------------------------------------------------- /pics/fpc-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/fpc-connect.png -------------------------------------------------------------------------------- /pics/uart-conn-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/uart-conn-finish.png -------------------------------------------------------------------------------- /pics/uart-conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/pics/uart-conn.png -------------------------------------------------------------------------------- /rootfs-mtd1/etc/init.d/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libc0607/YJSNPI-Hi/HEAD/rootfs-mtd1/etc/init.d/rcS --------------------------------------------------------------------------------