├── .gitignore ├── .ruby-version ├── .travis.yml ├── 404.md ├── CNAME ├── DEPLOY.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _config.yml ├── _includes ├── banner.html ├── board │ ├── all.md │ ├── clocks.md │ ├── ethernet.md │ ├── fpga.md │ ├── gtp.md │ ├── hdmi.md │ ├── jumpers.md │ ├── leds.md │ ├── power.md │ ├── sdcard.md │ ├── tofe.md │ └── usb.md ├── disqus.html ├── footer.html ├── google_analytics.html ├── header.html └── navigation.html ├── _layouts ├── default.html └── page.html ├── _plugins ├── faq.rb ├── mdinclude.rb ├── moresort.rb ├── references.rb └── tocGenerator.rb ├── _posts └── .gitkeep ├── _references.md ├── _src └── img │ ├── Makefile │ ├── export-master.py │ ├── master.xcf │ └── power │ ├── barrel.xcf │ ├── connectors.xcf │ ├── convert.xcf │ └── pcie-6pin.xcf ├── bin └── jekyll-page ├── css ├── main.css ├── syntax.css └── toc.css ├── features ├── clocks.md ├── ddr3.md ├── eeprom.md ├── ethernet.md ├── expansion-io.md ├── flash-memory.md ├── gtp-transceivers.md ├── hdmi-input.md ├── hdmi-output.md ├── label.md ├── usb-otg.md └── usb-peripheral.md ├── getting-started ├── case.md ├── jtag.md ├── layout.md ├── overview.md ├── power.md ├── uarts.md └── usb-ids.md ├── img ├── cypress-fx2 │ ├── i2c.png │ ├── i2c.svg │ ├── k1.jpg │ ├── mac-eeprom.jpg │ └── p18.jpg ├── gtp │ ├── daisy.png │ ├── daisy.svg │ ├── dual-mode.png │ ├── dual-mode.svg │ ├── hdmi.png │ ├── hdmi.svg │ ├── pci-express.png │ └── pci-express.svg ├── highlights │ ├── Clocks.jpg │ ├── DisplayPort.jpg │ ├── Ethernet.jpg │ ├── FPGA.jpg │ ├── HDMI.jpg │ ├── Jumpers.jpg │ ├── LEDs.jpg │ ├── Power.jpg │ ├── SDCard.jpg │ ├── TOFE.jpg │ ├── USB.jpg │ └── master.jpg ├── label │ ├── label-on-box.jpg │ ├── label-on-opsis.jpg │ ├── large-dna.jpg │ ├── large-mac.jpg │ ├── large-product.jpg │ └── large.jpg ├── numato-opsis.jpg └── power │ ├── barrel.jpg │ ├── connectors.jpg │ ├── convert.jpg │ ├── pcie-6pin-plug.png │ ├── pcie-6pin.jpg │ ├── polarity.png │ ├── standard-pcie-6pin-cable.png │ ├── standard-pcie-6pin-cable.svg │ ├── standard-pcie-6pin-opsis.png │ └── standard-pcie-6pin-opsis.svg ├── index.md ├── info ├── contact-numato.md ├── license.md └── video-info-faq.md └── pdfs └── NumatoOpsis-schematic-v2-prototype-13-gb1c4312.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | _site 3 | _pages 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p551 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/404.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | opsis.hdmi2usb.tv 2 | -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/DEPLOY.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/banner.html -------------------------------------------------------------------------------- /_includes/board/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/all.md -------------------------------------------------------------------------------- /_includes/board/clocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/clocks.md -------------------------------------------------------------------------------- /_includes/board/ethernet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/ethernet.md -------------------------------------------------------------------------------- /_includes/board/fpga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/fpga.md -------------------------------------------------------------------------------- /_includes/board/gtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/gtp.md -------------------------------------------------------------------------------- /_includes/board/hdmi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/hdmi.md -------------------------------------------------------------------------------- /_includes/board/jumpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/jumpers.md -------------------------------------------------------------------------------- /_includes/board/leds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/leds.md -------------------------------------------------------------------------------- /_includes/board/power.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/power.md -------------------------------------------------------------------------------- /_includes/board/sdcard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/sdcard.md -------------------------------------------------------------------------------- /_includes/board/tofe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/tofe.md -------------------------------------------------------------------------------- /_includes/board/usb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/board/usb.md -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/google_analytics.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_plugins/faq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_plugins/faq.rb -------------------------------------------------------------------------------- /_plugins/mdinclude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_plugins/mdinclude.rb -------------------------------------------------------------------------------- /_plugins/moresort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_plugins/moresort.rb -------------------------------------------------------------------------------- /_plugins/references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_plugins/references.rb -------------------------------------------------------------------------------- /_plugins/tocGenerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_plugins/tocGenerator.rb -------------------------------------------------------------------------------- /_posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_references.md -------------------------------------------------------------------------------- /_src/img/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/Makefile -------------------------------------------------------------------------------- /_src/img/export-master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/export-master.py -------------------------------------------------------------------------------- /_src/img/master.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/master.xcf -------------------------------------------------------------------------------- /_src/img/power/barrel.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/power/barrel.xcf -------------------------------------------------------------------------------- /_src/img/power/connectors.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/power/connectors.xcf -------------------------------------------------------------------------------- /_src/img/power/convert.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/power/convert.xcf -------------------------------------------------------------------------------- /_src/img/power/pcie-6pin.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/_src/img/power/pcie-6pin.xcf -------------------------------------------------------------------------------- /bin/jekyll-page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/bin/jekyll-page -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/css/main.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/css/syntax.css -------------------------------------------------------------------------------- /css/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/css/toc.css -------------------------------------------------------------------------------- /features/clocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/clocks.md -------------------------------------------------------------------------------- /features/ddr3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/ddr3.md -------------------------------------------------------------------------------- /features/eeprom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/eeprom.md -------------------------------------------------------------------------------- /features/ethernet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/ethernet.md -------------------------------------------------------------------------------- /features/expansion-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/expansion-io.md -------------------------------------------------------------------------------- /features/flash-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/flash-memory.md -------------------------------------------------------------------------------- /features/gtp-transceivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/gtp-transceivers.md -------------------------------------------------------------------------------- /features/hdmi-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/hdmi-input.md -------------------------------------------------------------------------------- /features/hdmi-output.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "HDMI Output" 4 | category: features 5 | --- 6 | 7 | %[include board/hdmi] 8 | 9 | 10 | -------------------------------------------------------------------------------- /features/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/label.md -------------------------------------------------------------------------------- /features/usb-otg.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "USB OTG" 4 | category: features 5 | --- 6 | 7 | %[include board/usb] 8 | 9 | -------------------------------------------------------------------------------- /features/usb-peripheral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/features/usb-peripheral.md -------------------------------------------------------------------------------- /getting-started/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/case.md -------------------------------------------------------------------------------- /getting-started/jtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/jtag.md -------------------------------------------------------------------------------- /getting-started/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/layout.md -------------------------------------------------------------------------------- /getting-started/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/overview.md -------------------------------------------------------------------------------- /getting-started/power.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/power.md -------------------------------------------------------------------------------- /getting-started/uarts.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "UARTs" 4 | category: getting-started 5 | --- 6 | 7 | FIXME 8 | -------------------------------------------------------------------------------- /getting-started/usb-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/getting-started/usb-ids.md -------------------------------------------------------------------------------- /img/cypress-fx2/i2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/cypress-fx2/i2c.png -------------------------------------------------------------------------------- /img/cypress-fx2/i2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/cypress-fx2/i2c.svg -------------------------------------------------------------------------------- /img/cypress-fx2/k1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/cypress-fx2/k1.jpg -------------------------------------------------------------------------------- /img/cypress-fx2/mac-eeprom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/cypress-fx2/mac-eeprom.jpg -------------------------------------------------------------------------------- /img/cypress-fx2/p18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/cypress-fx2/p18.jpg -------------------------------------------------------------------------------- /img/gtp/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/daisy.png -------------------------------------------------------------------------------- /img/gtp/daisy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/daisy.svg -------------------------------------------------------------------------------- /img/gtp/dual-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/dual-mode.png -------------------------------------------------------------------------------- /img/gtp/dual-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/dual-mode.svg -------------------------------------------------------------------------------- /img/gtp/hdmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/hdmi.png -------------------------------------------------------------------------------- /img/gtp/hdmi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/hdmi.svg -------------------------------------------------------------------------------- /img/gtp/pci-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/pci-express.png -------------------------------------------------------------------------------- /img/gtp/pci-express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/gtp/pci-express.svg -------------------------------------------------------------------------------- /img/highlights/Clocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/Clocks.jpg -------------------------------------------------------------------------------- /img/highlights/DisplayPort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/DisplayPort.jpg -------------------------------------------------------------------------------- /img/highlights/Ethernet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/Ethernet.jpg -------------------------------------------------------------------------------- /img/highlights/FPGA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/FPGA.jpg -------------------------------------------------------------------------------- /img/highlights/HDMI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/HDMI.jpg -------------------------------------------------------------------------------- /img/highlights/Jumpers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/Jumpers.jpg -------------------------------------------------------------------------------- /img/highlights/LEDs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/LEDs.jpg -------------------------------------------------------------------------------- /img/highlights/Power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/Power.jpg -------------------------------------------------------------------------------- /img/highlights/SDCard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/SDCard.jpg -------------------------------------------------------------------------------- /img/highlights/TOFE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/TOFE.jpg -------------------------------------------------------------------------------- /img/highlights/USB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/USB.jpg -------------------------------------------------------------------------------- /img/highlights/master.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/highlights/master.jpg -------------------------------------------------------------------------------- /img/label/label-on-box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/label-on-box.jpg -------------------------------------------------------------------------------- /img/label/label-on-opsis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/label-on-opsis.jpg -------------------------------------------------------------------------------- /img/label/large-dna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/large-dna.jpg -------------------------------------------------------------------------------- /img/label/large-mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/large-mac.jpg -------------------------------------------------------------------------------- /img/label/large-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/large-product.jpg -------------------------------------------------------------------------------- /img/label/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/label/large.jpg -------------------------------------------------------------------------------- /img/numato-opsis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/numato-opsis.jpg -------------------------------------------------------------------------------- /img/power/barrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/barrel.jpg -------------------------------------------------------------------------------- /img/power/connectors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/connectors.jpg -------------------------------------------------------------------------------- /img/power/convert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/convert.jpg -------------------------------------------------------------------------------- /img/power/pcie-6pin-plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/pcie-6pin-plug.png -------------------------------------------------------------------------------- /img/power/pcie-6pin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/pcie-6pin.jpg -------------------------------------------------------------------------------- /img/power/polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/polarity.png -------------------------------------------------------------------------------- /img/power/standard-pcie-6pin-cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/standard-pcie-6pin-cable.png -------------------------------------------------------------------------------- /img/power/standard-pcie-6pin-cable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/standard-pcie-6pin-cable.svg -------------------------------------------------------------------------------- /img/power/standard-pcie-6pin-opsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/standard-pcie-6pin-opsis.png -------------------------------------------------------------------------------- /img/power/standard-pcie-6pin-opsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/img/power/standard-pcie-6pin-opsis.svg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/index.md -------------------------------------------------------------------------------- /info/contact-numato.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/info/contact-numato.md -------------------------------------------------------------------------------- /info/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/info/license.md -------------------------------------------------------------------------------- /info/video-info-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/info/video-info-faq.md -------------------------------------------------------------------------------- /pdfs/NumatoOpsis-schematic-v2-prototype-13-gb1c4312.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timvideos/HDMI2USB-numato-opsis-docs/HEAD/pdfs/NumatoOpsis-schematic-v2-prototype-13-gb1c4312.pdf --------------------------------------------------------------------------------