Search found 1 match
- Wed Jan 10, 2018 1:17 am
- Forum: ESP-IDF
- Topic: some questions when use IRAM_ATTR
- Replies: 1
- Views: 3181
some questions when use IRAM_ATTR
dear: in my esp32 app,there is a Timer group0 ISR handler,as follow: float dataFloat; int dataInt; void IRAM_ATTR imer_group0_isr(void *para) { dtaInt = 123; dataFloat = (float)dataInt; // will be error when i use "make monitor" to run it,but it is ok when compile when i use "make flash" 。。。。。。。。。。。...