Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markdown formatting in persistence provider Readme #17

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions kuksa-persistence-provider/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,20 +83,27 @@ As the statestore does not make a difference between current and target (actuati

json_djson = [ "dep:djson","dep:tinyjson" ] # Uncommment to use djson
```

* Install rust nightly which is needed for djson at the moment [11/2024]
```bash

* ```bash
rustup toolchain install nightly
rustup default nightly
```
* Enable with ```cargo build --features json_djson --no-default-features``````

* Enable with ```cargo build --features json_djson --no-default-features```

## Build

```bash
cargo build
# with features, see above for prerequisites
```

alternatively, with features: see above for prerequisites

```bash
cargo build --features json_djson --no-default-features
```

## Test

Expand Down Expand Up @@ -126,7 +133,8 @@ cargo build --features json_djson --no-default-features
* In Terminal B) :

```bash
# Set Vales in cmd
# Set Values in cmd
setValue Vehicle.Cabin.HVAC.Station.Row4.Passenger.FanSpeed 40
```

SebastianSchildt marked this conversation as resolved.
Show resolved Hide resolved
3) Restart and check if datapoint with old value is restored by persistency provider
Loading