rusEFI
The most advanced open source ECU
|
Functions | |
void | SharedParamsInit (void) |
Initializes the shared RAM parameters module. | |
bool | SharedParamsReadByIndex (uint32_t idx, uint8_t *value) |
Reads a data byte from the shared parameter buffer at the specified index. | |
bool | SharedParamsWriteByIndex (uint32_t idx, uint8_t value) |
Writes a data byte to the shared parameter buffer at the specified index. | |
void SharedParamsInit | ( | void | ) |
Initializes the shared RAM parameters module.
Definition at line 83 of file shared_params.c.
Referenced by jump_to_openblt(), and main().
bool SharedParamsReadByIndex | ( | uint32_t | idx, |
uint8_t * | value | ||
) |
Reads a data byte from the shared parameter buffer at the specified index.
idx | Index into the parameter data array. A valid value is between 0 and (SHARED_PARAMS_CFG_BUFFER_DATA_LEN - 1). |
value | Pointer to where the read data value is stored. |
Definition at line 119 of file shared_params.c.
Referenced by checkIfRebootIntoOpenBltRequested(), and checkIfResetLoop().
bool SharedParamsWriteByIndex | ( | uint32_t | idx, |
uint8_t | value | ||
) |
Writes a data byte to the shared parameter buffer at the specified index.
idx | Index into the parameter data array. A valid value is between 0 and (SHARED_PARAMS_CFG_BUFFER_DATA_LEN - 1). |
value | Value to write. |
Definition at line 145 of file shared_params.c.
Referenced by checkIfRebootIntoOpenBltRequested(), checkIfResetLoop(), jump_to_openblt(), and tryResetWatchdog().