├── .gitignore ├── AUTHORS ├── CNAME ├── LICENSE-hardware ├── README.md ├── _config.yml ├── _includes └── app-developers.mkd ├── _layouts ├── assembly.mkd ├── default.html ├── electrical-design.mkd ├── electrical.mkd ├── firmware.mkd └── programming.mkd ├── assembly ├── electrical │ ├── index.mkd │ ├── vehicle-interface.GBL │ ├── vehicle-interface.GBO │ ├── vehicle-interface.GBS │ ├── vehicle-interface.GML │ ├── vehicle-interface.GTL │ ├── vehicle-interface.GTO │ ├── vehicle-interface.GTP │ ├── vehicle-interface.GTS │ ├── vehicle-interface.TXT │ ├── vehicle-interface.dri │ ├── vehicle-interface.dxf │ └── vehicle-interface.gpi ├── index.mkd ├── pogo_location.xls └── testing.mkd ├── electrical ├── CHANGELOG.xls ├── design │ ├── bluetooth.mkd │ ├── can.mkd │ ├── microcontroller.mkd │ ├── power.mkd │ └── usb.mkd ├── future-work.mkd ├── img │ ├── BT_Endurance_Histogram_012613.svg │ ├── BT_Endurance_Histogram_012613_lrg.png │ ├── InterfaceBlockDiagram.pdf │ ├── InterfaceBlockDiagram.svg │ ├── LPC1768_Translator_block.pdf │ ├── headers_bottom.jpg │ ├── headers_top.jpg │ ├── vehicle-interface.brd-scaled.png │ └── vehicle-interface.sch-scaled.png ├── index.mkd ├── io.mkd ├── issues.mkd └── sources │ ├── index.mkd │ ├── vehicle-interface.bom-v3.xls │ ├── vehicle-interface.brd │ ├── vehicle-interface.brd.png │ ├── vehicle-interface.parts.txt │ ├── vehicle-interface.sch │ └── vehicle-interface.sch.pdf ├── firmware ├── img │ ├── flashmagic.png │ ├── isp-header.jpg │ ├── jtag-header.jpg │ ├── programming-entering-bootloader.jpg │ ├── usb-drive-appears.png │ ├── usb-eject.png │ ├── usb-existing-firmware.png │ ├── usb-new-firmware.png │ └── vi-programming-button.jpg ├── index.mkd ├── programming │ ├── Bootloader.hex │ ├── isp.mkd │ ├── jtag.mkd │ └── usb.mkd └── rn41.mkd ├── index.mkd ├── mechanical ├── OpenXC_Diffuser.PDF ├── OpenXC_VI_Bottom.PDF ├── OpenXC_VI_Top.PDF ├── VI_bottom.STEP ├── VI_diffuser.STEP ├── VI_top.STEP ├── img │ ├── OpenXC_Diffuser.png │ ├── OpenXC_VI_Bottom.png │ └── OpenXC_VI_Top.png └── index.mkd ├── robots.txt └── static ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── transition.js ├── css └── styles.css ├── images ├── openxc-logo.png ├── vi-assembled.jpg ├── vi-back-angled.jpg ├── vi-back-square.jpg ├── vi-front-angled.jpg ├── vi-front-square.jpg ├── vi-installed-in-vehicle.jpg ├── vi-open-bottom.jpg ├── vi-open-top-right.jpg ├── vi-open-top.jpg ├── vi-opening.jpg ├── vi-packaging.png ├── vi-ports.jpg └── vi-surface.png └── js └── app.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/AUTHORS -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | vi.openxcplatform.com 2 | -------------------------------------------------------------------------------- /LICENSE-hardware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/LICENSE-hardware -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/app-developers.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_includes/app-developers.mkd -------------------------------------------------------------------------------- /_layouts/assembly.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/assembly.mkd -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/electrical-design.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/electrical-design.mkd -------------------------------------------------------------------------------- /_layouts/electrical.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/electrical.mkd -------------------------------------------------------------------------------- /_layouts/firmware.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/firmware.mkd -------------------------------------------------------------------------------- /_layouts/programming.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/_layouts/programming.mkd -------------------------------------------------------------------------------- /assembly/electrical/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/index.mkd -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GBL -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GBO -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GBS -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GML -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GTL -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GTO -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GTP -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.GTS -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.TXT -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.dri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.dri -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.dxf -------------------------------------------------------------------------------- /assembly/electrical/vehicle-interface.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/electrical/vehicle-interface.gpi -------------------------------------------------------------------------------- /assembly/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/index.mkd -------------------------------------------------------------------------------- /assembly/pogo_location.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/pogo_location.xls -------------------------------------------------------------------------------- /assembly/testing.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/assembly/testing.mkd -------------------------------------------------------------------------------- /electrical/CHANGELOG.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/CHANGELOG.xls -------------------------------------------------------------------------------- /electrical/design/bluetooth.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/design/bluetooth.mkd -------------------------------------------------------------------------------- /electrical/design/can.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/design/can.mkd -------------------------------------------------------------------------------- /electrical/design/microcontroller.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/design/microcontroller.mkd -------------------------------------------------------------------------------- /electrical/design/power.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/design/power.mkd -------------------------------------------------------------------------------- /electrical/design/usb.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/design/usb.mkd -------------------------------------------------------------------------------- /electrical/future-work.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/future-work.mkd -------------------------------------------------------------------------------- /electrical/img/BT_Endurance_Histogram_012613.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/BT_Endurance_Histogram_012613.svg -------------------------------------------------------------------------------- /electrical/img/BT_Endurance_Histogram_012613_lrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/BT_Endurance_Histogram_012613_lrg.png -------------------------------------------------------------------------------- /electrical/img/InterfaceBlockDiagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/InterfaceBlockDiagram.pdf -------------------------------------------------------------------------------- /electrical/img/InterfaceBlockDiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/InterfaceBlockDiagram.svg -------------------------------------------------------------------------------- /electrical/img/LPC1768_Translator_block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/LPC1768_Translator_block.pdf -------------------------------------------------------------------------------- /electrical/img/headers_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/headers_bottom.jpg -------------------------------------------------------------------------------- /electrical/img/headers_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/headers_top.jpg -------------------------------------------------------------------------------- /electrical/img/vehicle-interface.brd-scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/vehicle-interface.brd-scaled.png -------------------------------------------------------------------------------- /electrical/img/vehicle-interface.sch-scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/img/vehicle-interface.sch-scaled.png -------------------------------------------------------------------------------- /electrical/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/index.mkd -------------------------------------------------------------------------------- /electrical/io.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/io.mkd -------------------------------------------------------------------------------- /electrical/issues.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/issues.mkd -------------------------------------------------------------------------------- /electrical/sources/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/index.mkd -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.bom-v3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.bom-v3.xls -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.brd -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.brd.png -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.parts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.parts.txt -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.sch -------------------------------------------------------------------------------- /electrical/sources/vehicle-interface.sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/electrical/sources/vehicle-interface.sch.pdf -------------------------------------------------------------------------------- /firmware/img/flashmagic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/flashmagic.png -------------------------------------------------------------------------------- /firmware/img/isp-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/isp-header.jpg -------------------------------------------------------------------------------- /firmware/img/jtag-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/jtag-header.jpg -------------------------------------------------------------------------------- /firmware/img/programming-entering-bootloader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/programming-entering-bootloader.jpg -------------------------------------------------------------------------------- /firmware/img/usb-drive-appears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/usb-drive-appears.png -------------------------------------------------------------------------------- /firmware/img/usb-eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/usb-eject.png -------------------------------------------------------------------------------- /firmware/img/usb-existing-firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/usb-existing-firmware.png -------------------------------------------------------------------------------- /firmware/img/usb-new-firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/usb-new-firmware.png -------------------------------------------------------------------------------- /firmware/img/vi-programming-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/img/vi-programming-button.jpg -------------------------------------------------------------------------------- /firmware/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/index.mkd -------------------------------------------------------------------------------- /firmware/programming/Bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/programming/Bootloader.hex -------------------------------------------------------------------------------- /firmware/programming/isp.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/programming/isp.mkd -------------------------------------------------------------------------------- /firmware/programming/jtag.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/programming/jtag.mkd -------------------------------------------------------------------------------- /firmware/programming/usb.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/programming/usb.mkd -------------------------------------------------------------------------------- /firmware/rn41.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/firmware/rn41.mkd -------------------------------------------------------------------------------- /index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/index.mkd -------------------------------------------------------------------------------- /mechanical/OpenXC_Diffuser.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/OpenXC_Diffuser.PDF -------------------------------------------------------------------------------- /mechanical/OpenXC_VI_Bottom.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/OpenXC_VI_Bottom.PDF -------------------------------------------------------------------------------- /mechanical/OpenXC_VI_Top.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/OpenXC_VI_Top.PDF -------------------------------------------------------------------------------- /mechanical/VI_bottom.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/VI_bottom.STEP -------------------------------------------------------------------------------- /mechanical/VI_diffuser.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/VI_diffuser.STEP -------------------------------------------------------------------------------- /mechanical/VI_top.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/VI_top.STEP -------------------------------------------------------------------------------- /mechanical/img/OpenXC_Diffuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/img/OpenXC_Diffuser.png -------------------------------------------------------------------------------- /mechanical/img/OpenXC_VI_Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/img/OpenXC_VI_Bottom.png -------------------------------------------------------------------------------- /mechanical/img/OpenXC_VI_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/img/OpenXC_VI_Top.png -------------------------------------------------------------------------------- /mechanical/index.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/mechanical/index.mkd -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/bootstrap/js/transition.js -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/images/openxc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/openxc-logo.png -------------------------------------------------------------------------------- /static/images/vi-assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-assembled.jpg -------------------------------------------------------------------------------- /static/images/vi-back-angled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-back-angled.jpg -------------------------------------------------------------------------------- /static/images/vi-back-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-back-square.jpg -------------------------------------------------------------------------------- /static/images/vi-front-angled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-front-angled.jpg -------------------------------------------------------------------------------- /static/images/vi-front-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-front-square.jpg -------------------------------------------------------------------------------- /static/images/vi-installed-in-vehicle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-installed-in-vehicle.jpg -------------------------------------------------------------------------------- /static/images/vi-open-bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-open-bottom.jpg -------------------------------------------------------------------------------- /static/images/vi-open-top-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-open-top-right.jpg -------------------------------------------------------------------------------- /static/images/vi-open-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-open-top.jpg -------------------------------------------------------------------------------- /static/images/vi-opening.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-opening.jpg -------------------------------------------------------------------------------- /static/images/vi-packaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-packaging.png -------------------------------------------------------------------------------- /static/images/vi-ports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-ports.jpg -------------------------------------------------------------------------------- /static/images/vi-surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/images/vi-surface.png -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/reference-vi/HEAD/static/js/app.js --------------------------------------------------------------------------------