We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04102a commit d9699cfCopy full SHA for d9699cf
features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack/thirdparty/uecc/uECC_ll.h
@@ -29,7 +29,11 @@ uECC_asm_fast - Use GCC inline assembly optimized for maximum speed. */
29
#define uECC_asm_small 1
30
#define uECC_asm_fast 2
31
#ifndef uECC_ASM
32
- #define uECC_ASM uECC_asm_fast
+ #if !defined(__ARMCC_VERSION) && !defined(__ICCARM__) && defined(__GNUC__) /* Only support GCC inline asm for now */
33
+ #define uECC_ASM uECC_asm_fast
34
+ #else
35
+ #define uECC_ASM uECC_asm_none
36
+ #endif
37
#endif
38
39
/* Curve selection options. */
0 commit comments