Hi!
I am currently using SEGGER Embedded Studio version 4.12, nRF5 SDK version15.2.0, nRF5 SDK for Mesh version 3.1.0, Hardware BMD-300 Evaluation Board.
i using the uart to send data over the ble mesh and all work fine except that if i get data from the uart and sending it over the mesh(ble) in interval lowest from 2 sec between two message and the second one the ble doesn't sending it.
i changed in the header file transport.h the parameters:
/** Default base TX retry timeout. */ TRANSPORT_SAR_TX_RETRY_BASE_TIMEOUT_DEFAULT_US FROM: MS_TO_US(500) TO: MS_TO_US(200)
and
/** Default number of retries before cancelling SAR TX session. */ TRANSPORT_SAR_TX_RETRIES_DEFAULT FROM: (4) TO: (2)
and it fix my problem and for now all work fine.
those changes will cause problems/bugs? how those changes 'will affect my mesh network?
thanks!