Skip to content

Commit

Permalink
Merge pull request #60 from KNX-IOT/build-test
Browse files Browse the repository at this point in the history
bump version to 0.1.2
  • Loading branch information
WAvdBeek authored Jan 17, 2023
2 parents c3bfe31 + 0239568 commit bceca82
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions knx_iot_virtual_pb.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @file
*
* KNX virtual Push Button
* 2023-01-16 09:32:50.867421
* 2023-01-17 17:05:35.451043
* ## Application Design
*
* support functions:
Expand Down Expand Up @@ -474,7 +474,7 @@ oc_add_s_mode_response_cb(char *url, oc_rep_t *rep, oc_rep_t *rep_value)
* - base path
* - knx spec version
* - hardware version : [0, 1, 2]
* - firmware version : [0, 1, 1]
* - firmware version : [0, 1, 2]
* - hardware type : Linux/windows
* - device model : KNX virtual - PB
*
Expand All @@ -495,8 +495,8 @@ app_init(void)
oc_core_set_device_hwv(0, 0, 1, 2);


/* set the firmware version 0.1.1 */
oc_core_set_device_fwv(0, 0, 1, 1);
/* set the firmware version 0.1.2 */
oc_core_set_device_fwv(0, 0, 1, 2);


/* set the hardware type*/
Expand Down
6 changes: 3 additions & 3 deletions knx_iot_virtual_pb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
limitations under the License.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
*/
// 2023-01-16 09:32:51.032232
// 2023-01-17 17:05:36.050669

// For compilers that support precompilation, includes "wx/wx.h".
#include <wx/wxprec.h>
Expand Down Expand Up @@ -839,7 +839,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)
strcat(text,"model : KNX virtual - PB\n");
strcat(text,"hardware type : Linux/windows\n");
strcat(text,"hardware version : [0, 1, 2]\n");
strcat(text,"firmware version : [0, 1, 1]\n\n");
strcat(text,"firmware version : [0, 1, 2]\n\n");

strcat(text, "data points:\n");
strcat(text,"url:/p/o_1_1 rt:urn:knx:dpa.421.61 if:if.s inst:1 name:OnOff_1\n");
Expand All @@ -854,7 +854,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)

strcat(text, "(c) Cascoda Ltd\n");
strcat(text, "(c) KNX.org\n");
strcat(text, "2023-01-16 09:32:51.032232");
strcat(text, "2023-01-17 17:05:36.050669");
//wxMessageBox(text, "KNX virtual Push Button",
// wxOK | wxICON_NONE);
CustomDialog("About", text);
Expand Down
2 changes: 1 addition & 1 deletion knx_iot_virtual_pb.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* e.g. if the c code is compiled without main then
* these functions can be used to call all generated code
*
* 2023-01-16 09:32:50.928284
* 2023-01-17 17:05:35.895658
*/

#include "oc_api.h"
Expand Down
8 changes: 4 additions & 4 deletions knx_iot_virtual_sa.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @file
*
* KNX virtual Switching Actuator
* 2023-01-16 09:32:51.585396
* 2023-01-17 17:05:36.942345
* ## Application Design
*
* support functions:
Expand Down Expand Up @@ -518,7 +518,7 @@ oc_add_s_mode_response_cb(char *url, oc_rep_t *rep, oc_rep_t *rep_value)
* - base path
* - knx spec version
* - hardware version : [0, 1, 2]
* - firmware version : [0, 1, 1]
* - firmware version : [0, 1, 2]
* - hardware type : Windows
* - device model : KNX virtual - SA
*
Expand All @@ -539,8 +539,8 @@ app_init(void)
oc_core_set_device_hwv(0, 0, 1, 2);


/* set the firmware version 0.1.1 */
oc_core_set_device_fwv(0, 0, 1, 1);
/* set the firmware version 0.1.2 */
oc_core_set_device_fwv(0, 0, 1, 2);


/* set the hardware type*/
Expand Down
6 changes: 3 additions & 3 deletions knx_iot_virtual_sa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
limitations under the License.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
*/
// 2023-01-16 09:32:51.734493
// 2023-01-17 17:05:37.211043

// For compilers that support precompilation, includes "wx/wx.h".
#include <wx/wxprec.h>
Expand Down Expand Up @@ -863,7 +863,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)
strcat(text,"model : KNX virtual - SA\n");
strcat(text,"hardware type : Windows\n");
strcat(text,"hardware version : [0, 1, 2]\n");
strcat(text,"firmware version : [0, 1, 1]\n\n");
strcat(text,"firmware version : [0, 1, 2]\n\n");

strcat(text, "data points:\n");
strcat(text,"url:/p/o_1_1 rt:urn:knx:dpa.417.61 if:if.a inst:1 name:OnOff_1\n");
Expand All @@ -878,7 +878,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)

strcat(text, "(c) Cascoda Ltd\n");
strcat(text, "(c) KNX.org\n");
strcat(text, "2023-01-16 09:32:51.734493");
strcat(text, "2023-01-17 17:05:37.211043");
//wxMessageBox(text, "KNX virtual Switching Actuator",
// wxOK | wxICON_NONE);
CustomDialog("About", text);
Expand Down
2 changes: 1 addition & 1 deletion knx_iot_virtual_sa.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* e.g. if the c code is compiled without main then
* these functions can be used to call all generated code
*
* 2023-01-16 09:32:51.634634
* 2023-01-17 17:05:37.035713
*/

#include "oc_api.h"
Expand Down

0 comments on commit bceca82

Please sign in to comment.