It would be really useful if the erase value of a flash was exposed on the `NorFlash` trait(s). Maybe with a default of 0xFF, something like: ```rust trait NorFlash { ... const ERASE_VALUE: u8 = 0xFF; } ```