There are two ways to download the QuickStart Library:
Clone the repository with git (or a git GUI client):
$ git clone https://github.com/dustcloud/QSL-for-sm_clib.git
Enter the repository:
$ cd QSL-for-sm_clib
Initialize and update the necessary C Library submodule:
(...) /QSL-for-sm_clib $ git submodule init (...) /QSL-for-sm_clib $ git submodule update |
You can also checkout the latest release with subversion:
$ svn checkout https://github.com/dustcloud/QSL-for-sm_clib.git
but then you will also have to checkout the latest release of the C Library, since SVN does not support git submodules:
$ svn checkout https://github.com/dustcloud/sm_clib.git
The QSL repository contains the following directories:
If you chose the zip download or subversion checkout, the sm_clib/ directory from the separate unzipped folder/svn checkout should be copied into the QSL repository, as some example code will expect the above structure. |
The SmartMesh QuickStart Library, and C Library it depends on, are both designed so you can drop their directories into your application without modification, i.e. these two folders from the structure above:
You are free to modify them to suit your needs; however, we recommend you avoid changing the contents of these two directories, as this will allow you to easily replace them with future revisions.
In addition to the files in these folders, you need to implement a handful of functions, as discussed in the next section.
To be able to connect to and configure the mote and manager, your computer will need the necessary FTDI Serial Drivers. Most modern OSes come with FTDI drivers pre-installed (e.g. Linux), but you may have to install them manually if they do not configure automatically when you plug in the interface board or manager. Follow the installation guide corresponding to your OS if you have any trouble.
If installed correctly, the interface board or manager should appear as a group of 4 serial ports when connected via USB:
The ports of interest are the third and fourth, which map to the CLI and API, respectively, as defined by Table 1.
Device | Serial Port Number | Usage | Baudrate | Data Bits | Parity | Stop Bits |
---|---|---|---|---|---|---|
SmartMesh IP Manager | third* | CLI | 9600 | 8 | No | 1 |
fourth* | API | 115200** | 8** | No** | 1** | |
SmartMesh IP Mote | third* | CLI | 9600 | 8 | No | 1 |
fourth* | API | 115200** | 8** | No** | 1** |
*: Refers to the serial ports created by the FTDI drivers.
**: Default values (can be changed).
Note that for Windows, the COM port assignment will change whenever you connect the interface board (or manager) to a different USB port.