InterviewSolution
Saved Bookmarks
| 1. |
Is it recommended to use printf() inside ISR? |
|
Answer» printf() is a non-reentrant and thread-safe FUNCTION which is why it is not recommended to call INSIDE the ISR. |
|