How should we empty the receiver array after getting response from receiver using uart since previous values are also coming with new values (or) how much delay should be kept from first received message to next received message
How should we empty the receiver array after getting response from receiver using uart since previous values are also coming with new values (or) how much delay should be kept from first received message to next received message
Are you using the uart driver or the uart library (app_uart)? If you are using the driver in non-blocking mode, you will get a callback when the transfer is finished. You can then read the array before setting up a new transfer. Please have a look at the UART example in the SDK.