Software APIs
transaction_params Struct Reference

RRAM transaction parameters. More...

Data Fields

uint32_t addr
 Start address of a RRAM transaction.
 
uint32_t op_type
 Operation type.
 
bool is_info
 Whether the transaction targets the info partition (true) or the data partition (false).
 
uint32_t word_count
 Number of 32-bit words.
 

Detailed Description

RRAM transaction parameters.

Definition at line 37 of file rram_ctrl.c.

Field Documentation

◆ addr

uint32_t transaction_params::addr

Start address of a RRAM transaction.

Full byte address; the controller truncates to the closest word-aligned address.

Definition at line 42 of file rram_ctrl.c.

◆ is_info

bool transaction_params::is_info

Whether the transaction targets the info partition (true) or the data partition (false).

Definition at line 51 of file rram_ctrl.c.

◆ op_type

uint32_t transaction_params::op_type

Operation type.

Must be one of RRAM_CTRL_CONTROL_OP_VALUE_*.

Definition at line 46 of file rram_ctrl.c.

◆ word_count

uint32_t transaction_params::word_count

Number of 32-bit words.

Definition at line 55 of file rram_ctrl.c.