Displaying 3 results from an estimated 3 matches for "darm_math_cm4".
2019 Feb 17
2
Custom mode
...3.50\gcc\arm-none-eabi\bin\cc1" -fmessage-length=0
-fno-diagnostics-show-caret -mcpu=cortex-m4 -mlittle-endian
-mfloat-abi=hard -mfpu=fpv4-sp-d16 -mthumb -mtp=soft -nostdinc "-isystem
-D__SIZEOF_WCHAR_T=4 -D__ARM_ARCH_7EM__ -D__SES_ARM
-D__ARM_ARCH_FPV4_SP_D16__ -D__SES_VERSION=35000 -DARM_MATH_CM4
-D__FPU_PRESENT -DDEBUG "-D DEBUG_NRF" -DCONFIG_GPIO_AS_PINRESET
-DINITIALIZE_USER_SECTIONS -DNO_VTOR_CONFIG -DNRF52 -DNRF52832_XXAA
-DCONFIG_NFCT_PINS_AS_GPIOS -DOPUS_BUILD -DVAR_ARRAYS -DFIXED_POINT
-DDISABLE_FLOAT_API -DCUSTOM_MODES "-DARM_MATH_CM4 "
"-DOPUS_ARM_INLINE_E...
2019 Feb 20
0
Fwd: Custom mode
...;> -fno-diagnostics-show-caret -mcpu=cortex-m4 -mlittle-endian
>> -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mthumb -mtp=soft -nostdinc "-isystem
>>
>>
>>
>> -D__SIZEOF_WCHAR_T=4 -D__ARM_ARCH_7EM__ -D__SES_ARM
>> -D__ARM_ARCH_FPV4_SP_D16__ -D__SES_VERSION=35000 -DARM_MATH_CM4
>> -D__FPU_PRESENT -DDEBUG "-D DEBUG_NRF" -DCONFIG_GPIO_AS_PINRESET
>> -DINITIALIZE_USER_SECTIONS -DNO_VTOR_CONFIG -DNRF52 -DNRF52832_XXAA
>> -DCONFIG_NFCT_PINS_AS_GPIOS -DOPUS_BUILD -DVAR_ARRAYS -DFIXED_POINT
>> -DDISABLE_FLOAT_API -DCUSTOM_MODES "-DARM_MATH_...
2017 Oct 19
0
Global stack on Cortex-M4
Hi all:
I'm successfully run OPUS in cortexM4 arm architectures using a cross
compiler gcc-arm-none-eabi . I recommend to uses the following precompile
flags before to compile you code:
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard
-mfpu=fpv4-sp-dl16 -std=c99 -fasm -DARM_MATH_CM4 -DOPUS_ARM_INLINE_ASM
-DOPUS_ARM_ASM ....
and in your configuration file of OPUS you could use the following
configuration :
#define VAR_ARRAYS
#define FIXED_POINT /*Actually I'm working in a fixed point but I also test
it with float point and also works for me*/
#define OPUS_BUILD.
Test an...