1 // Configuration of micro-ecc for use with BTstack 2 // 3 // We only need/use SECP256R1 for LE Secure Connections 4 #define uECC_CURVE uECC_secp256r1 5 6 // optimization: size vs. speed: uECC_asm_none - uECC_asm_small - uECC_asm_fast 7 #ifndef uECC_ASM 8 #define uECC_ASM uECC_asm_none 9 #endif 10 11 // don't use special square functions 12 #ifndef uECC_SQUARE_FUNC 13 #define uECC_SQUARE_FUNC 0 14 #endif 15