Functions | |
void | FLASH_QR_UT_inc_cntl_init () |
void | FLASH_QR_UT_inc_cntl_finalize () |
Variables | |
fla_qrut_t * | flash_qrut_cntl |
fla_apqut_t * | flash_apqut_cntl |
fla_qrutud_t * | flash_qrutud_cntl |
fla_apqutud_t * | flash_apqutud_cntl |
fla_qrutinc_t * | flash_qrutinc_cntl |
fla_blocksize_t * | flash_qrutinc_var1_bsize |
void FLASH_QR_UT_inc_cntl_finalize | ( | void | ) |
References FLA_Blocksize_free(), and FLA_Cntl_obj_free().
Referenced by FLA_Cntl_finalize_flash().
00059 { 00060 FLA_Cntl_obj_free( flash_qrutinc_cntl ); 00061 00062 FLA_Blocksize_free( flash_qrutinc_var1_bsize ); 00063 }
void FLASH_QR_UT_inc_cntl_init | ( | void | ) |
References FLA_Blocksize_create(), and FLA_Cntl_qrutinc_obj_create().
Referenced by FLA_Cntl_init_flash().
00044 { 00045 // Set blocksizes for hierarchical storage. 00046 flash_qrutinc_var1_bsize = FLA_Blocksize_create( 1, 1, 1, 1 ); 00047 00048 // Create a control tree to invoke variant 1. 00049 flash_qrutinc_cntl = FLA_Cntl_qrutinc_obj_create( FLA_HIER, 00050 FLA_BLOCKED_VARIANT1, 00051 flash_qrutinc_var1_bsize, 00052 flash_qrut_cntl, 00053 flash_apqut_cntl, 00054 flash_qrutud_cntl, 00055 flash_apqutud_cntl ); 00056 }