SmartMesh QSL for STM32F4 version

Fork of COG-AD4050_QSL by APS Lab

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dn_lock.c Source File

dn_lock.c

00001 /*
00002 Copyright (c) 2016, Dust Networks. All rights reserved.
00003 
00004 Port of the lock module to the NUCLEO-L053R8.
00005 
00006 \license See attached DN_LICENSE.txt.
00007 */
00008 
00009 #include "dn_lock.h"
00010 
00011 //=========================== variables =======================================
00012 
00013 //=========================== prototypes ======================================
00014 
00015 //=========================== public ==========================================
00016 
00017 void dn_lock() {
00018    // this sample is single threaded, no need to lock.
00019 }
00020 
00021 void dn_unlock() {
00022    // this sample is single threaded, no need to lock.
00023 }
00024 
00025 //=========================== private =========================================
00026 
00027 //=========================== helpers =========================================
00028