2020-08-11 10:20 PM
Hi Team,
How to transfer huge data through UART interface , is it any method or procedure to achieve. Brief description:
Quectel module is been used, data of 80kb transported from AWS server to Quectel module.We need to identify the fastest and efficient way to transport the data from Quectel module to STM32F407 MCU via UART interface.
Sudeendra S
Solved! Go to Solution.
2020-08-12 06:12 AM
The fastest way is going to be using the highest clock speed you can and to ensure there is no delay between bytes by using DMA or other technique.
2020-08-12 03:08 AM
fastest way but not the most reliable: use raw usart byte transfer with hardware parity check.
for a reliable transfer, use a packet based protocol that incorporate CRC and acknowledge mechanism. A light weight example is MAVLink protocol
2020-08-12 06:12 AM
The fastest way is going to be using the highest clock speed you can and to ensure there is no delay between bytes by using DMA or other technique.