void flash_clear_status_flags(void) { flash_clear_pgerr_flag(); flash_clear_eop_flag(); flash_clear_wrprterr_flag(); flash_clear_bsy_flag(); }
void flash_clear_status_flags(void) { flash_clear_pgserr_flag(); flash_clear_pgperr_flag(); flash_clear_pgaerr_flag(); flash_clear_eop_flag(); flash_clear_wrperr_flag(); flash_clear_bsy_flag(); }
void flash_clear_status_flags(void) { flash_clear_pgerr_flag(); flash_clear_eop_flag(); flash_clear_wrprterr_flag(); if (DESIG_FLASH_SIZE > 512) { flash_clear_pgerr_flag_upper(); flash_clear_eop_flag_upper(); flash_clear_wrprterr_flag_upper(); } }
void flash_clear_status_flags(void) { flash_clear_pgerr_flag(); flash_clear_eop_flag(); flash_clear_wrprterr_flag(); flash_clear_bsy_flag(); if (MEMORY_SIZE_REG > 512) { flash_clear_pgerr_flag_upper(); flash_clear_eop_flag_upper(); flash_clear_wrprterr_flag_upper(); flash_clear_bsy_flag_upper(); } }