
Search found 3 matches
- Sun Jul 14, 2019 12:15 pm
- Forum: Report Bugs
- Topic: Hard coded path
- Replies: 1
- Views: 4059
Hard coded path
Full path and username is included (I'm guessing the person who compiled the source).


- Fri Mar 16, 2018 3:13 am
- Forum: ESP32 Arduino
- Topic: Using timerAttachInterrupt inside a library
- Replies: 1
- Views: 5273
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: 5273
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 ...
This is the function needed for the timerAttachInterrupt():
void IRAM_ATTR TriggerTimer::cdInterrupt(){
//some codes
}
This is how I used the attachTimerInterrupt() function:
void ...