VDev: Less verbose in header

This commit is contained in:
Lorenz Meier
2015-10-25 14:52:17 +01:00
parent bffce0c9eb
commit aafb11ae92
+2 -2
View File
@@ -181,7 +181,7 @@ protected:
*/
void lock()
{
DEVICE_DEBUG("lock");
//DEVICE_DEBUG("lock");
do {} while (px4_sem_wait(&_lock) != 0);
}
@@ -190,7 +190,7 @@ protected:
*/
void unlock()
{
DEVICE_DEBUG("unlock");
//DEVICE_DEBUG("unlock");
px4_sem_post(&_lock);
}