Command line interface tools used to maintain or simulate VSCP nodes.
The Very Simple Control Protocol (VSCP), an open and free protocol for IoT/m2m automation tasks.
More information can be found on the main site http://www.vscp.org
Project | Description |
---|---|
logger | Tool which shows VSCP events on the command line, which are received by a daemon connection. |
nodeSim | Simulates a single VSCP node. It can be called several times with different configurations to simulate more than one VSCP node. |
programmer | Tool to program VSCP nodes over a VSCP daemon connection. It uses the VSCP standard bootloader algorithm. |
Get the standard gcc build environment:
$ sudo apt update
$ sudo apt install build-essential
- Install MSYS2 (https://www.msys2.org/) and follow the complete installation instructions there. Only installing the MSYS2 binary is not enough! There are several steps in the MSYS2 shell necessary.
- The gcc build environment will be available in the "MSYS MinGW 64-bit" shell.
The vscp-framework is added as git submodule. Therefore use
$ git clone --recursive https://github.com/BlueAndi/vscp-cli-tools.git
If already cloned and just a update of the vscp-framework shall be done, use:
$ git submodule update --remote
Choose the project by entering the corresponding folder, e.g. /nodeSim
.
Build debug variant with make debug
or use make release
for the release variant.
The result will be in the /<project>/bin
folder.
If you have further ideas or you found some bugs, great! Create a issue or if you are able and willing to fix it by yourself, clone the repository and create a pull request.
The whole source code is published under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.