We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent78fa550 commitbccd3adCopy full SHA for bccd3ad
README.md
@@ -4,15 +4,8 @@ Implement this Module to upload/download files on your device.
4
You can also do a firmware update.
5
6
##Step 1
7
-Add the Module to your platform.ini and set the fileystem size.
8
-```ini
9
-board_build.filesystem_size = 0.5m
10
-lib_deps =
11
- [...]
12
-https://github.com/OpenKnx/OFM-FileTransferModule
13
-```
14
-
15
-Make shure you get this output in your build step:
+Make shure you get this output in your build step:
+Sizes depends on your configuration, but you need the entry "Filesystem size".
16
```
17
Flash size: 2.00MB
18
Sketch size: 1.50MB
@@ -31,7 +24,7 @@ void setup()
31
24
const uint8_t firmwareRevision = 0;
32
25
openknx.init(firmwareRevision);
33
26
openknx.addModule(1, ...);
34
-openknx.addModule(2,newFileTransferModule());
27
+openknx.addModule(2, FileTransferModule);
35
28
openknx.setup();
36
29
37
30
}