-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
99 lines (93 loc) · 2.65 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
; 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]
monitor_speed = 115200
[env:pidas]
platform = raspberrypi
board = rpipico
framework = arduino
build_flags =
-D 'SEISMOMETER_DEVICE_NAME="PiDAS"'
-D 'SEISMOMETER_SENSOR_NAME="LXR94-2050"'
-D 'SEISMOMETER_ADC_NAME="MCP3204"'
-I"board-lib/PiDAS"
lib_deps =
https://github.com/emilv/ArduinoSort.git
SPI
FreeRTOS
[env:pidas-pico-w]
platform = raspberrypi
board = rpipicow
framework = arduino
build_flags =
-D 'SEISMOMETER_DEVICE_NAME="PiDAS;PicoW"'
-D 'SEISMOMETER_SENSOR_NAME="LXR94-2050"'
-D 'SEISMOMETER_ADC_NAME="MCP3204"'
-I"board-lib/PiDAS"
lib_deps =
https://github.com/emilv/ArduinoSort.git
SPI
FreeRTOS
[env:eqis-1-rp2040]
platform = raspberrypi
board = seeed_xiao_rp2040
framework = arduino
build_flags =
-D 'SEISMOMETER_DEVICE_NAME="EQIS-1;RP2040"'
-D 'SEISMOMETER_SENSOR_NAME="LSM6DSO"'
-D 'SEISMOMETER_ADC_NAME=""'
-I"board-lib/EQIS"
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
Wire
https://github.com/emilv/ArduinoSort.git
SPI
FreeRTOS
[env:eqis-1-esp32c3]
platform = espressif32
board = seeed_xiao_esp32c3
framework = arduino
build_flags =
-D 'SEISMOMETER_DEVICE_NAME="EQIS-1;ESP32C3"'
-D 'SEISMOMETER_SENSOR_NAME="LSM6DSO"'
-D 'SEISMOMETER_ADC_NAME=""'
-I"board-lib/EQIS"
-D ESP32
-D MSBFIRST=1
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
Wire
https://github.com/emilv/ArduinoSort.git
SPI
[env:eqis-1-esp32s3]
platform = espressif32
board = seeed_xiao_esp32s3
framework = arduino
build_flags =
-D 'SEISMOMETER_DEVICE_NAME="EQIS-1;ESP32S3"'
-D 'SEISMOMETER_SENSOR_NAME="LSM6DSO"'
-D 'SEISMOMETER_ADC_NAME=""'
-I"board-lib/EQIS"
-D ESP32
-D MSBFIRST=1
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
Wire
https://github.com/emilv/ArduinoSort.git
SPI