You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Transactions and data from live demo on CardanoScan](#transactions-and-data-from-live-demo-on-cardanoscan)
13
16
14
17
15
18
## Application
@@ -55,6 +58,56 @@ The project consists of two parts: a host application and device firmware. After
55
58
-`Host` requests a public key from `Device` with the signing credentials that should correspond to the data stored on-chain (password and derivation path for key).
56
59
- For each UTXO from `Script address`, `Host` parses temperature data, timestamp, and `signed data` from UTXO Datum. Then performs bytes concatenation for temperature data and timestamp, making `verification data`. Using the public key acquired from `Device`, `verification data`, and `signed data`, `Host` checks that temperature data and timestamp were indeed signed by the public key acquired from `Device`.
57
60
61
+
## Running the demo
62
+
63
+
The easiest way to run the demo is to use Nix, as the repository provides a ready-to-go Nix setup. The following instructions use Nix with flake.
64
+
65
+
From the root of the project, enter the Nix shell:
66
+
67
+
```shell
68
+
nix develop
69
+
```
70
+
71
+
To flash firmware onto the device, some prior setup is required. The specifics of the setup will depend on your hardware and software. To see an example for the `NRF52 Development Kit board` and `WSL2 Debian`, check out the [live demo](https://drive.google.com/drive/folders/1P8kPAvXWtOB8tDGSoNAiuJpSlz0tRNEs).
72
+
73
+
Current setup uses [this cargo config](./examples/nrf52-demo/embedano-device/.cargo/config.toml) and [this script.gdb](./examples/nrf52-demo/embedano-device/script.gdb) to run `gdb` and flash firmware when `cargo run` is executed.
74
+
75
+
### Starting USB device
76
+
77
+
To flash firmware, from the root of the repo switch to the device directory
78
+
79
+
```shell
80
+
cd examples/nrf52-demo/embedano-device
81
+
```
82
+
83
+
Make sure device is connected to the `gdb` server and `script.gdb` has correct IP set through `"target extended-remote ..."` command. Then run `cargo run`.
84
+
85
+
If everything goes well, `script.gdb` should load firmware and start main loop. A new USB device should appear in the system, and the client application should be able to communicate with it through the newly opened serial port.
86
+
87
+
### Running host client application
88
+
89
+
In the second terminal `cd` to main stream example directory:
90
+
91
+
```shell
92
+
cd examples/nrf52-demo
93
+
```
94
+
95
+
This directory contains script [submission_demo.sh](./examples/nrf52-demo/submission_demo.sh) serves as a shortcut to run the client application. You will need to pass device serial and `mode of operation` as arguments.
96
+
97
+
To submit transaction containing sensor readings from the device:
The application then will start selected scenario according to selected `mode of operation`. To get more information about modes please check out rust docs for `demo-client` or [live demo videos](https://drive.google.com/drive/folders/1P8kPAvXWtOB8tDGSoNAiuJpSlz0tRNEs).
110
+
58
111
## Links
59
112
60
113
- Live demo - [link](https://drive.google.com/drive/folders/1P8kPAvXWtOB8tDGSoNAiuJpSlz0tRNEs)
@@ -64,7 +117,7 @@ The project consists of two parts: a host application and device firmware. After
0 commit comments