├── 401DigiLabApp ├── .clang-format ├── .gitignore ├── 401DigiLab_config.c ├── 401DigiLab_config.h ├── 401DigiLab_main.c ├── 401DigiLab_main.h ├── 401DigiLab_main_menu.c ├── 401DigiLab_main_menu.h ├── 401DigiLab_probe.c ├── 401DigiLab_probe.h ├── 401DigiLab_splash.c ├── 401DigiLab_splash.h ├── 401_config.c ├── 401_config.h ├── 401_err.h ├── 401_gui.c ├── 401_gui.h ├── 401_sign.c ├── 401_sign.h ├── CHANGELOG.md ├── DESCRIPTION.md ├── README.assets │ ├── DigiLab-header.png │ ├── alerts.gif │ ├── cali.png │ ├── cali2.gif │ ├── calibration.png │ ├── digilab.gif │ ├── hexedit.gif │ ├── hexedit.png │ ├── hexscreen.png │ ├── i2c-prediction.png │ ├── i2c-results.png │ ├── i2cDetect.gif │ ├── i2cScan.gif │ ├── predictres.png │ ├── probe2.gif │ ├── probecali.png │ ├── scanres.png │ ├── scope.gif │ ├── spi.gif │ └── target.gif ├── README.md ├── app_params.h ├── application.fam ├── board.c ├── board.h ├── cJSON │ ├── cJSON.c │ ├── cJSON.h │ ├── cJSON_helpers.c │ └── cJSON_helpers.h ├── devicehelpers.c ├── devicehelpers.h ├── drivers │ ├── sk6805.c │ └── sk6805.h ├── fonts │ ├── fonts.h │ ├── u8g2_font_logisoso20_tr.c │ └── u8g2_font_tom_thumb_4x6_mr.c ├── images │ ├── 401_digilab_calibration1.xcf │ ├── 401_digilab_icon_10px.png │ ├── 401_digilab_icon_10px.xcf │ ├── 401_digilab_splash.png │ ├── 401_err_bitmap.png │ ├── 401_err_hw.png │ ├── 401_err_malformed.png │ ├── 401_err_parse.png │ ├── 401_err_search.png │ ├── 401_err_storage.png │ ├── 401_err_unknown.png │ ├── 401_err_unknown2.png │ ├── about_qr.png │ ├── about_qr.xcf │ ├── calibration.png │ ├── cyberpunk_company.png │ ├── lab401.png │ └── lab401_x_tix.xcf ├── manifest.yml ├── osc.c ├── osc.h ├── resources │ └── targets │ │ ├── 03.json │ │ ├── 0C.json │ │ ├── 0E.json │ │ ├── 13.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 1A.json │ │ ├── 1C.json │ │ ├── 1D.json │ │ ├── 1E.json │ │ ├── 1F.json │ │ ├── 20.json │ │ ├── 21.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ ├── 2A.json │ │ ├── 2B.json │ │ ├── 2C.json │ │ ├── 2D.json │ │ ├── 2E.json │ │ ├── 2F.json │ │ ├── 32.json │ │ ├── 36.json │ │ ├── 38.json │ │ ├── 39.json │ │ ├── 40.json │ │ ├── 41.json │ │ ├── 42.json │ │ ├── 43.json │ │ ├── 44.json │ │ ├── 45.json │ │ ├── 48.json │ │ ├── 49.json │ │ ├── 4A.json │ │ ├── 4B.json │ │ ├── 4C.json │ │ ├── 4D.json │ │ ├── 4E.json │ │ ├── 4F.json │ │ ├── 50.json │ │ ├── 51.json │ │ ├── 52.json │ │ ├── 53.json │ │ ├── 54.json │ │ ├── 55.json │ │ ├── 56.json │ │ ├── 57.json │ │ ├── 5A.json │ │ ├── 5B.json │ │ ├── 5C.json │ │ ├── 5D.json │ │ ├── 5E.json │ │ ├── 60.json │ │ ├── 61.json │ │ ├── 62.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 6A.json │ │ ├── 6B.json │ │ ├── 6C.json │ │ ├── 6D.json │ │ ├── 6E.json │ │ ├── 6F.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 76.json │ │ ├── 77.json │ │ └── spidev.json ├── ringbuffer │ ├── ringbuffer.c │ └── ringbuffer.h ├── scenes │ ├── i2c │ │ ├── 401DigiLab_i2ctool_i.h │ │ ├── 401DigiLab_i2ctool_reader.c │ │ ├── 401DigiLab_i2ctool_reader.h │ │ ├── 401DigiLab_i2ctool_scanner.c │ │ └── 401DigiLab_i2ctool_scanner.h │ ├── scope │ │ ├── 401DigiLab_scope.c │ │ ├── 401DigiLab_scope.h │ │ ├── 401DigiLab_scope_config.c │ │ └── 401DigiLab_scope_config.h │ └── spi │ │ ├── 401DigiLab_spitool.c │ │ ├── 401DigiLab_spitool.h │ │ ├── 401DigiLab_spitool_i.h │ │ ├── 401DigiLab_spitool_scanner.c │ │ └── 401DigiLab_spitool_scanner.h └── screenshots │ ├── sc01.png │ ├── sc02.png │ ├── sc03.png │ ├── sc04.png │ ├── sc05.png │ └── sc06.png ├── LICENSE ├── README.assets ├── DigiLab-header.png ├── alerts.gif ├── cali.png ├── cali2.gif ├── calibration.png ├── digilab.gif ├── hexedit.gif ├── hexedit.png ├── i2c-prediction.png ├── i2c-results.png ├── i2cDetect.gif ├── i2cScan.gif ├── probe2.gif ├── scope.gif ├── spi.gif └── target.gif ├── README.md └── hw ├── DIGILAB_3D.stl └── DIGILAB_SCHEMATICS.pdf /401DigiLabApp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/.clang-format -------------------------------------------------------------------------------- /401DigiLabApp/.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | *.h.gch 4 | dist 5 | venv 6 | .vscode 7 | -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_config.c -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_config.h -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_main.c -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_main.h -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_main_menu.c -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_main_menu.h -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_probe.c -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_probe.h -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_splash.c -------------------------------------------------------------------------------- /401DigiLabApp/401DigiLab_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401DigiLab_splash.h -------------------------------------------------------------------------------- /401DigiLabApp/401_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_config.c -------------------------------------------------------------------------------- /401DigiLabApp/401_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_config.h -------------------------------------------------------------------------------- /401DigiLabApp/401_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_err.h -------------------------------------------------------------------------------- /401DigiLabApp/401_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_gui.c -------------------------------------------------------------------------------- /401DigiLabApp/401_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_gui.h -------------------------------------------------------------------------------- /401DigiLabApp/401_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_sign.c -------------------------------------------------------------------------------- /401DigiLabApp/401_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/401_sign.h -------------------------------------------------------------------------------- /401DigiLabApp/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | v1.0: 2 | First release 3 | 4 | v1.1 5 | 6 | Update calibration steps 7 | 8 | Bugfix 9 | -------------------------------------------------------------------------------- /401DigiLabApp/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/DESCRIPTION.md -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/DigiLab-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/DigiLab-header.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/alerts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/alerts.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/cali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/cali.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/cali2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/cali2.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/calibration.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/digilab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/digilab.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/hexedit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/hexedit.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/hexedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/hexedit.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/hexscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/hexscreen.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/i2c-prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/i2c-prediction.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/i2c-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/i2c-results.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/i2cDetect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/i2cDetect.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/i2cScan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/i2cScan.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/predictres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/predictres.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/probe2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/probe2.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/probecali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/probecali.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/scanres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/scanres.png -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/scope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/scope.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/spi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/spi.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.assets/target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.assets/target.gif -------------------------------------------------------------------------------- /401DigiLabApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/README.md -------------------------------------------------------------------------------- /401DigiLabApp/app_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/app_params.h -------------------------------------------------------------------------------- /401DigiLabApp/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/application.fam -------------------------------------------------------------------------------- /401DigiLabApp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/board.c -------------------------------------------------------------------------------- /401DigiLabApp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/board.h -------------------------------------------------------------------------------- /401DigiLabApp/cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/cJSON/cJSON.c -------------------------------------------------------------------------------- /401DigiLabApp/cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/cJSON/cJSON.h -------------------------------------------------------------------------------- /401DigiLabApp/cJSON/cJSON_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/cJSON/cJSON_helpers.c -------------------------------------------------------------------------------- /401DigiLabApp/cJSON/cJSON_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/cJSON/cJSON_helpers.h -------------------------------------------------------------------------------- /401DigiLabApp/devicehelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/devicehelpers.c -------------------------------------------------------------------------------- /401DigiLabApp/devicehelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/devicehelpers.h -------------------------------------------------------------------------------- /401DigiLabApp/drivers/sk6805.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/drivers/sk6805.c -------------------------------------------------------------------------------- /401DigiLabApp/drivers/sk6805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/drivers/sk6805.h -------------------------------------------------------------------------------- /401DigiLabApp/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/fonts/fonts.h -------------------------------------------------------------------------------- /401DigiLabApp/fonts/u8g2_font_logisoso20_tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/fonts/u8g2_font_logisoso20_tr.c -------------------------------------------------------------------------------- /401DigiLabApp/fonts/u8g2_font_tom_thumb_4x6_mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/fonts/u8g2_font_tom_thumb_4x6_mr.c -------------------------------------------------------------------------------- /401DigiLabApp/images/401_digilab_calibration1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_digilab_calibration1.xcf -------------------------------------------------------------------------------- /401DigiLabApp/images/401_digilab_icon_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_digilab_icon_10px.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_digilab_icon_10px.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_digilab_icon_10px.xcf -------------------------------------------------------------------------------- /401DigiLabApp/images/401_digilab_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_digilab_splash.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_bitmap.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_hw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_hw.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_malformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_malformed.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_parse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_parse.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_search.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_storage.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_unknown.png -------------------------------------------------------------------------------- /401DigiLabApp/images/401_err_unknown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/401_err_unknown2.png -------------------------------------------------------------------------------- /401DigiLabApp/images/about_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/about_qr.png -------------------------------------------------------------------------------- /401DigiLabApp/images/about_qr.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/about_qr.xcf -------------------------------------------------------------------------------- /401DigiLabApp/images/calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/calibration.png -------------------------------------------------------------------------------- /401DigiLabApp/images/cyberpunk_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/cyberpunk_company.png -------------------------------------------------------------------------------- /401DigiLabApp/images/lab401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/lab401.png -------------------------------------------------------------------------------- /401DigiLabApp/images/lab401_x_tix.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/images/lab401_x_tix.xcf -------------------------------------------------------------------------------- /401DigiLabApp/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/manifest.yml -------------------------------------------------------------------------------- /401DigiLabApp/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/osc.c -------------------------------------------------------------------------------- /401DigiLabApp/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/osc.h -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/03.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/0C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/0C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/0E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/0E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/13.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/18.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/19.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/1A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/1A.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/1C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/1C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/1D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/1D.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/1E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/1E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/1F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/1F.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/20.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/21.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/22.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/23.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/24.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/25.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/26.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/27.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/28.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/29.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2A.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2B.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2D.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/2F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/2F.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/32.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/36.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/38.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/39.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/40.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/41.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/42.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/43.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/44.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/45.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/48.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/49.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4A.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4B.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4D.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/4F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/4F.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/50.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/51.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/52.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/53.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/54.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/55.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/56.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/57.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/5A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/5A.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/5B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/5B.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/5C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/5C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/5D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/5D.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/5E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/5E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/60.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/61.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/62.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/68.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/69.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6A.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6B.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6C.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6D.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6E.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/6F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/6F.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/70.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/71.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/72.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/73.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/74.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/76.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/77.json -------------------------------------------------------------------------------- /401DigiLabApp/resources/targets/spidev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/resources/targets/spidev.json -------------------------------------------------------------------------------- /401DigiLabApp/ringbuffer/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/ringbuffer/ringbuffer.c -------------------------------------------------------------------------------- /401DigiLabApp/ringbuffer/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/ringbuffer/ringbuffer.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_i.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_reader.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_reader.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_scanner.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/i2c/401DigiLab_i2ctool_scanner.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/scope/401DigiLab_scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/scope/401DigiLab_scope.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/scope/401DigiLab_scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/scope/401DigiLab_scope.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/scope/401DigiLab_scope_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/scope/401DigiLab_scope_config.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/scope/401DigiLab_scope_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/scope/401DigiLab_scope_config.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/spi/401DigiLab_spitool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/spi/401DigiLab_spitool.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/spi/401DigiLab_spitool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/spi/401DigiLab_spitool.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/spi/401DigiLab_spitool_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/spi/401DigiLab_spitool_i.h -------------------------------------------------------------------------------- /401DigiLabApp/scenes/spi/401DigiLab_spitool_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/spi/401DigiLab_spitool_scanner.c -------------------------------------------------------------------------------- /401DigiLabApp/scenes/spi/401DigiLab_spitool_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/scenes/spi/401DigiLab_spitool_scanner.h -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc01.png -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc02.png -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc03.png -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc04.png -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc05.png -------------------------------------------------------------------------------- /401DigiLabApp/screenshots/sc06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/401DigiLabApp/screenshots/sc06.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/DigiLab-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/DigiLab-header.png -------------------------------------------------------------------------------- /README.assets/alerts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/alerts.gif -------------------------------------------------------------------------------- /README.assets/cali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/cali.png -------------------------------------------------------------------------------- /README.assets/cali2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/cali2.gif -------------------------------------------------------------------------------- /README.assets/calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/calibration.png -------------------------------------------------------------------------------- /README.assets/digilab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/digilab.gif -------------------------------------------------------------------------------- /README.assets/hexedit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/hexedit.gif -------------------------------------------------------------------------------- /README.assets/hexedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/hexedit.png -------------------------------------------------------------------------------- /README.assets/i2c-prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/i2c-prediction.png -------------------------------------------------------------------------------- /README.assets/i2c-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/i2c-results.png -------------------------------------------------------------------------------- /README.assets/i2cDetect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/i2cDetect.gif -------------------------------------------------------------------------------- /README.assets/i2cScan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/i2cScan.gif -------------------------------------------------------------------------------- /README.assets/probe2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/probe2.gif -------------------------------------------------------------------------------- /README.assets/scope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/scope.gif -------------------------------------------------------------------------------- /README.assets/spi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/spi.gif -------------------------------------------------------------------------------- /README.assets/target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.assets/target.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/README.md -------------------------------------------------------------------------------- /hw/DIGILAB_3D.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/hw/DIGILAB_3D.stl -------------------------------------------------------------------------------- /hw/DIGILAB_SCHEMATICS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab-401/fzDigiLab/HEAD/hw/DIGILAB_SCHEMATICS.pdf --------------------------------------------------------------------------------