├── README.md ├── apix-adc-example ├── Makefile ├── README.md └── main.c ├── apix-can-examples ├── Makefile ├── README.md ├── can-recv-example.c └── can-send-example.c ├── apix-gpio-example ├── Makefile ├── README.md └── main.c ├── apix-i2c-example ├── Makefile ├── README.md └── main.c ├── apix-pm-examples ├── Makefile ├── README.md ├── apix-cpu-sample.c └── apix-pm-sample.c ├── apix-pwm-example ├── Makefile ├── README.md └── main.c ├── apix-spi-example ├── Makefile ├── README.md └── main.c ├── apix-watchdog-example ├── Makefile ├── README.md └── main.c ├── awsiot-sample ├── Makefile ├── README.md ├── cfg_files │ └── awsiotsdk.conf └── src │ ├── aws_config.c │ ├── aws_config.h │ ├── aws_control.c │ ├── aws_control.h │ ├── daemonize.c │ ├── daemonize.h │ ├── device_control.c │ ├── device_control.h │ └── main.c ├── ble-gatt-server-example ├── Makefile ├── README.md ├── ble-gatt-server-app.c ├── ble-gatt-server-app.h ├── subprocess.c └── subprocess.h ├── caam-blob-example ├── Makefile ├── README.md ├── caam_keyblob.h ├── caam_ops.c ├── caam_ops.h └── main.c ├── cccs-data-request-example ├── Makefile ├── README.md └── main.c ├── cccs-examples.mk ├── cccs-maintenance-status-example ├── Makefile ├── README.md └── main.c ├── cccs-upload-binary-file-example ├── Makefile ├── README.md └── main.c ├── cccs-upload-data-points-example ├── Makefile ├── README.md └── main.c ├── connectcore-demo-example ├── README.md ├── demoserver.py ├── index.html ├── management.html ├── multimedia.html ├── multimedia_viewer.html ├── network.html ├── npu.html └── static │ ├── assets │ └── npu_demos.json │ ├── css │ ├── cdn.jsdelivr.net │ │ └── gh │ │ │ └── gitbrent │ │ │ └── bootstrap4-toggle@3.6.1 │ │ │ └── css │ │ │ └── bootstrap4-toggle.min.css │ ├── cdnjs.cloudflare.com │ │ └── ajax │ │ │ └── libs │ │ │ └── bootstrap-slider │ │ │ └── 9.7.3 │ │ │ └── css │ │ │ └── bootstrap-slider.min.css │ ├── fontawesome5.15.4 │ │ └── all.min.css │ ├── general.css │ ├── stackpath.bootstrapcdn.com │ │ └── bootstrap │ │ │ └── 4.1.3 │ │ │ └── css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ ├── toastr.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── fonts │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-Italic.ttf │ └── OpenSans-Regular.ttf │ ├── images │ ├── Digi_logo_banner.png │ ├── Digi_logo_banner_gray.png │ ├── aquarium.jpg │ ├── big_buck_bunny.jpg │ ├── blob.jpg │ ├── board.png │ ├── ccimx6sbc_board.png │ ├── ccimx6ulsbc_board.png │ ├── ccimx8mm-dvk_board.png │ ├── ccimx8mn-dvk_board.png │ ├── ccimx8x-sbc-pro_board.png │ ├── ccimx93-dvk_board.png │ ├── ccmp13-dvk_board.png │ ├── ccmp15-dvk_board.png │ ├── ccmp25-dvk_board.png │ ├── combo_arrow_gray.png │ ├── combo_arrow_green.png │ ├── cpu.png │ ├── electricflower.jpg │ ├── hide_info.png │ ├── hide_info_green.png │ ├── led_bubble.png │ ├── led_bubble_blue.png │ ├── led_bubble_hover.png │ ├── loading.gif │ ├── multiple-views.jpg │ ├── npu_drowsy_detection.png │ ├── npu_face_recognition.png │ ├── npu_gesture_detection.png │ ├── npu_image_classification.png │ ├── npu_object_detection.png │ ├── npu_pose_estimation.png │ ├── npu_semantic_segmentation.png │ ├── ram.png │ ├── remove.png │ ├── show_info.png │ ├── show_info_green.png │ ├── spacerocks.jpg │ ├── toon-shading.jpg │ └── warning.png │ ├── js │ ├── ccimx6qpsbc.js │ ├── ccimx6sbc.js │ ├── ccimx6ulsbc.js │ ├── ccimx8m-nano.js │ ├── ccimx8mm-dvk.js │ ├── ccimx8x-sbc-pro.js │ ├── ccimx91-dvk.js │ ├── ccimx93-dvk.js │ ├── ccmp133-dvk.js │ ├── ccmp157-dvk.js │ ├── ccmp255-dvk.js │ ├── cdn.jsdelivr.net │ │ ├── gh │ │ │ └── gitbrent │ │ │ │ └── bootstrap4-toggle@3.6.1 │ │ │ │ └── js │ │ │ │ └── bootstrap4-toggle.min.js │ │ └── npm │ │ │ └── popper.js@1.16.1 │ │ │ └── dist │ │ │ └── umd │ │ │ └── popper.min.js │ ├── cdnjs.cloudflare.com │ │ └── ajax │ │ │ └── libs │ │ │ └── bootstrap-slider │ │ │ └── 9.7.3 │ │ │ └── bootstrap-slider.min.js │ ├── code.jquery.com │ │ └── jquery-3.5.1.min.js │ ├── common.js │ ├── dashboard.js │ ├── devices.js │ ├── file-system.js │ ├── jquery.matchHeight-min.js │ ├── jquery.pjax.js │ ├── management.js │ ├── multimedia.js │ ├── network.js │ ├── npu.js │ ├── sidebar.js │ ├── simple-timer.js │ ├── stackpath.bootstrapcdn.com │ │ └── bootstrap │ │ │ └── 4.5.2 │ │ │ └── js │ │ │ └── bootstrap.min.js │ └── toastr.min.js │ └── sounds │ └── inspire.mp3 ├── cryptochip-get-random ├── Makefile ├── README.md └── main.c ├── libdigiapix-examples.mk └── samples-manifest.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/README.md -------------------------------------------------------------------------------- /apix-adc-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-adc-example/Makefile -------------------------------------------------------------------------------- /apix-adc-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-adc-example/README.md -------------------------------------------------------------------------------- /apix-adc-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-adc-example/main.c -------------------------------------------------------------------------------- /apix-can-examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-can-examples/Makefile -------------------------------------------------------------------------------- /apix-can-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-can-examples/README.md -------------------------------------------------------------------------------- /apix-can-examples/can-recv-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-can-examples/can-recv-example.c -------------------------------------------------------------------------------- /apix-can-examples/can-send-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-can-examples/can-send-example.c -------------------------------------------------------------------------------- /apix-gpio-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-gpio-example/Makefile -------------------------------------------------------------------------------- /apix-gpio-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-gpio-example/README.md -------------------------------------------------------------------------------- /apix-gpio-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-gpio-example/main.c -------------------------------------------------------------------------------- /apix-i2c-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-i2c-example/Makefile -------------------------------------------------------------------------------- /apix-i2c-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-i2c-example/README.md -------------------------------------------------------------------------------- /apix-i2c-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-i2c-example/main.c -------------------------------------------------------------------------------- /apix-pm-examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pm-examples/Makefile -------------------------------------------------------------------------------- /apix-pm-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pm-examples/README.md -------------------------------------------------------------------------------- /apix-pm-examples/apix-cpu-sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pm-examples/apix-cpu-sample.c -------------------------------------------------------------------------------- /apix-pm-examples/apix-pm-sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pm-examples/apix-pm-sample.c -------------------------------------------------------------------------------- /apix-pwm-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pwm-example/Makefile -------------------------------------------------------------------------------- /apix-pwm-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pwm-example/README.md -------------------------------------------------------------------------------- /apix-pwm-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-pwm-example/main.c -------------------------------------------------------------------------------- /apix-spi-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-spi-example/Makefile -------------------------------------------------------------------------------- /apix-spi-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-spi-example/README.md -------------------------------------------------------------------------------- /apix-spi-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-spi-example/main.c -------------------------------------------------------------------------------- /apix-watchdog-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-watchdog-example/Makefile -------------------------------------------------------------------------------- /apix-watchdog-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-watchdog-example/README.md -------------------------------------------------------------------------------- /apix-watchdog-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/apix-watchdog-example/main.c -------------------------------------------------------------------------------- /awsiot-sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/Makefile -------------------------------------------------------------------------------- /awsiot-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/README.md -------------------------------------------------------------------------------- /awsiot-sample/cfg_files/awsiotsdk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/cfg_files/awsiotsdk.conf -------------------------------------------------------------------------------- /awsiot-sample/src/aws_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/aws_config.c -------------------------------------------------------------------------------- /awsiot-sample/src/aws_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/aws_config.h -------------------------------------------------------------------------------- /awsiot-sample/src/aws_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/aws_control.c -------------------------------------------------------------------------------- /awsiot-sample/src/aws_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/aws_control.h -------------------------------------------------------------------------------- /awsiot-sample/src/daemonize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/daemonize.c -------------------------------------------------------------------------------- /awsiot-sample/src/daemonize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/daemonize.h -------------------------------------------------------------------------------- /awsiot-sample/src/device_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/device_control.c -------------------------------------------------------------------------------- /awsiot-sample/src/device_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/device_control.h -------------------------------------------------------------------------------- /awsiot-sample/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/awsiot-sample/src/main.c -------------------------------------------------------------------------------- /ble-gatt-server-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/Makefile -------------------------------------------------------------------------------- /ble-gatt-server-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/README.md -------------------------------------------------------------------------------- /ble-gatt-server-example/ble-gatt-server-app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/ble-gatt-server-app.c -------------------------------------------------------------------------------- /ble-gatt-server-example/ble-gatt-server-app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/ble-gatt-server-app.h -------------------------------------------------------------------------------- /ble-gatt-server-example/subprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/subprocess.c -------------------------------------------------------------------------------- /ble-gatt-server-example/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/ble-gatt-server-example/subprocess.h -------------------------------------------------------------------------------- /caam-blob-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/Makefile -------------------------------------------------------------------------------- /caam-blob-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/README.md -------------------------------------------------------------------------------- /caam-blob-example/caam_keyblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/caam_keyblob.h -------------------------------------------------------------------------------- /caam-blob-example/caam_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/caam_ops.c -------------------------------------------------------------------------------- /caam-blob-example/caam_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/caam_ops.h -------------------------------------------------------------------------------- /caam-blob-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/caam-blob-example/main.c -------------------------------------------------------------------------------- /cccs-data-request-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-data-request-example/Makefile -------------------------------------------------------------------------------- /cccs-data-request-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-data-request-example/README.md -------------------------------------------------------------------------------- /cccs-data-request-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-data-request-example/main.c -------------------------------------------------------------------------------- /cccs-examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-examples.mk -------------------------------------------------------------------------------- /cccs-maintenance-status-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-maintenance-status-example/Makefile -------------------------------------------------------------------------------- /cccs-maintenance-status-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-maintenance-status-example/README.md -------------------------------------------------------------------------------- /cccs-maintenance-status-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-maintenance-status-example/main.c -------------------------------------------------------------------------------- /cccs-upload-binary-file-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-binary-file-example/Makefile -------------------------------------------------------------------------------- /cccs-upload-binary-file-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-binary-file-example/README.md -------------------------------------------------------------------------------- /cccs-upload-binary-file-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-binary-file-example/main.c -------------------------------------------------------------------------------- /cccs-upload-data-points-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-data-points-example/Makefile -------------------------------------------------------------------------------- /cccs-upload-data-points-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-data-points-example/README.md -------------------------------------------------------------------------------- /cccs-upload-data-points-example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cccs-upload-data-points-example/main.c -------------------------------------------------------------------------------- /connectcore-demo-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/README.md -------------------------------------------------------------------------------- /connectcore-demo-example/demoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/demoserver.py -------------------------------------------------------------------------------- /connectcore-demo-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/index.html -------------------------------------------------------------------------------- /connectcore-demo-example/management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/management.html -------------------------------------------------------------------------------- /connectcore-demo-example/multimedia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/multimedia.html -------------------------------------------------------------------------------- /connectcore-demo-example/multimedia_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/multimedia_viewer.html -------------------------------------------------------------------------------- /connectcore-demo-example/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/network.html -------------------------------------------------------------------------------- /connectcore-demo-example/npu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/npu.html -------------------------------------------------------------------------------- /connectcore-demo-example/static/assets/npu_demos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/assets/npu_demos.json -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/css/bootstrap4-toggle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/css/bootstrap4-toggle.min.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.7.3/css/bootstrap-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.7.3/css/bootstrap-slider.min.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/fontawesome5.15.4/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/fontawesome5.15.4/all.min.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/general.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/toastr.css -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /connectcore-demo-example/static/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /connectcore-demo-example/static/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/Digi_logo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/Digi_logo_banner.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/Digi_logo_banner_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/Digi_logo_banner_gray.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/aquarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/aquarium.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/big_buck_bunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/big_buck_bunny.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/blob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/blob.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx6sbc_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx6sbc_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx6ulsbc_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx6ulsbc_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx8mm-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx8mm-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx8mn-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx8mn-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx8x-sbc-pro_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx8x-sbc-pro_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccimx93-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccimx93-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccmp13-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccmp13-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccmp15-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccmp15-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ccmp25-dvk_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ccmp25-dvk_board.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/combo_arrow_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/combo_arrow_gray.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/combo_arrow_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/combo_arrow_green.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/cpu.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/electricflower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/electricflower.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/hide_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/hide_info.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/hide_info_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/hide_info_green.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/led_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/led_bubble.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/led_bubble_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/led_bubble_blue.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/led_bubble_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/led_bubble_hover.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/loading.gif -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/multiple-views.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/multiple-views.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_drowsy_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_drowsy_detection.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_face_recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_face_recognition.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_gesture_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_gesture_detection.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_image_classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_image_classification.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_object_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_object_detection.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_pose_estimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_pose_estimation.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/npu_semantic_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/npu_semantic_segmentation.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/ram.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/remove.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/show_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/show_info.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/show_info_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/show_info_green.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/spacerocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/spacerocks.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/toon-shading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/toon-shading.jpg -------------------------------------------------------------------------------- /connectcore-demo-example/static/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/images/warning.png -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx6qpsbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx6qpsbc.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx6sbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx6sbc.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx6ulsbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx6ulsbc.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx8m-nano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx8m-nano.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx8mm-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx8mm-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx8x-sbc-pro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx8x-sbc-pro.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx91-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx91-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccimx93-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccimx93-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccmp133-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccmp133-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccmp157-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccmp157-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/ccmp255-dvk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/ccmp255-dvk.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/js/bootstrap4-toggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/js/bootstrap4-toggle.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.7.3/bootstrap-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.7.3/bootstrap-slider.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/code.jquery.com/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/code.jquery.com/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/common.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/dashboard.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/devices.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/file-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/file-system.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/jquery.matchHeight-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/jquery.matchHeight-min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/jquery.pjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/jquery.pjax.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/management.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/multimedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/multimedia.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/network.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/npu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/npu.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/sidebar.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/simple-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/simple-timer.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/js/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/js/toastr.min.js -------------------------------------------------------------------------------- /connectcore-demo-example/static/sounds/inspire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/connectcore-demo-example/static/sounds/inspire.mp3 -------------------------------------------------------------------------------- /cryptochip-get-random/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cryptochip-get-random/Makefile -------------------------------------------------------------------------------- /cryptochip-get-random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cryptochip-get-random/README.md -------------------------------------------------------------------------------- /cryptochip-get-random/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/cryptochip-get-random/main.c -------------------------------------------------------------------------------- /libdigiapix-examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/libdigiapix-examples.mk -------------------------------------------------------------------------------- /samples-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digi-embedded/dey-examples/HEAD/samples-manifest.xml --------------------------------------------------------------------------------