Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,38 @@ Includes `synapsectl` command line utility:

% synapsectl --help
usage: synapsectl [-h] [--uri URI] [--version] [--verbose]
{discover,info,query,start,stop,configure,logs,read,plot,file} ...
{discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy} ...

Synapse Device Manager

options:
-h, --help show this help message and exit
--uri URI The device identifier to connect to. Can either be the IP address or name
--uri URI, -u URI The device identifier to connect to. Can either be the IP address or name
--version show program's version number and exit
--verbose, -v Enable verbose output

Commands:
{discover,info,query,start,stop,configure,logs,read,plot,file}
{discover,info,query,start,stop,configure,logs,read,plot,file,taps,deploy}
discover Discover Synapse devices on the network
info Get device information
query Execute a query on the device
start Start the device
stop Stop the device
start Start the device or an application
stop Stop the device or an application
configure Write a configuration to the device
logs Get logs from the device
read Read from a device's StreamOut node
plot Plot recorded synapse data
file File commands
taps Interact with taps on the network
deploy Deploy an application to a Synapse device

As well as the base for a device implementation (`synapse/server`),

And a toy device `synapse-sim` for local development,

% synapse-sim --help
usage: synapse-sim [-h] --iface-ip IFACE_IP [--rpc-port RPC_PORT]
[--discovery-port DISCOVERY_PORT] [--discovery-addr DISCOVERY_ADDR] [--name NAME] [--serial SERIAL]
[-v]
usage: synapse-sim [-h] --iface-ip IFACE_IP [--rpc-port RPC_PORT] [--discovery-port DISCOVERY_PORT]
[--discovery-addr DISCOVERY_ADDR] [--name NAME] [--serial SERIAL] [-v]

Simple Synapse Device Simulator (Development)

Expand Down Expand Up @@ -96,6 +97,7 @@ To update the buffer size immediately:
```
sudo sysctl -w kern.ipc.maxsockbuf=10485760
```

This change will be lost when restarting your computer. To make the setting persistent across reboots, add the following to `/etc/sysctl.conf` (you must create the file if it does not already exist):

```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(
name="science-synapse",
version="2.2.0",
version="2.2.1",
description="Client library and CLI for the Synapse API",
author="Science Team",
author_email="team@science.xyz",
Expand Down