Skip to content

Commit

Permalink
Minimum use case for testing. Use LoRa32 lib.
Browse files Browse the repository at this point in the history
Signed-off-by: Velocet <[email protected]>
  • Loading branch information
Velocet committed Apr 15, 2024
1 parent 806db2f commit 00e15b5
Show file tree
Hide file tree
Showing 10 changed files with 263 additions and 274 deletions.
14 changes: 10 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
report.*.json

# Runtime/Compiled data
#build/Release
build/
pids
*.pid
*.seed
*.lock

# Dependencies
node_modules/*
node_modules/
.npm
.node_repl_history

Expand All @@ -20,15 +20,21 @@ node_modules/*
.env
.env.test
.cache
.cache/*
.cache/

# PlatformIO
.pio
compile_commands.json

# VSCode
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
compile_commands.json

# mkdocs
site/

# Private
src_nope/
NOTES.md
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
34 changes: 0 additions & 34 deletions lib/LoRa32/README.md

This file was deleted.

35 changes: 0 additions & 35 deletions lib/LoRa32/library.json

This file was deleted.

20 changes: 0 additions & 20 deletions lib/LoRa32/src/LoRa32.cpp

This file was deleted.

179 changes: 0 additions & 179 deletions lib/LoRa32/src/LoRa32.h

This file was deleted.

7 changes: 5 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,11 @@ build_flags = -std=gnu++2a -O3
-Ilib -Isrc
-mtarget-align
-DCONFIG_COMPILER_OPTIMIZATION_PERF=y
lib_ldf_mode = chain+ ; Fixes include problems (eg.: RadioLib can't find SPI)
lib_deps = https://github.com/jgromes/RadioLib
lib_ldf_mode = chain+
lib_deps =
SPI
https://github.com/Velocet/LoRa32
https://github.com/jgromes/RadioLib
; Upload & Monitor Settings
upload_protocol = esptool
upload_speed = 921600
Expand Down
Loading

0 comments on commit 00e15b5

Please sign in to comment.