SmartMesh QSL for STM32F4 version

Fork of COG-AD4050_QSL by APS Lab

Revision:
0:8ca1e814a851
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dn_lock.c	Wed May 02 09:26:10 2018 +0000
@@ -0,0 +1,28 @@
+/*
+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 =========================================
+