Skip to content

Commit

Permalink
Merge pull request #87 from KNX-IOT/build-test
Browse files Browse the repository at this point in the history
version update
  • Loading branch information
WAvdBeek authored Nov 17, 2023
2 parents 8e4d451 + f68c9d1 commit e09a427
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions knx_iot_virtual_pb.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ void app_str_to_upper(char *str){
* - serial number : 00FA10010400
* - base path
* - knx spec version
* - hardware version : [0, 5, 0]
* - firmware version : [0, 5, 0]
* - hardware version : [0, 6, 0]
* - firmware version : [0, 6, 0]
* - hardware type : 000000000001
* - device model : KNX virtual - PB
*
Expand All @@ -426,11 +426,11 @@ app_init(void)
oc_device_info_t *device = oc_core_get_device_info(0);


/* set the hardware version 0.5.0 */
/* set the hardware version 0.6.0 */
oc_core_set_device_hwv(0, 0, 5, 0);

/* set the firmware version 0.5.0 */
oc_core_set_device_fwv(0, 0, 5, 0);
/* set the firmware version 0.6.0 */
oc_core_set_device_fwv(0, 0, 6, 0);


/* set the hardware type*/
Expand Down
12 changes: 6 additions & 6 deletions knx_iot_virtual_sa.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,8 @@ void app_str_to_upper(char *str){
* - serial number : 00FA10010700
* - base path
* - knx spec version
* - hardware version : [0, 5, 0]
* - firmware version : [0, 5, 0]
* - hardware version : [0, 6, 0]
* - firmware version : [0, 6, 0]
* - hardware type : 000000000002
* - device model : KNX virtual - SA
*
Expand All @@ -470,11 +470,11 @@ app_init(void)
oc_device_info_t *device = oc_core_get_device_info(0);


/* set the hardware version 0.5.0 */
oc_core_set_device_hwv(0, 0, 5, 0);
/* set the hardware version 0.6.0 */
oc_core_set_device_hwv(0, 0, 6, 0);

/* set the firmware version 0.5.0 */
oc_core_set_device_fwv(0, 0, 5, 0);
/* set the firmware version 0.6.0 */
oc_core_set_device_fwv(0, 0, 6, 0);

/* set the hardware type*/
// 123456789012
Expand Down

0 comments on commit e09a427

Please sign in to comment.