We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7782f9d commit b0af0acCopy full SHA for b0af0ac
.gitignore
@@ -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
@@ -0,0 +1,24 @@
+[platformio]
+description = Modbus RTU TCP gateway
+src_dir = arduino-modbus-rtu-tcp-gateway
+lib_dir = lib/default
+;boards_dir = boards
+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
22
23
+[env:arduinouno]
24
+board = uno
0 commit comments