10393
Memory and Storage:
← Older revision Revision as of 18:08, 16 April 2016 Line 17: Line 17: * 1.0 GB DDR3 memory - system RAM * 1.0 GB DDR3 memory - system RAM * 0.5 GB DDR3 memory - FPGA RAM * 0.5 GB DDR3 memory - FPGA RAM -* 0.5 GB NAND flash - program storage+* 1.0 GB NAND flash - program storage * microSD card slot - storage and system recovery * microSD card slot - storage and system recovery + ====Interfaces==== ====Interfaces==== [[File:Nc393 4sensors.jpeg|thumb|220px|10393 + 4 sensors]] [[File:Nc393 4sensors.jpeg|thumb|220px|10393 + 4 sensors]] Andrey.filippovElphel camera parts 0393-12
0393-12-29 - Sensor front end, CS-mount:
← Older revision Revision as of 17:59, 16 April 2016 Line 4: Line 4: {{Cad4a|0393-12-29}} {{Cad4a|0393-12-29}} ---- ---- +=== 0393-12-29A - Sensor front end, CS-mount, Rev "A" === +Note: X3D model will be updated later. +{{Cad4a|0393-12-29A}} +---- + === 0393-12-30 - Sensor adjustment plate === === 0393-12-30 - Sensor adjustment plate === {{Cad4a|0393-12-30}} {{Cad4a|0393-12-30}} Mikhail04/16/16 [mechanical-parts][master] by Mikhail Karpenko: Production
Mikhail Karpenko committed changes to the Elphel git project :
Production
Production
04/16/16 [mechanical-parts][master] by Mikhail Karpenko: Production
Mikhail Karpenko committed changes to the Elphel git project :
Production
Production
04/16/16 [mechanical-parts][master] by Mikhail Karpenko: Update 0393-12-29 to Rev A
Mikhail Karpenko committed changes to the Elphel git project :
Update 0393-12-29 to Rev A
Update 0393-12-29 to Rev A
04/15/16 [mechanical-parts][master] by Andrey Filippov: fixing back panel
Andrey Filippov committed changes to the Elphel git project :
fixing back panel
fixing back panel
04/15/16 [linux-elphel][master-next] by Mikhail Karpenko: Add multichannel support to jpeghead.c, fix formatting
Mikhail Karpenko committed changes to the Elphel git project :
Add multichannel support to jpeghead.c, fix formatting
Add multichannel support to jpeghead.c, fix formatting
04/15/16 [mechanical-parts][master] by Andrey Filippov: new revision of a back panel - editing
Andrey Filippov committed changes to the Elphel git project :
new revision of a back panel - editing
new revision of a back panel - editing
04/15/16 [mechanical-parts][master] by Andrey Filippov: new revision of a back panel
Andrey Filippov committed changes to the Elphel git project :
new revision of a back panel
new revision of a back panel
Stitched panoramas editor viewer
← Older revision
Revision as of 17:03, 15 April 2016
Line 121:
Line 121:
==Links== ==Links==
* [https://developers.google.com/kml/documentation/ Google KML reference] * [https://developers.google.com/kml/documentation/ Google KML reference]
+
+[[Category:Eyesis4Pi]]
Oleg
04/14/16 [linux-elphel][circbuf] by Mikhail Karpenko: Add multichannel support to circbuf.c, fix formatting
Mikhail Karpenko committed changes to the Elphel git project :
Add multichannel support to circbuf.c, fix formatting
Add multichannel support to circbuf.c, fix formatting
Poky 2.0 manual
← Older revision
Revision as of 02:12, 15 April 2016
(One intermediate revision not shown)Line 43:
Line 43:
==<font color="blue">Setup</font>== ==<font color="blue">Setup</font>==
-* Step 1: Copy the following lines to <b>some_script.sh</b>, modify and run:+*
<font size='2'> <font size='2'>
- '''#Part 1'''+ $ git clone https://github.com/Elphel/elphel393.git
- + $ cd elphel393
- git clone -b master git://git.yoctoproject.org/poky.git poky+ $ ./setup.sh
- cd poky; git checkout 3d2c0f5902cacf9d8544bf263b51ef0dd1a7218c+ $ cd poky
- + $ . ./oe-init-build-env
- git clone -b master https://github.com/Elphel/meta-ezynq.git meta-ezynq+ $ bitbake u-boot device-tree linux-xlnx core-image-elphel393
- cd meta-ezynq; git checkout d3a055fc82fff990f9f2cdb8c09eb948133cf6f4; cd ..+
- +
- git clone -b master https://github.com/Elphel/meta-elphel393.git meta-elphel393+
- cd meta-elphel393; git checkout 56e3c1b7007faab1ccd4d983348b249d610165d6; cd ..+
- +
- git clone -b master https://github.com/Xilinx/meta-xilinx.git meta-xilinx+
- cd meta-xilinx; git checkout cc146d6c170f100eb2f445047969893faa7a6a55; cd ..+
- +
- git clone -b master git://git.openembedded.org/meta-openembedded meta-openembedded+
- cd meta-openembedded; git checkout 73854a05565b30a5ca146ac53959c679b27815aa; cd ..+
- +
- '''#Part 2 : init environment and auto-fill Yocto's conf-files'''+
- CONF_NOTES="meta/conf/conf-notes.txt"+
- +
- if [ -f $CONF_NOTES ]; then+
- rm $CONF_NOTES+
- fi+
- +
- echo "Common \"elphel393\" targets are:" >> $CONF_NOTES+
- echo " u-boot" >> $CONF_NOTES+
- echo " device-tree" >> $CONF_NOTES+
- echo " linux-xlnx" >> $CONF_NOTES+
- echo " core-image-elphel393" >> $CONF_NOTES+
- +
- CURRENT_PATH=$(dirname $(readlink -f "$0"))+
- . ./oe-init-build-env+
- +
- BBLAYERS_CONF="conf/bblayers.conf"+
- +
- echo "BBLAYERS = \" \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-yocto \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-yocto-bsp \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-ezynq \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-elphel393 \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-xilinx \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-openembedded/meta-oe \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-openembedded/meta-python \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-openembedded/meta-networking \\" >> $BBLAYERS_CONF+
- echo " $CURRENT_PATH/meta-openembedded/meta-webserver \\" >> $BBLAYERS_CONF+
- echo " \"" >> $BBLAYERS_CONF+
- +
- LOCAL_CONF="conf/local.conf"+
- +
- # <font color='red'>change the MACHINE</font>+
- echo "MACHINE ?= \"'''elphel393'''\"" >> $LOCAL_CONF+
- # <font color='red'>Elphel's MIRROR website, '''\n''' is important</font>+
- echo "MIRRORS =+ \"http://.*/.* http://mirror.elphel.com/elphel393_mirror/ \n \"" >> $LOCAL_CONF+
- +
-* Step 2: re-init environment+
- cd poky+
- . ./oe-init-build-env+
- +
-* Step 3: build bootable image (3 targets)+
- bitbake u-boot-ezynq device-tree linux-xlnx core-image-elphel393+
</font> </font>
Oleg
Poky 2.0 manual
Setup:
← Older revision Revision as of 00:25, 15 April 2016 Line 43: Line 43: ==<font color="blue">Setup</font>== ==<font color="blue">Setup</font>== -* Step 1: Copy the following lines to <b>some_script.sh</b>, modify and run:+* <font size='2'> <font size='2'> - '''#Part 1'''+ $ git clone https://github.com/Elphel/elphel393.git - + $ cd elphel393 - git clone -b master git://git.yoctoproject.org/poky.git poky+ $ source setup.sh - cd poky; git checkout 3d2c0f5902cacf9d8544bf263b51ef0dd1a7218c+ - + - git clone -b master https://github.com/Elphel/meta-ezynq.git meta-ezynq+ - cd meta-ezynq; git checkout d3a055fc82fff990f9f2cdb8c09eb948133cf6f4; cd ..+ - + - git clone -b master https://github.com/Elphel/meta-elphel393.git meta-elphel393+ - cd meta-elphel393; git checkout 56e3c1b7007faab1ccd4d983348b249d610165d6; cd ..+ - + - git clone -b master https://github.com/Xilinx/meta-xilinx.git meta-xilinx+ - cd meta-xilinx; git checkout cc146d6c170f100eb2f445047969893faa7a6a55; cd ..+ - + - git clone -b master git://git.openembedded.org/meta-openembedded meta-openembedded+ - cd meta-openembedded; git checkout 73854a05565b30a5ca146ac53959c679b27815aa; cd ..+ - + - '''#Part 2 : init environment and auto-fill Yocto's conf-files'''+ - CONF_NOTES="meta/conf/conf-notes.txt"+ - + - if [ -f $CONF_NOTES ]; then+ - rm $CONF_NOTES+ - fi+ - + - echo "Common \"elphel393\" targets are:" >> $CONF_NOTES+ - echo " u-boot" >> $CONF_NOTES+ - echo " device-tree" >> $CONF_NOTES+ - echo " linux-xlnx" >> $CONF_NOTES+ - echo " core-image-elphel393" >> $CONF_NOTES+ - + - CURRENT_PATH=$(dirname $(readlink -f "$0"))+ - . ./oe-init-build-env+ - + - BBLAYERS_CONF="conf/bblayers.conf"+ - + - echo "BBLAYERS = \" \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-yocto \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-yocto-bsp \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-ezynq \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-elphel393 \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-xilinx \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-openembedded/meta-oe \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-openembedded/meta-python \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-openembedded/meta-networking \\" >> $BBLAYERS_CONF+ - echo " $CURRENT_PATH/meta-openembedded/meta-webserver \\" >> $BBLAYERS_CONF+ - echo " \"" >> $BBLAYERS_CONF+ - + - LOCAL_CONF="conf/local.conf"+ - + - # <font color='red'>change the MACHINE</font>+ - echo "MACHINE ?= \"'''elphel393'''\"" >> $LOCAL_CONF+ - # <font color='red'>Elphel's MIRROR website, '''\n''' is important</font>+ - echo "MIRRORS =+ \"http://.*/.* http://mirror.elphel.com/elphel393_mirror/ \n \"" >> $LOCAL_CONF+ - + -* Step 2: re-init environment+ - cd poky+ - . ./oe-init-build-env+ - + -* Step 3: build bootable image (3 targets)+ - bitbake u-boot-ezynq device-tree linux-xlnx core-image-elphel393+ </font> </font> Oleg04/14/16 [meta-elphel393][master] by Oleg Dzhimiev: updated the new tree structure
Oleg Dzhimiev committed changes to the Elphel git project :
updated the new tree structure
updated the new tree structure
Elphel camera parts 0393-11
0393-11-11 - Power supply heat sink:
← Older revision Revision as of 23:48, 14 April 2016 (2 intermediate revisions not shown)Line 6: Line 6: {{Cad4a|0393-11-01}} {{Cad4a|0393-11-01}} ---- ---- +=== 0393-11-01A - Heat frame for 10393A and 10389B PCBA, Rev "A" === +Machined from 0393-60-07 extrusion, aluminum 6061T4, chromate conversion finish. +Note: X3D model will be updated later +{{Cad4a|0393-11-01A}} +---- + === 0393-11-04 - Cooling fan enclosure === === 0393-11-04 - Cooling fan enclosure === {{Cad4a|0393-11-04}} {{Cad4a|0393-11-04}} Line 12: Line 18: {{Cad4a|0393-11-10}} {{Cad4a|0393-11-10}} ---- ---- +=== 0393-11-10A - CPU heat plate, Rev "A" === +Note: X3D model will be updated later. +{{Cad4a|0393-11-10A}} +---- + === 0393-11-11 - Power supply heat sink === === 0393-11-11 - Power supply heat sink === {{Cad4a|0393-11-11}} {{Cad4a|0393-11-11}} +---- +=== 0393-11-11A - Power supply heat sink, Rev "A" === +Note: X3D model will be updated later. +{{Cad4a|0393-11-11A}} ---- ---- Mikhail04/14/16 [linux-elphel][ahciwrite] by Oleg Dzhimiev: still need to test
Oleg Dzhimiev committed changes to the Elphel git project :
still need to test
still need to test
04/14/16 [mechanical-parts][master] by Mikhail Karpenko: Production
Mikhail Karpenko committed changes to the Elphel git project :
Production
Production
04/14/16 [mechanical-parts][master] by Mikhail Karpenko: Production
Mikhail Karpenko committed changes to the Elphel git project :
Production
Production
04/14/16 [mechanical-parts][master] by Mikhail Karpenko: Update 0393-11-01, 0393-11-10 and 0393-11-11 to Rev A
Mikhail Karpenko committed changes to the Elphel git project :
Update 0393-11-01, 0393-11-10 and 0393-11-11 to Rev A
Update 0393-11-01, 0393-11-10 and 0393-11-11 to Rev A
04/14/16 [meta-elphel393][master] by Oleg Dzhimiev: support for other boards got broken long ago
Oleg Dzhimiev committed changes to the Elphel git project :
support for other boards got broken long ago
support for other boards got broken long ago
Pages
