mirror of https://github.com/ARMmbed/mbed-os.git
Use uECC C99 implementation
parent
0f4ded19ac
commit
01620b9ba2
|
|
@ -29,7 +29,11 @@ uECC_asm_fast - Use GCC inline assembly optimized for maximum speed. */
|
|||
#define uECC_asm_small 1
|
||||
#define uECC_asm_fast 2
|
||||
#ifndef uECC_ASM
|
||||
#define uECC_ASM uECC_asm_fast
|
||||
#ifndef __CC_ARM
|
||||
#define uECC_ASM uECC_asm_fast
|
||||
#else // DG: ARMCC 5, unlike GCC, IAR and CLANG, doesn't support GNU-style inline assembly
|
||||
#define uECC_ASM uECC_asm_none
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Curve selection options. */
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cordio-nordic-ll",
|
||||
"macros": [
|
||||
"uECC_ASM=2", "INIT_BROADCASTER", "INIT_OBSERVER", "INIT_CENTRAL", "INIT_PERIPHERAL", "INIT_ENCRYPTED", "LHCI_ENABLE_VS=0", "BB_CLK_RATE_HZ=32768"
|
||||
"INIT_BROADCASTER", "INIT_OBSERVER", "INIT_CENTRAL", "INIT_PERIPHERAL", "INIT_ENCRYPTED", "LHCI_ENABLE_VS=0", "BB_CLK_RATE_HZ=32768"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue