mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-23 03:07:12 +02:00
force Brace and Z550 make one line
This commit is contained in:
parent
add8dd9c0d
commit
ec83406628
3 changed files with 288 additions and 330 deletions
5
tools/esp8266/.vscode/settings.json
vendored
5
tools/esp8266/.vscode/settings.json
vendored
|
@ -19,8 +19,5 @@
|
|||
"editor.detectIndentation": false,
|
||||
|
||||
// https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
||||
"C_Cpp.vcFormat.newLine.closeBraceSameLine.emptyFunction": false,
|
||||
"C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "sameLine",
|
||||
"C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "sameLine",
|
||||
"C_Cpp.vcFormat.newLine.beforeOpenBrace.lambda": "sameLine"
|
||||
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}",
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -14,16 +14,16 @@ src_dir = .
|
|||
[env]
|
||||
framework = arduino
|
||||
|
||||
build_flags =
|
||||
build_flags =
|
||||
-include "config.h"
|
||||
; ;;;;; Possible Debug options ;;;;;;
|
||||
; https://docs.platformio.org/en/latest/platforms/espressif8266.html#debug-level
|
||||
;-DDEBUG_ESP_PORT=Serial
|
||||
;-DDEBUG_ESP_CORE
|
||||
;-DDEBUG_ESP_WIFI
|
||||
;-DDEBUG_ESP_HTTP_CLIENT
|
||||
;-DDEBUG_ESP_HTTP_SERVER
|
||||
;-DDEBUG_ESP_OOM
|
||||
;-DDEBUG_ESP_CORE
|
||||
;-DDEBUG_ESP_WIFI
|
||||
;-DDEBUG_ESP_HTTP_CLIENT
|
||||
;-DDEBUG_ESP_HTTP_SERVER
|
||||
;-DDEBUG_ESP_OOM
|
||||
|
||||
monitor_speed = 115200
|
||||
|
||||
|
@ -31,7 +31,7 @@ extra_scripts =
|
|||
pre:scripts/auto_firmware_version.py
|
||||
pre:html/convert.py
|
||||
|
||||
lib_deps =
|
||||
lib_deps =
|
||||
https://github.com/yubox-node-org/ESPAsyncWebServer
|
||||
nrf24/RF24
|
||||
paulstoffregen/Time
|
||||
|
@ -48,7 +48,7 @@ platform = espressif8266
|
|||
board = esp12e
|
||||
board_build.f_cpu = 80000000L
|
||||
build_flags = -D RELEASE
|
||||
monitor_filters =
|
||||
monitor_filters =
|
||||
;default ; Remove typical terminal control codes from input
|
||||
time ; Add timestamp with milliseconds for each new line
|
||||
;log2file ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
|
||||
|
@ -59,7 +59,7 @@ board = esp12e
|
|||
board_build.f_cpu = 80000000L
|
||||
build_flags = -DDEBUG_LEVEL=DBG_DEBUG -DDEBUG_ESP_CORE -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP_CLIENT -DDEBUG_ESP_HTTP_SERVER -DDEBUG_ESP_OOM -DDEBUG_ESP_PORT=Serial
|
||||
build_type = debug
|
||||
monitor_filters =
|
||||
monitor_filters =
|
||||
;default ; Remove typical terminal control codes from input
|
||||
time ; Add timestamp with milliseconds for each new line
|
||||
log2file ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
|
||||
|
@ -69,8 +69,7 @@ platform = espressif32
|
|||
board = lolin_d32
|
||||
build_flags = -D RELEASE -std=gnu++14
|
||||
build_unflags = -std=gnu++11
|
||||
upload_port = /dev/cu.SLAB_USBtoUART
|
||||
monitor_filters =
|
||||
monitor_filters =
|
||||
;default ; Remove typical terminal control codes from input
|
||||
time ; Add timestamp with milliseconds for each new line
|
||||
;log2file ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
|
||||
|
@ -81,8 +80,7 @@ board = lolin_d32
|
|||
build_flags = -DDEBUG_LEVEL=DBG_DEBUG -DDEBUG_ESP_CORE -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP_CLIENT -DDEBUG_ESP_HTTP_SERVER -DDEBUG_ESP_OOM -DDEBUG_ESP_PORT=Serial -std=gnu++14
|
||||
build_unflags = -std=gnu++11
|
||||
build_type = debug
|
||||
upload_port = /dev/cu.SLAB_USBtoUART
|
||||
monitor_filters =
|
||||
monitor_filters =
|
||||
;default ; Remove typical terminal control codes from input
|
||||
time ; Add timestamp with milliseconds for each new line
|
||||
log2file ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue