Hi. I'm using the ESP8266-01 Wi-Fi module in my project. The ESP8266-01 will constantly check for data changes in Firebase Real Time Database. At the same time, there will be a PIC sending data to it through UART when sensor data changes. So, I want to implement interrupt for the ESP8266 to handle the data received from PIC. However, from what I found on the internet, the UART interrupt on the ESP is triggered when data arrived. Does this mean that it will be triggered even if I don't write code to set up the interrupt? If yes, how is that possible?
Thanks in advance.