From: Angus Gratton Date: Wed, 22 Mar 2017 06:41:44 +0000 (+0800) Subject: bt: Fix typo ESP_BT_MODE_ILDE X-Git-Tag: v2.1-rc1~245^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8438b8aa9287f803c258dd894ab06ec142df7406;p=esp-idf bt: Fix typo ESP_BT_MODE_ILDE Closes #450 https://github.com/espressif/esp-idf/issues/450 --- diff --git a/components/bt/include/bt.h b/components/bt/include/bt.h index 2c652466bd..e3bd7f0840 100644 --- a/components/bt/include/bt.h +++ b/components/bt/include/bt.h @@ -27,7 +27,7 @@ extern "C" { * @brief Bluetooth mode for controller enable/disable */ typedef enum { - ESP_BT_MODE_ILDE = 0x00, /*!< Bluetooth is not run */ + ESP_BT_MODE_IDLE = 0x00, /*!< Bluetooth is not running */ ESP_BT_MODE_BLE = 0x01, /*!< Run BLE mode */ ESP_BT_MODE_CLASSIC_BT = 0x02, /*!< Run Classic BT mode */ ESP_BT_MODE_BTDM = 0x03, /*!< Run dual mode */