File tree Expand file tree Collapse file tree 1 file changed +27
-7
lines changed Expand file tree Collapse file tree 1 file changed +27
-7
lines changed Original file line number Diff line number Diff line change 7
7
;
8
8
; Please visit documentation for the other options and examples
9
9
; https://docs.platformio.org/page/projectconf.html
10
+ ;
11
+ ; Example tester by @hpsaturn from CanAirIO Sensorlib pio ini schema
10
12
11
- [env:M5CoreS3]
12
- platform = espressif32
13
- board = esp32-s3-devkitc-1
13
+ [platformio]
14
+ src_dir = ./examples/PlatformIO/
15
+ lib_dir = ./
16
+
17
+ [env]
14
18
framework = arduino
15
- upload_port = /dev/cu.usbmodem144101
16
19
upload_speed = 1500000
17
20
monitor_speed = 115200
18
- monitor_port = /dev/cu.usbmodem144101
21
+ monitor_filters = time
19
22
build_flags =
23
+ -DESP32S3
20
24
-DBOARD_HAS_PSRAM
21
25
-mfix-esp32-psram-cache-issue
22
- -DCORE_DEBUG_LEVEL =3
26
+ -DCORE_DEBUG_LEVEL =5
27
+ -DARDUINO_USB_CDC_ON_BOOT =1
28
+ -DARDUINO_USB_MODE =1
23
29
lib_deps =
24
- tinyu-zhao/BMI270_Sensor @ ^0.0.1
30
+ m5stack/M5Unified@^0.1.6
31
+
32
+ [common]
33
+ framework = ${env.framework}
34
+ upload_speed = ${env.upload_speed}
35
+ monitor_speed = ${env.monitor_speed}
36
+ build_flags = ${env.build_flags}
37
+ lib_deps = ${env.lib_deps}
38
+
39
+ [env:M5CoreS3]
40
+ extends = common
41
+ platform = espressif32
42
+ board = esp32-s3-devkitc-1
43
+ build_src_filter = -<*> +<Camera/>
44
+
You can’t perform that action at this time.
0 commit comments