You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,8 +54,8 @@ Migrating to v3 is easy. There are two small changes all users will need to make
54
54
v3 is _mostly_ backward-compatible with v2, but there have been some important changes. If in doubt, please look at the updated [examples](./examples).
55
55
They have all been updated and tested with v3.
56
56
57
-
Because all module configuration is preformed using the Configuration Interface, you will find that the **VAL_LAYER** has been added as
58
-
a parameter in many methods. The methods default to using ```VAL_LAYER_RAM_BBR``` - i.e. the configuration will be changed and stored in both
57
+
Because all module configuration is performed using the Configuration Interface, you will find that the **VAL_LAYER** has been added as
58
+
a parameter in many methods. The set methods default to using ```VAL_LAYER_RAM_BBR``` - i.e. the configuration will be changed and stored in both
59
59
RAM and Battery-Backed RAM. Options are: ```VAL_LAYER_RAM```, ```VAL_LAYER_BBR```, ```VAL_LAYER_FLASH``` (if your module has flash memory attached),
60
60
```VAL_LAYER_RAM_BBR``` and ```VAL_LAYER_ALL``` (all three).
61
61
@@ -86,7 +86,6 @@ Please check your code. If you are using ```maxWait```, you will need to specify
86
86
Likewise, when reading (getting) the configuration, you can specify ```VAL_LAYER_RAM``` or ```VAL_LAYER_DEFAULT```. The methods default to ```VAL_LAYER_RAM```.
87
87
88
88
v3 provides a new way of reading (getting) values from the Configuration Interface: ```newCfgValget```, ```addCfgValget``` and ```sendCfgValget```.
89
-
v3 also uses C++ Templates to make it easier to get and set the configuration without knowing the value data type.
90
89
Please see the [VALSET and VALGET examples](./examples/VALGET_and_VALSET/) for more details.
91
90
92
91
```setPortOutput```, ```setPortInput``` and ```getPortSettings``` have been deleted.
0 commit comments