mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
Set task handle in constructor of NimBLETaskData.
* Create destructor for NimBLETaskData to delete semaphore if created.
This commit is contained in:
parent
5aa2fb1443
commit
6a5d6ef5e3
2 changed files with 42 additions and 21 deletions
|
@ -33,6 +33,45 @@ constexpr uint32_t TASK_BLOCK_BIT = (1 << CONFIG_NIMBLE_CPP_FREERTOS_TASK_BLOCK_
|
||||||
|
|
||||||
static const char* LOG_TAG = "NimBLEUtils";
|
static const char* LOG_TAG = "NimBLEUtils";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Construct a NimBLETaskData instance.
|
||||||
|
* @param [in] pInstance An instance of the class that will be waiting.
|
||||||
|
* @param [in] flags General purpose flags for the caller.
|
||||||
|
* @param [in] buf A buffer for data.
|
||||||
|
*/
|
||||||
|
NimBLETaskData::NimBLETaskData(void* pInstance, int flags, void* buf)
|
||||||
|
: m_pInstance{pInstance},
|
||||||
|
m_flags{flags},
|
||||||
|
m_pBuf{buf}
|
||||||
|
# if defined INC_FREERTOS_H
|
||||||
|
,
|
||||||
|
m_pHandle{xTaskGetCurrentTaskHandle()} {
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
{
|
||||||
|
ble_npl_sem* sem = new ble_npl_sem;
|
||||||
|
if (ble_npl_sem_init(sem, 0) != BLE_NPL_OK) {
|
||||||
|
NIMBLE_LOGE(LOG_TAG, "Failed to init semaphore");
|
||||||
|
delete sem;
|
||||||
|
m_pHandle = nullptr;
|
||||||
|
} else {
|
||||||
|
m_pHandle = sem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Destructor.
|
||||||
|
*/
|
||||||
|
NimBLETaskData::~NimBLETaskData() {
|
||||||
|
# if !defined INC_FREERTOS_H
|
||||||
|
if (m_pHandle != nullptr) {
|
||||||
|
ble_npl_sem_deinit(static_cast<ble_npl_sem*>(m_pHandle));
|
||||||
|
delete static_cast<ble_npl_sem*>(m_pHandle);
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Blocks the calling task until released or timeout.
|
* @brief Blocks the calling task until released or timeout.
|
||||||
* @param [in] taskData A pointer to the task data structure.
|
* @param [in] taskData A pointer to the task data structure.
|
||||||
|
@ -54,22 +93,10 @@ bool NimBLEUtils::taskWait(const NimBLETaskData& taskData, uint32_t timeout) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
taskData.m_pHandle = xTaskGetCurrentTaskHandle();
|
|
||||||
return xTaskNotifyWait(0, TASK_BLOCK_BIT, nullptr, ticks) == pdTRUE;
|
return xTaskNotifyWait(0, TASK_BLOCK_BIT, nullptr, ticks) == pdTRUE;
|
||||||
|
|
||||||
# else
|
# else
|
||||||
ble_npl_sem sem;
|
return ble_npl_sem_pend(static_cast<ble_npl_sem*>(taskData.m_pHandle), ticks) == BLE_NPL_OK;
|
||||||
ble_npl_error_t err = ble_npl_sem_init(&sem, 0);
|
|
||||||
if (err != BLE_NPL_OK) {
|
|
||||||
NIMBLE_LOGE(LOG_TAG, "Failed to create semaphore");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
taskData.m_pHandle = &sem;
|
|
||||||
err = ble_npl_sem_pend(&sem, ticks);
|
|
||||||
ble_npl_sem_deinit(&sem);
|
|
||||||
taskData.m_pHandle = nullptr;
|
|
||||||
return err == BLE_NPL_OK;
|
|
||||||
# endif
|
# endif
|
||||||
} // taskWait
|
} // taskWait
|
||||||
|
|
||||||
|
|
|
@ -21,14 +21,8 @@ class NimBLEAddress;
|
||||||
* All items are optional, the m_pHandle will be set in taskWait().
|
* All items are optional, the m_pHandle will be set in taskWait().
|
||||||
*/
|
*/
|
||||||
struct NimBLETaskData {
|
struct NimBLETaskData {
|
||||||
/**
|
NimBLETaskData(void* pInstance = nullptr, int flags = 0, void* buf = nullptr);
|
||||||
* @brief Constructor.
|
~NimBLETaskData();
|
||||||
* @param [in] pInstance An instance of the class that is waiting.
|
|
||||||
* @param [in] flags General purpose flags for the caller.
|
|
||||||
* @param [in] buf A buffer for data.
|
|
||||||
*/
|
|
||||||
NimBLETaskData(void* pInstance = nullptr, int flags = 0, void* buf = nullptr)
|
|
||||||
: m_pInstance(pInstance), m_flags(flags), m_pBuf(buf) {}
|
|
||||||
void* m_pInstance{nullptr};
|
void* m_pInstance{nullptr};
|
||||||
mutable int m_flags{0};
|
mutable int m_flags{0};
|
||||||
void* m_pBuf{nullptr};
|
void* m_pBuf{nullptr};
|
||||||
|
|
Loading…
Reference in a new issue