/*-----------------------------------------------------------------------------
* 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_Exclusives
// TC_CoreInstr_SSAT
// TC_CoreInstr_USAT
//
// TC_CoreFunc_EnDisIRQ
// TC_CoreFunc_IRQPrio
// TC_CoreFunc_EncDecIRQPrio
// TC_CoreFunc_IRQVect
// TC_CoreFunc_Control
// TC_CoreFunc_IPSR
// TC_CoreFunc_APSR
// TC_CoreFunc_PSP
// TC_CoreFunc_MSP
// TC_CoreFunc_PRIMASK
// TC_CoreFunc_FAULTMASK
// TC_CoreFunc_BASEPRI
// TC_CoreFunc_FPUType
// TC_CoreFunc_FPSCR
//
// TC_MPU_SetClear
// TC_MPU_Load
#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_EXCLUSIVES_EN 1
#define TC_COREINSTR_SSAT_EN 1
#define TC_COREINSTR_USAT_EN 1
#define TC_COREFUNC_ENDISIRQ_EN 1
#define TC_COREFUNC_IRQPRIO_EN 1
#define TC_COREFUNC_ENCDECIRQPRIO_EN 1
#define TC_COREFUNC_IRQVECT_EN 1
#define TC_COREFUNC_CONTROL_EN 1
#define TC_COREFUNC_IPSR_EN 1
#define TC_COREFUNC_APSR_EN 1
#define TC_COREFUNC_PSP_EN 1
#define TC_COREFUNC_MSP_EN 1
#define TC_COREFUNC_PRIMASK_EN 1
#define TC_COREFUNC_FAULTMASK_EN 1
#define TC_COREFUNC_BASEPRI_EN 1
#define TC_COREFUNC_FPUTYPE_EN 1
#define TC_COREFUNC_FPSCR_EN 1
#define TC_MPU_SETCLEAR_EN 1
#define TC_MPU_LOAD_EN 1
//
#endif /* __CV_CONFIG_H */