* @brief Clears the RAM buffer * * @param fill optional parameter to set what content the buffer will be * filled with. Defaults to 0x00 if not present */
| 68 | * filled with. Defaults to 0x00 if not present |
| 69 | */ |
| 70 | void Flash::clear_buffer(uint8_t fill) |
| 71 | { |
| 72 | memset(_ram_array, fill, buffer_size()); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * @brief Wrapper function for the RAM buffer. Lets you read a byte from a |
nothing calls this directly
no outgoing calls
no test coverage detected