SmartMesh QSL for STM32F4 version

Fork of COG-AD4050_QSL by APS Lab

dn_lock.c

Committer:
APS_Lab
Date:
2018-07-12
Revision:
1:b909b8399252
Parent:
0:8ca1e814a851

File content as of revision 1:b909b8399252:

/*
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 =========================================