Skip to content

Commit

Permalink
update version to 1.4.1 (#6)
Browse files Browse the repository at this point in the history
* fix ble send data error

* update version to 1.4.1
  • Loading branch information
lihuanhuan authored Aug 7, 2023
1 parent c7eab90 commit f673b46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/firmware_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define MANUFACTURER_ID 0x55AA55AA55 /**< DUMMY Manufacturer ID. Will be passed to Device Information Service. You shall use the ID for your Company*/
#define ORG_UNIQUE_ID 0xEEBBEE /**< DUMMY Organisation Unique ID. Will be passed to Device Information Service. You shall use the Organisation Unique ID relevant for your Company */
#define HW_REVISION "1.0.0"
#define FW_REVISION "1.4.0"
#define FW_REVISION "1.4.1"
#define SW_REVISION "s132_nrf52_7.0.1"

#endif //FIRMWARE_CONFIG
#endif //FIRMWARE_CONFIG
2 changes: 1 addition & 1 deletion app/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ static void nus_data_handler(ble_nus_evt_t * p_evt)
if(data_recived_len-pad > msg_len)
{
rcv_head_flag = DATA_INIT;
data_recived_len = msg_len + (msg_len+63)/64;
//data_recived_len = msg_len + (msg_len+62)/63;
msg_len = 0;
}
else
Expand Down

0 comments on commit f673b46

Please sign in to comment.