File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
components/bt/bluedroid/btc/profile/std/gatt Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -631,7 +631,7 @@ static void btc_gattc_prepare_write_char_descr(btc_ble_gattc_args_t *arg)
631631 arg -> prep_write_descr .auth_req );
632632}
633633
634- static void btc_gattc_execute_wrtie (btc_ble_gattc_args_t * arg )
634+ static void btc_gattc_execute_write (btc_ble_gattc_args_t * arg )
635635{
636636 BTA_GATTC_ExecuteWrite (arg -> exec_write .conn_id , arg -> exec_write .is_execute );
637637}
@@ -711,7 +711,7 @@ void btc_gattc_call_handler(btc_msg_t *msg)
711711 btc_gattc_prepare_write_char_descr (arg );
712712 break ;
713713 case BTC_GATTC_ACT_EXECUTE_WRITE :
714- btc_gattc_execute_wrtie (arg );
714+ btc_gattc_execute_write (arg );
715715 break ;
716716 case BTC_GATTC_ACT_REG_FOR_NOTIFY :
717717 btc_gattc_reg_for_notify (arg );
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Expressions, Math
4444Control
4545-------
4646
47- - IF expression THEN statement - *perform statement if expression is true *
47+ - IF expression statement - *perform statement if expression is true *
4848- FOR variable = start TO end - *start for block *
4949- FOR variable = start TO end STEP value - *start for block with step *
5050- NEXT - *end of for block *
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ ESP-IDF 将会被下载到 ``~/esp/esp-idf``。
142142将 :example: `get-started/hello_world ` 拷贝到 ``~/esp `` 目录: ::
143143
144144 cd ~/esp
145- cp -r $IDF_PATH/examples/get-started/hello_world
145+ cp -r $IDF_PATH/examples/get-started/hello_world .
146146
147147ESP-IDF 的 :idf: `examples ` 目录下有一系列示例工程,都可以按照上面的方法进行创建。
148148
You can’t perform that action at this time.
0 commit comments