Guys, could someone here help me how to manipulate the esp8266 pin directly in the registers, I've searched in several places but I haven't entered anything, I like to make an arduino but in esp8266 not yet, Thank you very much in advance.
Why do you want to do that ?
If you have to ask, then you should not do that
For example, the digitalWrite
function is in the file core_esp8266_wiring_digital.cpp and is this:
extern void IRAM_ATTR __digitalWrite(uint8_t pin, uint8_t val) {
stopWaveform(pin); // Disable any Tone or startWaveform on this pin
_stopPWM(pin); // and any analogWrites (PWM)
if(pin < 16){
if(val) GPOS = (1 << pin);
else GPOC = (1 << pin);
} else if(pin == 16){
if(val) GP16O |= 1;
else GP16O &= ~1;
}
}
Have also a look a the pinMode() function. If you think you can do better than that, then I can not help you.
*(volatile uint32_t *)0x60000304 = 1 << 13; // write HIGH to GPIO13
*(volatile uint32_t *)0x60000308 = 1 << 13; // write LOW to GPIO13
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.