Search found 4 matches
- Mon Feb 05, 2018 9:56 pm
- Forum: ESP-IDF
- Topic: Remote peripheral ignores rmt_tx_stop command
- Replies: 6
- Views: 10167
Re: Remote peripheral ignores rmt_tx_stop command
Hi sorry for the lack of reply. Yes this is what I found also. However I know when I want to stop sending as I am sending packets of data. So when I need the data to end I set the last part of the data to 0 which will cause the rmt to stop sending when it hits the blank space. This actually ended up...
- Thu Dec 14, 2017 6:41 pm
- Forum: General Discussion
- Topic: RMT settings clarification
- Replies: 3
- Views: 7185
Re: RMT settings clarification
I have a slightly different behavior in RMT_MEM_TX_WRAP_EN mode. TX_END_INT interrupt is fired when I set to 0 value of any RMT channel memory item yet to be sent. And after that transmission is terminated. While TX_THR_EVENTs are just activated every configured number of sent items. At the end of ...
- Thu Dec 14, 2017 9:56 am
- Forum: ESP-IDF
- Topic: Remote peripheral ignores rmt_tx_stop command
- Replies: 6
- Views: 10167
Re: Remote peripheral ignores rmt_tx_stop command
Is the looparound or continuous sending mode enabled?
I found that if you have the RMT_REG_TX_CONTI_MODE bit enabled that it would start sending even if RMT_TX_START_CHn was not.
Maybe you need to disable that as well?
I found that if you have the RMT_REG_TX_CONTI_MODE bit enabled that it would start sending even if RMT_TX_START_CHn was not.
Maybe you need to disable that as well?
- Tue Dec 12, 2017 11:57 am
- Forum: General Discussion
- Topic: RMT settings clarification
- Replies: 3
- Views: 7185
Re: RMT settings clarification
Hi, I was going to ask the same question as I am also a bit confused about the functionality of the loop around mode. As far as I can tell from reading the data sheet and playing around; the RMT_MEM_TX_WRAP_EN applies to all channels and loop around occurs at the end of transmission, i.e when any of...