mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(soc/esp32h2): Update the description of the ECDSA_WORK_MODE
This commit is contained in:
parent
4a221b0346
commit
9ed6944c0d
@ -16,8 +16,8 @@ extern "C" {
|
||||
*/
|
||||
#define ECDSA_CONF_REG (DR_REG_ECDSA_BASE + 0x4)
|
||||
/** ECDSA_WORK_MODE : R/W; bitpos: [0]; default: 0;
|
||||
* The work mode bits of ECDSA Accelerator. 0: Signature Generate Mode. 1: Signature
|
||||
* Verify Mode.
|
||||
* The work mode bits of ECDSA Accelerator. 0: Signature Verify mode. 1: Signature
|
||||
* Generate Mode.
|
||||
*/
|
||||
#define ECDSA_WORK_MODE (BIT(0))
|
||||
#define ECDSA_WORK_MODE_M (ECDSA_WORK_MODE_V << ECDSA_WORK_MODE_S)
|
||||
|
@ -19,8 +19,8 @@ extern "C" {
|
||||
typedef union {
|
||||
struct {
|
||||
/** work_mode : R/W; bitpos: [0]; default: 0;
|
||||
* The work mode bits of ECDSA Accelerator. 0: Signature Generate Mode. 1: Signature
|
||||
* Verify Mode.
|
||||
* The work mode bits of ECDSA Accelerator. 0: Signature Verify Mode. 1: Signature
|
||||
* Generate Mode.
|
||||
*/
|
||||
uint32_t work_mode:1;
|
||||
/** ecc_curve : R/W; bitpos: [1]; default: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user