-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
50 lines (47 loc) · 1.97 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
; 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:xiaosense]
platform = https://github.com/maxgerhardt/platform-nordicnrf52
framework = arduino
board = xiaoblesense_adafruit
monitor_speed = 115200
lib_deps =
seeed-studio/Seeed Arduino LSM6DS3@^2.0.3
arduino-libraries/Madgwick@^1.2.0
arkhipenko/TaskScheduler @ ^3.7.0
spacehuhn/SimpleCLI @ ^1.1.4
build_flags =
; ————————————————————————— TASK SCHEUDLER FLAGS ————————————————————————— ;
; -D _TASK_TIMECRITICAL
-D _TASK_SLEEP_ON_IDLE_RUN
-D _TASK_STATUS_REQUEST
; -D _TASK_WDT_IDS
; -D _TASK_LTS_POINTER
; -D _TASK_PRIORITY
; -D _TASK_MICRO_RES
; -D _TASK_STD_FUNCTION
; -D _TASK_DEBUG
; -D _TASK_INLINE
; -D _TASK_TIMEOUT
; -D _TASK_OO_CALLBACKS
; -D _TASK_EXPOSE_CHAIN
; -D _TASK_SCHEDULING_OPTIONS
; -D _TASK_DEFINE_MILLIS
; -D _TASK_EXTERNAL_TIME
; -D _DEBUG_
; -D _TEST_
[platformio]
description = This program is built upon Seeed XIAO BLE Sense nrf52840
microcontroller, which acts as a flight controller unit for the
PerchClimb robot. It employs a two-way BLE communication protocol
enabling control command transmission from a PC to the board.
Commands are decoded onboard by the CLI, facilitating parameter
adjustment and experiment initiation. In return, IMU and current
sensor data collected onboard are transmitted back to the PC.