Program that uses the QuickStart Library to interface a SmartMesh IP mote: Connects to the default network and starts publishing a random walk value every 5 seconds.

Dependencies:   mbed millis

Fork of QSL_SimplePublish by Jon-Håkon Bøe Røli

QSL SimplePublish

SmartMesh IP QuickStart Library

dn_lock.c

Committer:
jhbr
Date:
2016-11-04
Revision:
9:f723949a18b7
Parent:
0:d3f5fdf2e6da

File content as of revision 9:f723949a18b7:

/*
Copyright (c) 2016, Dust Networks. All rights reserved.

Port of the lock module to the NUCLEO-L053R8.

\license See attached DN_LICENSE.txt.
*/

#include "dn_lock.h"

//=========================== variables =======================================

//=========================== prototypes ======================================

//=========================== public ==========================================

void dn_lock() {
   // this sample is single threaded, no need to lock.
}

void dn_unlock() {
   // this sample is single threaded, no need to lock.
}

//=========================== private =========================================

//=========================== helpers =========================================