-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplatformio.ini
42 lines (41 loc) · 1.19 KB
/
platformio.ini
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32dev]
platform = [email protected]
board = esp32dev
framework = espidf
src_filter =
+<*>
-<.git/>
-<svn/>
-<example/>
-<examples/>
-<test/>
-<tests/>
-<cryptoauthlib/app/>
-<cryptoauthlib/test/>
-<cryptoauthlib/python/>
-<cryptoauthlib/third_party/>
-<cryptoauthlib/lib/hal/>
-<cryptoauthlib/lib/basic/atca_helpers.c>
+<cryptoauthlib/lib/hal/atca_hal.c>
+<cryptoauthlib/lib/hal/atca_hal.h>
+<cryptoauthlib/lib/hal/hal_esp32_timer.c>
+<cryptoauthlib/lib/hal/hal_freertos.c>
build_flags =
-I "src/cryptoauthlib/lib"
-I "src/cryptoauthlib"
-I "$PROJECT_CORE_DIR/packages/[email protected]/components/freertos/include/freertos"
-DESP32
-DATCA_HAL_I2C
-DATCA_PRINTF
-DATCA_USE_RTOS_TIMER
upload_port = COM6
monitor_speed = 115200