mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-29 22:08:45 +08:00
# Conflicts: # examples/ArmTimerCallbacks - C++/RTE/Device/STM32F401RETx/startup_stm32f401xe.s # examples/ArmTimerCallbacks - C++/RTE/Device/STM32F401RETx/system_stm32f4xx.c # examples/ArmTimerCallbacks/RTE/Device/STM32F401RETx/startup_stm32f401xe.s # examples/ArmTimerCallbacks/RTE/Device/STM32F401RETx/system_stm32f4xx.c # library.properties # test/codeblocks/ETL.cbp # test/keil/startup_stm32f401xe.s # test/keil/system_stm32f4xx.c # test/vs2017/etl.vcxproj # test/vs2017/etl.vcxproj.filters
22 lines
403 B
C
22 lines
403 B
C
|
|
#ifndef __ETL_PROFILE_H__
|
|
#define __ETL_PROFILE_H__
|
|
|
|
#define ETL_THROW_EXCEPTIONS
|
|
#define ETL_VERBOSE_ERRORS
|
|
#define ETL_CHECK_PUSH_POP
|
|
#define ETL_ISTRING_REPAIR_ENABLE
|
|
#define ETL_IVECTOR_REPAIR_ENABLE
|
|
#define ETL_IDEQUE_REPAIR_ENABLE
|
|
#define ETL_IN_UNIT_TEST
|
|
|
|
#if (__CC_ARM == 1)
|
|
// ARM5 compiler
|
|
#include "profiles/armv5.h"
|
|
#else
|
|
// ARM6 compiler
|
|
#include "profiles/armv6.h"
|
|
#endif
|
|
|
|
#endif
|