-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
51 lines (46 loc) · 1.77 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
; 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:bluepill_f103c8_128k]
framework = arduino
# Using a more recent version of STM32 platform fails with
# `.rodata' will not fit in region `FLASH'
# region `FLASH' overflowed by 1692 bytes
# Pinning Arduino STM32 core to `v1.9.0`
# https://github.com/platformio/platform-ststm32/releases/tag/v7.0.0
platform = [email protected]
board = bluepill_f103c8_128k
upload_protocol = serial
monitor_speed = 115200
#upload_port = COM4 # To upload the code uncomment this line and put the port corresponding to your module on you PC
# Disable some warning flags for libraries
build_flags =
# silence warnings from PubSubClient, ThingsBoard, Keypad
-Wno-deprecated-declarations
# silence warnings from PubSubClient
-Wno-sign-compare
# Re-enabled warning flags for src
build_src_flags =
# It will be almost impossible to fix
# warning: 'boolean' is deprecated
# as the depracted `boolean` is used all over the place
# See: https://github.com/arduino/Arduino/issues/4673
# We leave this disabled entirely and do not re-enable in build_src_flags
# -Wdeprecated-declarations
-Wsign-compare
lib_deps =
arduino-libraries/[email protected]
bblanchon/[email protected]
chris--a/[email protected]
arduino-libraries/[email protected]
knolleary/[email protected]
adafruit/[email protected]
thingsboard/[email protected]
vshymanskyy/[email protected]
https://github.com/cyberp/AT24Cx.git