This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplatformio.ini
65 lines (61 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
; 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:pico]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = pico
build_flags =
-D USE_MCP3204
framework = arduino
; board can use both Arduino cores -- we select Arduino-Pico here
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m
[env:lsm6dso-xiao-rp2040]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = seeed_xiao_rp2040
build_flags =
-D DISABLE_ADJUST_PIN
-D DISABLE_INTENSITY_LED
-D USE_LSM6DSO
framework = arduino
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m
lib_deps =
https://github.com/stm32duino/LSM6DSO.git
SPI
[env:lsm6dso-xiao-rp2040-ssd1306]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = seeed_xiao_rp2040
build_flags =
-D DISABLE_ADJUST_PIN
-D DISABLE_INTENSITY_LED
-D USE_LSM6DSO
-D USE_SSD1306_DISPLAY
framework = arduino
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m
lib_deps =
https://github.com/stm32duino/LSM6DSO.git
https://github.com/adafruit/Adafruit_BusIO.git
https://github.com/adafruit/Adafruit-GFX-Library.git
https://github.com/adafruit/Adafruit_SSD1306.git
SPI
[env:mma8451-esp32dev]
platform= espressif32
board = esp32dev
build_flags =
-D DISABLE_ADJUST_PIN
-D DISABLE_INTENSITY_LED
-D USE_MMA8451
;-D DEBUG
framework = arduino
monitor_speed = 115200
lib_deps =
adafruit/Adafruit MMA8451 Library@^1.2.1
SPI