@@ -6,7 +6,7 @@ Includes `synapsectl` command line utility:
66
77 % synapsectl --help
88 usage: synapsectl [-h] [--uri URI] [--version] [--verbose]
9- {discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy} ...
9+ {discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy,build,settings } ...
1010
1111 Synapse Device Manager
1212
@@ -17,20 +17,21 @@ Includes `synapsectl` command line utility:
1717 --verbose, -v Enable verbose output
1818
1919 Commands:
20- {discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy,build}
20+ {discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy,build,settings }
2121 discover Discover Synapse devices on the network
2222 info Get device information
2323 query Execute a query on the device
2424 start Start the device or an application
2525 stop Stop the device or an application
2626 configure Write a configuration to the device
2727 logs Get logs from the device
28- read Read from a device's StreamOut node
28+ read Read from a device's Broadband Tap and save to HDF5
2929 plot Plot recorded synapse data
3030 file File commands
3131 taps Interact with taps on the network
3232 deploy Deploy an application to a Synapse device
3333 build Cross-compile and package an application into a .deb without deploying
34+ settings Manage the persistent device settings
3435
3536As well as the base for a device implementation (` synapse/server ` ),
3637
@@ -119,8 +120,6 @@ info = device.info()
119120
120121print (" Device info: " , device.info())
121122
122- stream_out = syn.StreamOut(label = " my broadband" , multicast_group = " 224.0.0.1" )
123-
124123channels = [
125124 syn.Channel(
126125 id = channel_num,
@@ -144,9 +143,7 @@ broadband = syn.BroadbandSource(
144143)
145144
146145config = syn.Config()
147- config.add_node(stream_out)
148146config.add_node(broadband)
149- config.connect(broadband, stream_out)
150147
151148device.configure(config)
152149device.start()
0 commit comments