]> granicus.if.org Git - esp-idf/commitdiff
components/bt: Fix parameter name and print statement
authorHrishikesh Dhayagude <hrishi@espressif.com>
Fri, 9 Mar 2018 08:23:27 +0000 (13:53 +0530)
committerHrishikesh Dhayagude <hrishi@espressif.com>
Fri, 9 Mar 2018 08:23:27 +0000 (13:53 +0530)
Signed-off-by: Hrishikesh Dhayagude <hrishi@espressif.com>
components/bt/bluedroid/btc/core/btc_config.c
components/bt/bluedroid/btc/profile/std/gatt/btc_gatts.c
components/bt/bluedroid/stack/gatt/gatt_db.c

index 9249cfd8ff702ce26a38d0732136da0adef5fdae..7b733ae7b9e800c6723b6ee5b9de34172a15d39d 100644 (file)
@@ -32,7 +32,7 @@
 static const char *CONFIG_FILE_PATH = "bt_config.conf";
 static const period_ms_t CONFIG_SETTLE_PERIOD_MS = 3000;
 
-static void btc_key_value_to_string(uint8_t *key_vaule, char *value_str, int key_length);
+static void btc_key_value_to_string(uint8_t *key_value, char *value_str, int key_length);
 static osi_mutex_t lock;  // protects operations on |config|.
 static config_t *config;
 
@@ -51,16 +51,16 @@ bool btc_compare_address_key_value(const char *section, char *key_type, void *ke
     return status;
 }
 
-static void btc_key_value_to_string(uint8_t *key_vaule, char *value_str, int key_length)
+static void btc_key_value_to_string(uint8_t *key_value, char *value_str, int key_length)
 {
     const char *lookup = "0123456789abcdef";
 
-    assert(key_vaule != NULL);
+    assert(key_value != NULL);
     assert(value_str != NULL);
 
     for (size_t i = 0; i < key_length; ++i) {
-        value_str[(i * 2) + 0] = lookup[(key_vaule[i] >> 4) & 0x0F];
-        value_str[(i * 2) + 1] = lookup[key_vaule[i] & 0x0F];
+        value_str[(i * 2) + 0] = lookup[(key_value[i] >> 4) & 0x0F];
+        value_str[(i * 2) + 1] = lookup[key_value[i] & 0x0F];
     }
 
     return;
index 4ea69a54761447cac8458835d2979322584e2975..c9d759e2cadf22cd636353ec55a3e291bdbd2530 100644 (file)
@@ -404,7 +404,7 @@ static void btc_gatts_act_create_attr_tab(esp_gatts_attr_db_t *gatts_attr_db,
     //reset the env after sent the data to app
     memset(&btc_creat_tab_env, 0, sizeof(esp_btc_creat_tab_t));
 
-    //release the flag vaule to false after finish the service created.
+    //set the flag value to false after the service is created.
     btc_creat_tab_env.is_tab_creat_svc = false;
 }
 
index 91a46c6a62aaabe3b332bda55ec3d7c4c6df29ee..ec552d7bfe2dc42373161cb414fc1e220732307c 100644 (file)
@@ -794,7 +794,7 @@ tGATT_STATUS gatts_get_attribute_value(tGATT_SVC_DB *p_db, UINT16 attr_handle,
                         *value = p_cur->p_value->attr_val.attr_val;
                         return GATT_SUCCESS;
                     } else {
-                        GATT_TRACE_ERROR("gatts_get_attribute_vaule failt:the value length is 0");
+                        GATT_TRACE_ERROR("gatts_get_attribute_value failed:the value length is 0");
                         return GATT_INVALID_ATTR_LEN;
                     }
                     break;
@@ -805,7 +805,7 @@ tGATT_STATUS gatts_get_attribute_value(tGATT_SVC_DB *p_db, UINT16 attr_handle,
                     *value = p_cur->p_value->attr_val.attr_val;
                     return GATT_SUCCESS;
                 } else {
-                    GATT_TRACE_ERROR("gatts_get_attribute_vaule failed:the value length is 0");
+                    GATT_TRACE_ERROR("gatts_get_attribute_value failed:the value length is 0");
                     return GATT_INVALID_ATTR_LEN;
                 }