mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-03 23:47:08 +00:00
15 lines
378 B
C
15 lines
378 B
C
// Configuration of micro-ecc for use with BTstack
|
|
//
|
|
// We only need/use SECP256R1 for LE Secure Connections
|
|
#define uECC_CURVE uECC_secp256r1
|
|
|
|
// optimization: size vs. speed: uECC_asm_none - uECC_asm_small - uECC_asm_fast
|
|
#ifndef uECC_ASM
|
|
#define uECC_ASM uECC_asm_none
|
|
#endif
|
|
|
|
// don't use special square functions
|
|
#ifndef uECC_SQUARE_FUNC
|
|
#define uECC_SQUARE_FUNC 0
|
|
#endif
|