Full path and username is included (I'm guessing the person who compiled the source).
Search found 3 matches
- Sun Jul 14, 2019 12:15 pm
- Forum: Report Bugs
- Topic: Hard coded path
- Replies: 1
- Views: 3825
- Fri Mar 16, 2018 3:13 am
- Forum: ESP32 Arduino
- Topic: Using timerAttachInterrupt inside a library
- Replies: 1
- Views: 4932
Re: Using timerAttachInterrupt inside a library
I was able to fix it by making the function static in the header file.
- Wed Mar 14, 2018 7:19 am
- Forum: ESP32 Arduino
- Topic: Using timerAttachInterrupt inside a library
- Replies: 1
- Views: 4932
Using timerAttachInterrupt inside a library
I moved most of my code to a library but one particular function call gives me an error when compiling. This is the function needed for the timerAttachInterrupt(): void IRAM_ATTR TriggerTimer::cdInterrupt(){ //some codes } This is how I used the attachTimerInterrupt() function: void TriggerTimer::st...