Select one of the symbols to view example projects that use it.
 
Outline
#define BTSATCK_CONFIG_UECC_H__
#define uECC_CURVE
#define uECC_NO_DEFAULT_RNG
#define uECC_SUPPORTS_secp256r1
#define uECC_ASM
#define uECC_SQUARE_FUNC
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesBluetooth LE Stack3rd-party/micro-ecc/btstack_config_uECC.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
// Configuration of micro-ecc for use with BTstack // // We only need/use SECP256R1 for LE Secure Connections #ifndef BTSATCK_CONFIG_UECC_H__ #define BTSATCK_CONFIG_UECC_H__ #define uECC_CURVE uECC_secp256r1 #define uECC_NO_DEFAULT_RNG // avoid warning for undefined preprocessing identifier #ifndef uECC_SUPPORTS_secp256r1 #define uECC_SUPPORTS_secp256r1 0 #endif // 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 /* ... */ #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.