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 8c62eaa commit 3cbdaa8Copy full SHA for 3cbdaa8
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.4.1 (unreleased)
2
+
3
+- The VSCP framework returned the wrong number of used pages.
4
5
## 0.4.0
6
7
- Update to VSCP framework v0.5.0, please see the  there.
VSCP/src/framework/vscp_app_reg.c
@@ -107,7 +107,8 @@ extern uint8_t vscp_app_reg_getPagesUsed(void)
107
{
108
uint8_t pagesUsed = 1; /* At least one page, which is mandatory. */
109
110
- /* Implement your code here ... */
+ // Decision matrix at page 1
111
+ ++pagesUsed;
112
113
return pagesUsed;
114
}
0 commit comments