This commit is contained in:
cyberman54 2018-08-18 16:28:33 +02:00
parent 33d1f9e53a
commit e68126a7f6
3 changed files with 7 additions and 5 deletions

4
.gitignore vendored
View File

@ -5,8 +5,10 @@
.vscode/c_cpp_properties.json .vscode/c_cpp_properties.json
.vscode/settings.json .vscode/settings.json
.vscode/launch.json .vscode/launch.json
src/loraconf.h
.vscode/*.db .vscode/*.db
.vscode/.browse.c_cpp.db* .vscode/.browse.c_cpp.db*
.clang_complete .clang_complete
.gcc-flags.json .gcc-flags.json
platformio.ini
src/paxcounter.conf
src/loraconf.h

View File

@ -11,8 +11,8 @@
; ---> SELECT TARGET PLATFORM HERE! <--- ; ---> SELECT TARGET PLATFORM HERE! <---
[platformio] [platformio]
env_default = generic ;env_default = generic
;env_default = ebox env_default = ebox
;env_default = heltec ;env_default = heltec
;env_default = ttgov1 ;env_default = ttgov1
;env_default = ttgov2 ;env_default = ttgov2
@ -50,7 +50,7 @@ build_flags =
; Warn ; Warn
; -DCORE_DEBUG_LEVEL=2 ; -DCORE_DEBUG_LEVEL=2
; Info ; Info
-DCORE_DEBUG_LEVEL=3 ; -DCORE_DEBUG_LEVEL=3
; Debug ; Debug
; -DCORE_DEBUG_LEVEL=4 ; -DCORE_DEBUG_LEVEL=4
; Verbose ; Verbose

View File

@ -9,7 +9,7 @@
// Payload send cycle and encoding // Payload send cycle and encoding
#define SEND_SECS 30 // payload send cycle [seconds/2] -> 60 sec. #define SEND_SECS 30 // payload send cycle [seconds/2] -> 60 sec.
#define PAYLOAD_ENCODER 1 // payload encoder: 1=Plain, 2=Packed, 3=CayenneLPP dynamic, 4=CayenneLPP packed #define PAYLOAD_ENCODER 2 // payload encoder: 1=Plain, 2=Packed, 3=CayenneLPP dynamic, 4=CayenneLPP packed
// Set this to include BLE counting and vendor filter functions // Set this to include BLE counting and vendor filter functions
#define VENDORFILTER 1 // comment out if you want to count things, not people #define VENDORFILTER 1 // comment out if you want to count things, not people