22
Feb
Can we use printf() in an ISR?
Related Blog Items
- ASCII Case Conversion
- Josephus Problem in C
- Printing array spirally - recursive routine
- Printing array spirally - c program
- Dynamic width and precision in printf
No we cannot use printf() in ISR because ISRs’ are a part of kernel and kernel is not linked with libaray provided by C,so when we use printf() in ISR it should generate a linkage error.
Popularity: 5%
You need to log on to convert this article into PDF
Related Blog Items - ASCII Case Conversion
- Josephus Problem in C
- Printing array spirally - recursive routine
- Printing array spirally - c program
- Dynamic width and precision in printf
Related Blog Items
- ASCII Case Conversion
- Josephus Problem in C
- Printing array spirally - recursive routine
- Printing array spirally - c program
- Dynamic width and precision in printf
No Comments
No comments yet.