/*----------------------------------------------------------------------------- * Name: CV_Config.h * Purpose: CV Config header *---------------------------------------------------------------------------- * Copyright (c) 2017 ARM Limited. All rights reserved. *----------------------------------------------------------------------------*/ #ifndef __CV_CONFIG_H #define __CV_CONFIG_H #include "RTE_Components.h" #include CMSIS_device_header //-------- <<< Use Configuration Wizard in Context Menu >>> -------------------- // Common Test Settings // Print Output Format <0=> Plain Text <1=> XML // Set the test results output format to plain text or XML #ifndef PRINT_XML_REPORT #define PRINT_XML_REPORT 0 #endif // Buffer size for assertions results // Set the buffer size for assertions results buffer #define BUFFER_ASSERTIONS 128U // // Disable Test Cases // Uncheck to disable an individual test case // TC_CoreInstr_NOP // TC_CoreInstr_REV // TC_CoreInstr_REV16 // TC_CoreInstr_REVSH // TC_CoreInstr_ROR // TC_CoreInstr_RBIT // TC_CoreInstr_CLZ // TC_CoreInstr_SSAT // TC_CoreInstr_USAT // // TC_CoreAFunc_FPSCR // TC_CoreAFunc_CPSR // TC_CoreAFunc_Mode // TC_CoreAFunc_SP // TC_CoreAFunc_SP_usr // TC_CoreAFunc_FPEXC // TC_COREAFUNC_ACTLR // TC_COREAFUNC_CPACR // TC_COREAFUNC_DFSR // TC_COREAFUNC_IFSR // TC_COREAFUNC_ISR // TC_COREAFUNC_CBAR // TC_COREAFUNC_TTBR0 // TC_COREAFUNC_DACR // TC_COREAFUNC_SCTLR // TC_COREAFUNC_ACTRL // TC_COREAFUNC_MPIDR // TC_COREAFUNC_VBAR // // TC_GENTIMER_CNTFRQ // TC_GENTIMER_CNTP_TVAL // TC_GENTIMER_CNTP_CTL // TC_GENTIMER_CNTPCT // TC_GENTIMER_CNTP_CVAL #define TC_COREINSTR_NOP_EN 1 #define TC_COREINSTR_REV_EN 1 #define TC_COREINSTR_REV16_EN 1 #define TC_COREINSTR_REVSH_EN 1 #define TC_COREINSTR_ROR_EN 1 #define TC_COREINSTR_RBIT_EN 1 #define TC_COREINSTR_CLZ_EN 1 #define TC_COREINSTR_SSAT_EN 1 #define TC_COREINSTR_USAT_EN 1 #define TC_COREAFUNC_IRQ 1 #define TC_COREAFUNC_FPSCR 1 #define TC_COREAFUNC_CPSR 1 #define TC_COREAFUNC_MODE 1 #define TC_COREAFUNC_SP 1 #define TC_COREAFUNC_SP_USR 1 #define TC_COREAFUNC_FPEXC 1 #define TC_COREAFUNC_ACTLR 1 #define TC_COREAFUNC_CPACR 1 #define TC_COREAFUNC_DFSR 1 #define TC_COREAFUNC_IFSR 1 #define TC_COREAFUNC_ISR 1 #define TC_COREAFUNC_CBAR 1 #define TC_COREAFUNC_TTBR0 1 #define TC_COREAFUNC_DACR 1 #define TC_COREAFUNC_SCTLR 1 #define TC_COREAFUNC_ACTRL 1 #define TC_COREAFUNC_MPIDR 1 #define TC_COREAFUNC_VBAR 1 #define TC_GENTIMER_CNTFRQ 1 #define TC_GENTIMER_CNTP_TVAL 1 #define TC_GENTIMER_CNTP_CTL 1 #define TC_GENTIMER_CNTPCT 1 #define TC_GENTIMER_CNTP_CVAL 1 // #endif /* __CV_CONFIG_H */