* @brief Wrapper function for the RAM buffer. Lets you write a byte to a given * memory address * * @param index memory address * @param value 8-bit value to write to the memory location */
| 92 | * @param value 8-bit value to write to the memory location |
| 93 | */ |
| 94 | void Flash::write_buffer(uint8_t index, uint8_t value) |
| 95 | { |
| 96 | _ram_array[index] = value; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * @brief Function that returns the size of the allocated RAM buffer |
nothing calls this directly
no outgoing calls
no test coverage detected