bt: Fix typo ESP_BT_MODE_ILDE

Closes #450 https://github.com/espressif/esp-idf/issues/450
This commit is contained in:
Angus Gratton 2017-03-22 14:41:44 +08:00
parent 64f26be053
commit 8438b8aa92

View File

@ -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 */