|
1 | | -; PlatformIO Project Configuration File |
2 | | -; |
3 | | -; Build options: build flags, source filter |
4 | | -; Upload options: custom upload port, speed and extra flags |
5 | | -; Library options: dependencies, extra library storages |
6 | | -; Advanced options: extra scripting |
7 | | -; |
8 | | -; Please visit documentation for the other options and examples |
9 | | -; https://docs.platformio.org/page/projectconf.html |
10 | | - |
11 | | -[env:esp32dev] |
12 | | -platform = espressif32 |
13 | | -board = esp32dev |
14 | | -framework = espidf |
15 | | -upload_port = COM82 |
16 | | -monitor_port = COM82 |
17 | | -monitor_speed = 115200 |
18 | | -build_flags = -DWOLFSSL_USER_SETTINGS, -DWOLFSSL_ESP32 |
19 | | -monitor_filters = direct |
20 | | -lib_deps = wolfssl-staging/wolfSSL@^5.7.0-test.1 |
| 1 | +; PlatformIO Project Configuration File |
| 2 | +; |
| 3 | +; Build options: build flags, source filter |
| 4 | +; Upload options: custom upload port, speed and extra flags |
| 5 | +; Library options: dependencies, extra library storages |
| 6 | +; Advanced options: extra scripting |
| 7 | +; |
| 8 | +; Please visit documentation for the other options and examples |
| 9 | +; https://docs.platformio.org/page/projectconf.html |
| 10 | + |
| 11 | +; |
| 12 | +; To ensure that you are always using the newest version of a library: |
| 13 | +; lib_deps = wolfssl/wolfSSL@* |
| 14 | +; |
| 15 | +; If you want to stay within a certain range of versions while still |
| 16 | +; getting updates, you can use semantic versioning to specify an acceptable |
| 17 | +; range. For example, to get any version in the 5.x.x series: |
| 18 | +; lib_deps = wolfssl/wolfSSL@^5.0.0 |
| 19 | +; |
| 20 | +; If you specifically want to ensure that you always get the latest version |
| 21 | +; that matches 5.7.0 or newer, you could use: |
| 22 | +; lib_deps = wolfssl/wolfSSL@>=5.7.0 |
| 23 | +; |
| 24 | +; If you want to test drive previews, see the staging versions: |
| 25 | +; https://registry.platformio.org/search?q=owner%3Awolfssl-staging |
| 26 | +; |
| 27 | +; lib_deps = wolfssl-staging/wolfSSL@^5.7.0-test.rev03 |
| 28 | +; |
| 29 | +; The regular release of wolfssl (yes there's a case difference from staging') |
| 30 | +; |
| 31 | +; lib_deps = wolfssl/wolfssl@^5.7.0-rev.3c |
| 32 | + |
| 33 | +[env:esp32dev] |
| 34 | +platform = espressif32 |
| 35 | +board = esp32dev |
| 36 | +framework = espidf |
| 37 | +upload_port = COM19 |
| 38 | +monitor_port = COM19 |
| 39 | +monitor_speed = 115200 |
| 40 | +build_flags = -DWOLFSSL_USER_SETTINGS, -DWOLFSSL_ESP32 |
| 41 | +monitor_filters = direct |
| 42 | +lib_deps = wolfssl/wolfssl@^5.7.0-rev.3d |
0 commit comments