]> granicus.if.org Git - esp-idf/commitdiff
Correct source code encoding
authorRoland Dobai <dobai.roland@gmail.com>
Thu, 19 Jul 2018 11:58:57 +0000 (13:58 +0200)
committerRoland Dobai <dobai.roland@gmail.com>
Thu, 19 Jul 2018 12:00:44 +0000 (14:00 +0200)
components/bt/bluedroid/stack/include/stack/avrc_defs.h
components/driver/uart.c

index 1933d8a96c90f43e8f7ba800eab40f11022cd070..8c56cf532742cc745eb18ba7793da9ae811d3859 100644 (file)
 
 /* command type codes */
 #define AVRC_CMD_CTRL       0   /* Instruct a target to perform an operation */
-#define AVRC_CMD_STATUS     1   /* Check a device\92s current status */
+#define AVRC_CMD_STATUS     1   /* Check a deviceÂ\92s current status */
 #define AVRC_CMD_SPEC_INQ   2   /* Check whether a target supports a particular
                                    control command; all operands are included */
-#define AVRC_CMD_NOTIF      3   /* Used for receiving notification of a change in a device\92s state */
+#define AVRC_CMD_NOTIF      3   /* Used for receiving notification of a change in a deviceÂ\92s state */
 #define AVRC_CMD_GEN_INQ    4   /* Check whether a target supports a particular
                                    control command; operands are not included */
 
 /* response type codes */
 #define AVRC_RSP_NOT_IMPL   8   /* The target does not implement the command specified
                                    by the opcode and operand,
-                                   or doesn\92t implement the specified subunit */
+                                   or doesnÂ\92t implement the specified subunit */
 #define AVRC_RSP_ACCEPT     9   /* The target executed or is executing the command */
 #define AVRC_RSP_REJ        10  /* The target implements the command specified by the
                                    opcode but cannot respond because the current state
-                                   of the target doesn\92t allow it */
+                                   of the target doesnÂ\92t allow it */
 #define AVRC_RSP_IN_TRANS   11  /* The target implements the status command but it is
                                    in a state of transition; the status command may
                                    be retried at a future time */
@@ -70,7 +70,7 @@
                                    commands, the target returns stable and includes
                                    the status results */
 #define AVRC_RSP_CHANGED    13  /* The response frame contains a notification that the
-                                   target device\92s state has changed */
+                                   target deviceÂ\92s state has changed */
 #define AVRC_RSP_INTERIM    15  /* For control commands, the target has accepted the
                                    request but cannot return information within 100
                                    milliseconds; for notify commands, the target accepted
index 6f1b4571fa6c37870554486a2262e2f543248ae3..b1b8ae78910925e260b5fe8f2051b27a48b9960c 100644 (file)
@@ -1464,7 +1464,7 @@ esp_err_t uart_set_mode(uart_port_t uart_num, uart_mode_t mode)
     case UART_MODE_RS485_COLLISION_DETECT:
         // This mode allows read while transmitting that allows collision detection
         p_uart_obj[uart_num]->coll_det_flg = false;
-        // Transmitter\92s output signal loop back to the receiver\92s input signal
+        // TransmitterÂ\92s output signal loop back to the receiverÂ\92s input signal
         UART[uart_num]->rs485_conf.tx_rx_en = 0 ;
         // Transmitter should send data when its receiver is busy
         UART[uart_num]->rs485_conf.rx_busy_tx_en = 1;