"Is there any proper full register description?"
Here:
http://arduinouser.hu/esp32/ESP32_RMT_R ... ummary.pdf
Search found 4 matches
- Sun Feb 25, 2018 3:29 pm
- Forum: ESP32 Arduino
- Topic: RMT for accurate timing measurement
- Replies: 1
- Views: 5649
- Sat Dec 23, 2017 1:34 pm
- Forum: ESP32 Arduino
- Topic: Direct IO Port Manipulation
- Replies: 7
- Views: 44852
Re: Direct IO Port Manipulation
"How do I do this with ESP32?"
const uint8_t ledPin = 2 ;
pinMode(ledPin,OUTPUT) ;
digitalWrite(ledPin,1); // (*((volatile uint32_t *) (0x3ff44000 + 0x8 ))) ^= 1 << 2 ;
digitalWrite(ledPin,0); // (*((volatile uint32_t *) (0x3ff44000 + 0xC))) ^= 1 << 2 ;
const uint8_t ledPin = 2 ;
pinMode(ledPin,OUTPUT) ;
digitalWrite(ledPin,1); // (*((volatile uint32_t *) (0x3ff44000 + 0x8 ))) ^= 1 << 2 ;
digitalWrite(ledPin,0); // (*((volatile uint32_t *) (0x3ff44000 + 0xC))) ^= 1 << 2 ;
- Tue Dec 05, 2017 1:43 pm
- Forum: ESP32 Arduino
- Topic: Directly writing control registers- new programmer feeling pretty lost
- Replies: 7
- Views: 24601
Re: Directly writing control registers- new programmer feeling pretty lost
Thanks!ESP_igrr wrote:ESPpeter: Make sure you enable RMT peripheral clock before writing to the control registers. I.e. call periph_module_enable(PERIPH_RMT_MODULE);
You win!
*((volatile uint32_t *) (0x3FF000C0)) |= 0x200 ;
*((volatile uint32_t *) (0x3FF000C4)) &= (~(0x200)) ;
after them work!
- Mon Dec 04, 2017 1:17 pm
- Forum: ESP32 Arduino
- Topic: Directly writing control registers- new programmer feeling pretty lost
- Replies: 7
- Views: 24601
Re: Directly writing control registers- new programmer feeling pretty lost
Hi!
How can write DIRECTLY the registers?
*((volatile uint32_t *) (0x3ff560F0)) = 3 do nothing.
Why?
But the read work:
... = *((volatile uint32_t *) (0x3ff560F0))
Thanks
How can write DIRECTLY the registers?
*((volatile uint32_t *) (0x3ff560F0)) = 3 do nothing.
Why?
But the read work:
... = *((volatile uint32_t *) (0x3ff560F0))
Thanks