mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-23 21:50:55 +01:00
Fix IDF version check.
This commit is contained in:
parent
89bf89f153
commit
cbebbd0dc0
2 changed files with 6 additions and 5 deletions
|
@ -464,8 +464,8 @@ void NimBLEClient::updateConnParams(uint16_t minInterval, uint16_t maxInterval,
|
||||||
* @param [in] tx_octets The preferred number of payload octets to use (Range 0x001B-0x00FB).
|
* @param [in] tx_octets The preferred number of payload octets to use (Range 0x001B-0x00FB).
|
||||||
*/
|
*/
|
||||||
void NimBLEClient::setDataLen(uint16_t tx_octets) {
|
void NimBLEClient::setDataLen(uint16_t tx_octets) {
|
||||||
#if defined(CONFIG_NIMBLE_CPP_IDF) && defined(ESP_IDF_VERSION) && \
|
#if defined(CONFIG_NIMBLE_CPP_IDF) && !defined(ESP_IDF_VERSION) || \
|
||||||
ESP_IDF_VERSION_MAJOR >= 4 && ESP_IDF_VERSION_MINOR >= 3 && ESP_IDF_VERSION_PATCH >= 2
|
(ESP_IDF_VERSION_MAJOR * 100 + ESP_IDF_VERSION_MINOR * 10 + ESP_IDF_VERSION_PATCH) < 432
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
uint16_t tx_time = (tx_octets + 14) * 8;
|
uint16_t tx_time = (tx_octets + 14) * 8;
|
||||||
|
|
|
@ -323,7 +323,8 @@ NimBLEConnInfo NimBLEServer::getPeerIDInfo(uint16_t id) {
|
||||||
* @param [in] param
|
* @param [in] param
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
/*STATIC*/int NimBLEServer::handleGapEvent(struct ble_gap_event *event, void *arg) {
|
/*STATIC*/
|
||||||
|
int NimBLEServer::handleGapEvent(struct ble_gap_event *event, void *arg) {
|
||||||
NimBLEServer* server = (NimBLEServer*)arg;
|
NimBLEServer* server = (NimBLEServer*)arg;
|
||||||
NIMBLE_LOGD(LOG_TAG, ">> handleGapEvent: %s",
|
NIMBLE_LOGD(LOG_TAG, ">> handleGapEvent: %s",
|
||||||
NimBLEUtils::gapEventToString(event->type));
|
NimBLEUtils::gapEventToString(event->type));
|
||||||
|
@ -782,8 +783,8 @@ void NimBLEServer::updateConnParams(uint16_t conn_handle,
|
||||||
* @param [in] tx_octets The preferred number of payload octets to use (Range 0x001B-0x00FB).
|
* @param [in] tx_octets The preferred number of payload octets to use (Range 0x001B-0x00FB).
|
||||||
*/
|
*/
|
||||||
void NimBLEServer::setDataLen(uint16_t conn_handle, uint16_t tx_octets) {
|
void NimBLEServer::setDataLen(uint16_t conn_handle, uint16_t tx_octets) {
|
||||||
#if defined(CONFIG_NIMBLE_CPP_IDF) && defined(ESP_IDF_VERSION) && \
|
#if defined(CONFIG_NIMBLE_CPP_IDF) && !defined(ESP_IDF_VERSION) || \
|
||||||
ESP_IDF_VERSION_MAJOR >= 4 && ESP_IDF_VERSION_MINOR >= 3 && ESP_IDF_VERSION_PATCH >= 2
|
(ESP_IDF_VERSION_MAJOR * 100 + ESP_IDF_VERSION_MINOR * 10 + ESP_IDF_VERSION_PATCH) < 432
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
uint16_t tx_time = (tx_octets + 14) * 8;
|
uint16_t tx_time = (tx_octets + 14) * 8;
|
||||||
|
|
Loading…
Reference in a new issue