* @brief Checks if the microcontroller contains a bootloader that has flash * writing capabilities. It does so by checking if a spesific number is placed * at the very end of the flash memory * * @return true if compatible bootloader is present * @return false if incompatible or no bootloader is present */
| 57 | * @return false if incompatible or no bootloader is present |
| 58 | */ |
| 59 | bool Flash::check_writable() |
| 60 | { |
| 61 | return ispgmwritepage076_ur(); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * @brief Clears the RAM buffer |
nothing calls this directly
no outgoing calls
no test coverage detected