Skip to content

Commit 35b8b19

Browse files
authored
Merge pull request #31 from f-reiling/master
added platformio configuration
2 parents 05e71ea + b0af0ac commit 35b8b19

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.cache
2+
.pio
3+
.vscode/.browse.c_cpp.db*
4+
.vscode/c_cpp_properties.json
5+
.vscode/launch.json
6+
.vscode/ipch

platformio.ini

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[platformio]
2+
description = Modbus RTU TCP gateway
3+
src_dir = arduino-modbus-rtu-tcp-gateway
4+
lib_dir = lib/default
5+
;boards_dir = boards
6+
build_cache_dir = .cache
7+
8+
[env]
9+
platform = atmelavr
10+
framework = arduino
11+
board = nanoatmega328
12+
13+
lib_deps = arduino-libraries/Ethernet@^2.0.2
14+
rlogiacco/CircularBuffer@^1.3.3
15+
jandrassy/StreamLib
16+
17+
[env:nanoatmega328new]
18+
board = nanoatmega328new
19+
20+
[env:nanoatmega328]
21+
board = nanoatmega328
22+
23+
[env:arduinouno]
24+
board = uno

0 commit comments

Comments
 (0)