Skip to content

Commit

Permalink
Merge pull request #81 from KNX-IOT/version-update
Browse files Browse the repository at this point in the history
update version to 0.2.0
  • Loading branch information
tiniuclx authored Aug 16, 2023
2 parents b5523bf + 0824ee5 commit 23b0703
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions knx_iot_virtual_pb.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ void app_str_to_upper(char *str){
* - base path
* - knx spec version
* - hardware version : [0, 1, 3]
* - firmware version : [0, 1, 9]
* - firmware version : [0, 2, 0]
* - hardware type : LW0001
* - device model : KNX virtual - PB
*
Expand All @@ -430,8 +430,8 @@ app_init(void)
oc_core_set_device_hwv(0, 0, 1, 3);


/* set the firmware version 0.1.9 */
oc_core_set_device_fwv(0, 0, 1, 9);
/* set the firmware version 0.2.0 */
oc_core_set_device_fwv(0, 0, 2, 0);


/* set the hardware type*/
Expand Down
2 changes: 1 addition & 1 deletion knx_iot_virtual_pb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)
strcat(text,"model : KNX virtual - PB\n");
strcat(text,"hardware type : LW0001\n");
strcat(text,"hardware version : [0, 1, 3]\n");
strcat(text,"firmware version : [0, 1, 9]\n\n");
strcat(text,"firmware version : [0, 2, 0]\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 Down
6 changes: 3 additions & 3 deletions knx_iot_virtual_sa.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ void app_str_to_upper(char *str){
* - base path
* - knx spec version
* - hardware version : [0, 1, 3]
* - firmware version : [0, 1, 9]
* - firmware version : [0, 2, 0]
* - hardware type : LW0001
* - device model : KNX virtual - SA
*
Expand All @@ -474,8 +474,8 @@ app_init(void)
oc_core_set_device_hwv(0, 0, 1, 3);


/* set the firmware version 0.1.9 */
oc_core_set_device_fwv(0, 0, 1, 9);
/* set the firmware version 0.2.0 */
oc_core_set_device_fwv(0, 0, 2, 0);


/* set the hardware type*/
Expand Down
2 changes: 1 addition & 1 deletion knx_iot_virtual_sa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)
strcat(text,"model : KNX virtual - SA\n");
strcat(text,"hardware type : LW0001\n");
strcat(text,"hardware version : [0, 1, 3]\n");
strcat(text,"firmware version : [0, 1, 9]\n\n");
strcat(text,"firmware version : [0, 2, 0]\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 Down

0 comments on commit 23b0703

Please sign in to comment.