MCPcopy Create free account
hub / github.com/MCUdude/MiniCore / Flash

Method Flash

avr/libraries/Flash/src/Flash.cpp:13–19  ·  view source on GitHub ↗

* @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

Source from the content-addressed store, hash-verified

11 * present
12 */
13Flash::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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected