Ver Fonte

Fix comments in ULP MOVE instruction examples

Merges https://github.com/espressif/esp-idf/pull/2992
fivdi há 7 anos atrás
pai
commit
178c9d15de
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      docs/en/api-guides/ulp_instruction_set.rst

+ 2 - 2
docs/en/api-guides/ulp_instruction_set.rst

@@ -336,9 +336,9 @@ Note that when accessing RTC memories and RTC registers, ULP coprocessor has low
 
 **Examples**::
 
-  1:        MOVE       R1, R2            //R1 = R2 >> R3
+  1:        MOVE       R1, R2            //R1 = R2
 
-  2:        MOVE       R1, 0x03          //R1 = R2 >> 0x03
+  2:        MOVE       R1, 0x03          //R1 = 0x03
 
   3:        .set       value1, 0x03      //constant value1=0x03
             MOVE       R1, value1        //R1 = value1