STM32F407 _ Packet transfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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.
- Labels:
-
STM32F4 Series
-
UART-USART
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-08-12 6: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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-08-12 3: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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-08-12 6: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.
