Skip to content

Commit f8905e9

Browse files
committed
wip: documentation
1 parent bd41865 commit f8905e9

2 files changed

+93
-40
lines changed

MILESTONE-3-EXAMPLE-APPLICATION.md

+55-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88
- [Workflow](#workflow)
99
- [Submitting Data to Chain](#submitting-data-to-chain)
1010
- [Checking Data on Chain](#checking-data-on-chain)
11+
- [Running the demo](#running-the-demo)
12+
- [Starting USB device](#starting-usb-device)
13+
- [Running host client application](#running-host-client-application)
1114
- [Links](#links)
12-
- [CardanoScan](#cardanoscan)
15+
- [Transactions and data from live demo on CardanoScan](#transactions-and-data-from-live-demo-on-cardanoscan)
1316

1417

1518
## Application
@@ -55,6 +58,56 @@ The project consists of two parts: a host application and device firmware. After
5558
- `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).
5659
- 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`.
5760

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:
98+
99+
```shell
100+
./submissionsubmission_demo.sh "/dev/ttyACM0" submit
101+
```
102+
103+
To verify sensor readings stored on chain:
104+
105+
```shell
106+
./submission_demo.sh "/dev/ttyACM0" verify
107+
```
108+
109+
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+
58111
## Links
59112

60113
- 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
64117
- [J-Link software pack](https://www.segger.com/products/debug-probes/j-link/tools/j-link-software/)
65118
- [usbpid](https://learn.microsoft.com/en-us/windows/wsl/connect-usb) instruction
66119

67-
### CardanoScan
120+
### Transactions and data from live demo on CardanoScan
68121

69122
- [1st submitted transaction](https://preprod.cardanoscan.io/transaction/90516bf936e764cbc2cc16164d706b4c542cacec76b9fc45c679b191e0fdd414) - id `90516bf936e764cbc2cc16164d706b4c542cacec76b9fc45c679b191e0fdd414`
70123
- [2nd submitted transaction](https://preprod.cardanoscan.io/transaction/377f5e7bb8a2f865748a9456d6ad4ae9a6585dc94ea8b35e8a64dffc1e23ceab) - id `377f5e7bb8a2f865748a9456d6ad4ae9a6585dc94ea8b35e8a64dffc1e23ceab`

0 commit comments

Comments
 (0)