Transmitting and receiving custom serial bitstream
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-10 3:06 AM
Hi Community,
1) I have to demodulated a continuous bitstream of 201bit (1ms per bit) sent by a host to my stm32F401RE. Which peripheral would you suggest to use?
2) If I have to transmitt and receive custom serial data in half duplex with clock in Tx and Rx clock for sampling, which peripheral you suggest to use? In this case datarate is 1Mbps.
Thanks
- Labels:
-
STM32Cube MCU Packages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-10 3:46 AM
Hi,
without more info about bit format or frame sync/start , i can say:
1. Timer input capture (as i use for IR remote signal, which is (also) 1ms bit time )
2. Usart in sync mode
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-10 4:33 AM
Thanks,
Regarding 2, I forgot to say that the serial data is custom lenght bitstream of 200bit ( no pause in the bitstream, no stop bit between words etc..).
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-10 5:54 AM
Such a low bit rate? I would probably use TIM Input Capture or EXTI
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-10 6:23 AM - edited ‎2024-03-10 6:24 AM
So... for
1. Timer input capture (-> interrupt )
2. SPI (16bit mode) -> circular DMA ( and you analyse in half/full callbacks the received stream in int16_t arrays)
