Looking at the nRF51 UART Example, i know that all packets transmitted over a BLE link will be protected by CRC on the link layer.
But how about when nRF51 scan the ibeacon, and the data is send over uart, will the data still protected by CRC??
Hi,
CRC is not part of the UART protocol. If you want CRC, you will have to implement this in software on both sides of the connection.
Alternatively, you can use the parity bit for error detection. The parity bit is enabled by setting use_parity = true
in UART communication parameters structure. Notice that the parity bit is even parity.
Best regards,
Jørgen