Functions | |
void | FLASH_Apply_Q_UT_inc_cntl_init () |
void | FLASH_Apply_Q_UT_inc_cntl_finalize () |
Variables | |
fla_apqut_t * | flash_apqut_cntl |
fla_apqutud_t * | flash_apqutud_cntl |
fla_apqutinc_t * | flash_apqutinc_cntl |
fla_blocksize_t * | flash_apqutinc_var1_bsize |
void FLASH_Apply_Q_UT_inc_cntl_finalize | ( | void | ) |
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
00055 { 00056 FLA_Cntl_obj_free( flash_apqutinc_cntl ); 00057 00058 FLA_Blocksize_free( flash_apqutinc_var1_bsize ); 00059 }
void FLASH_Apply_Q_UT_inc_cntl_init | ( | void | ) |
References FLA_Blocksize_create(), and FLA_Cntl_apqutinc_obj_create().
Referenced by FLA_Cntl_init_flash().
00042 { 00043 // Set blocksizes for hierarchical storage. 00044 flash_apqutinc_var1_bsize = FLA_Blocksize_create( 1, 1, 1, 1 ); 00045 00046 // Create a control tree to invoke variant 1. 00047 flash_apqutinc_cntl = FLA_Cntl_apqutinc_obj_create( FLA_HIER, 00048 FLA_BLOCKED_VARIANT1, 00049 flash_apqutinc_var1_bsize, 00050 flash_apqut_cntl, 00051 flash_apqutud_cntl ); 00052 }