/** * @brief Unlocks the port TX. * @return TRUE if success. FALSE otherwise. */ bool putTxLock() { return port_tx_lock->unlock() == oslock_ok ? true : false; }
/** * @brief Releases the timer queue lock * @return OSLockResult structure */ OSLockResult putTimerQLock() { return timerq_lock->unlock(); }
/** * @brief Unlocks PDelay RX. * @return TRUE if success. FALSE otherwise */ bool putPDelayRxLock() { return pdelay_rx_lock->unlock() == oslock_ok ? true : false; }