File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ Includes `synapsectl` command line utility:
3030 read Read from a device's StreamOut node
3131 plot Plot recorded synapse data
3232
33-
3433As well as the base for a device implementation (` synapse/server ` ),
3534
3635And a toy device ` synapse-sim ` for local development,
@@ -117,7 +116,7 @@ info = device.info()
117116
118117print (" Device info: " , device.info())
119118
120- stream_out = syn.StreamOut(label = " my broadband" , multicast_group = " 239 .0.0.1" )
119+ stream_out = syn.StreamOut(label = " my broadband" , multicast_group = " 224 .0.0.1" )
121120broadband = syn.BroadbandSource(
122121 peripheral_id = 2 ,
123122 sample_rate_hz = 30000 ,
@@ -179,8 +178,9 @@ pre-commit run
179178```
180179
181180## Plotting Offline
181+
182182After recording data to a file, you can generate plots to visualize your data. Using the CLI, you can run:
183183
184184```
185185synapsectl plot --dir <path to directory containing .dat and .json>
186- ```
186+ ```
Original file line number Diff line number Diff line change 66 assert info is not None , "Couldn't get device info"
77 print (info )
88
9- stream_out = syn .StreamOut (label = "my broadband" , multicast_group = "239 .0.0.1" )
9+ stream_out = syn .StreamOut (label = "my broadband" , multicast_group = "224 .0.0.1" )
1010 broadband = syn .BroadbandSource (
1111 peripheral_id = 2 ,
1212 sample_rate_hz = 30000 ,
Original file line number Diff line number Diff line change 44 "type" : " kStreamOut" ,
55 "id" : 1 ,
66 "stream_out" : {
7- "multicast_group" : " 239 .0.0.115"
7+ "multicast_group" : " 224 .0.0.115"
88 }
99 },
1010 {
You can’t perform that action at this time.
0 commit comments