Skip to content

Commit

Permalink
Update boottidal.md
Browse files Browse the repository at this point in the history
Make sure to call out the need for the loopback address.

Without it you get a very meaningless error
  • Loading branch information
poucet committed May 30, 2023
1 parent 1961156 commit d4049bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/configuration/boottidal.md
Expand Up @@ -101,7 +101,7 @@ tidal <- startTidal (superdirtTarget {oLatency = 0.05}) (defaultConfig {cFrameTi
If you're running **SuperDirt** in another host (perhaps, in a multi-user setup), you need to define this in a similar fashion as with the latency, except in this case the keyname is `oAddress`:

```haskell
tidal <- startTidal (superdirtTarget {oAddress = "192.168.0.23", oPort = 57120}) defaultConfig
tidal <- startTidal (superdirtTarget {oAddress = "192.168.0.23", oPort = 57120}) (defaultConfig {cCtrlAddr = "0.0.0.0"})
```

In case you need to alter multiple settings for `superdirtTarget`, just separate them by a comma:
Expand Down

0 comments on commit d4049bb

Please sign in to comment.