mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 04:34:31 +02:00
ulp: typo fix
rd_reg comment references incorrect OPCODE ("OPCODE_WR_REG"); amended to "OPCODE_RD_REG". Merges https://github.com/espressif/esp-idf/pull/4098
This commit is contained in:
committed by
Ivan Grokhotkov
parent
3e6d1804a3
commit
137bc6658c
@@ -232,7 +232,7 @@ union ulp_insn {
|
|||||||
uint32_t unused : 8; /*!< Unused */
|
uint32_t unused : 8; /*!< Unused */
|
||||||
uint32_t low : 5; /*!< Low bit */
|
uint32_t low : 5; /*!< Low bit */
|
||||||
uint32_t high : 5; /*!< High bit */
|
uint32_t high : 5; /*!< High bit */
|
||||||
uint32_t opcode : 4; /*!< Opcode (OPCODE_WR_REG) */
|
uint32_t opcode : 4; /*!< Opcode (OPCODE_RD_REG) */
|
||||||
} rd_reg; /*!< Format of RD_REG instruction */
|
} rd_reg; /*!< Format of RD_REG instruction */
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
@@ -201,7 +201,7 @@ union ulp_insn {
|
|||||||
uint32_t unused : 8; /*!< Unused */
|
uint32_t unused : 8; /*!< Unused */
|
||||||
uint32_t low : 5; /*!< Low bit */
|
uint32_t low : 5; /*!< Low bit */
|
||||||
uint32_t high : 5; /*!< High bit */
|
uint32_t high : 5; /*!< High bit */
|
||||||
uint32_t opcode : 4; /*!< Opcode (OPCODE_WR_REG) */
|
uint32_t opcode : 4; /*!< Opcode (OPCODE_RD_REG) */
|
||||||
} rd_reg; /*!< Format of RD_REG instruction */
|
} rd_reg; /*!< Format of RD_REG instruction */
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
Reference in New Issue
Block a user