* @brief Construct a new Flash:: Flash object * * @param flash_array the flash space array the library will utilize * @param flash_array_size total size of the flash space array in bytes * @param ram_array the RAM buffer array the library will utilize * @param ram_array_size total size of the ram array in bytes. This is an * optional parameter, and defaults to SPM_PAGESIZE, the flash page si
| 11 | * present |
| 12 | */ |
| 13 | Flash::Flash(const uint8_t * flash_array, const uint16_t flash_array_size, uint8_t *ram_array, const uint16_t ram_array_size) |
| 14 | : _flash_array(flash_array), |
| 15 | _flash_array_size(flash_array_size), |
| 16 | _ram_array(ram_array), |
| 17 | _ram_array_size(ram_array_size) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * @brief Lets you use the created object as a placeholder for the |
nothing calls this directly
no outgoing calls
no test coverage detected