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

Committer:
jhbr
Date:
Fri Nov 04 14:19:34 2016 +0000
Revision:
9:f723949a18b7
Parent:
0:d3f5fdf2e6da
Deactivated DEBUG prints and updated mbed library to v128

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhbr 0:d3f5fdf2e6da 1 /*
jhbr 0:d3f5fdf2e6da 2 Copyright (c) 2016, Dust Networks. All rights reserved.
jhbr 0:d3f5fdf2e6da 3
jhbr 0:d3f5fdf2e6da 4 Port of the watchdog module to the NUCLEO-L053R8.
jhbr 0:d3f5fdf2e6da 5
jhbr 0:d3f5fdf2e6da 6 \license See attached DN_LICENSE.txt.
jhbr 0:d3f5fdf2e6da 7 */
jhbr 0:d3f5fdf2e6da 8
jhbr 0:d3f5fdf2e6da 9
jhbr 0:d3f5fdf2e6da 10 #include "dn_watchdog.h"
jhbr 0:d3f5fdf2e6da 11
jhbr 0:d3f5fdf2e6da 12 //=========================== variables =======================================
jhbr 0:d3f5fdf2e6da 13
jhbr 0:d3f5fdf2e6da 14 //=========================== prototypes ======================================
jhbr 0:d3f5fdf2e6da 15
jhbr 0:d3f5fdf2e6da 16 //=========================== public ==========================================
jhbr 0:d3f5fdf2e6da 17
jhbr 0:d3f5fdf2e6da 18 void dn_watchdog_feed(void)
jhbr 0:d3f5fdf2e6da 19 {
jhbr 0:d3f5fdf2e6da 20 // Nothing to do since we have not implemented a watchdog in this example
jhbr 0:d3f5fdf2e6da 21 }
jhbr 0:d3f5fdf2e6da 22
jhbr 0:d3f5fdf2e6da 23 //=========================== private =========================================
jhbr 0:d3f5fdf2e6da 24
jhbr 0:d3f5fdf2e6da 25 //=========================== helpers =========================================
jhbr 0:d3f5fdf2e6da 26