Interrupt - Help

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

Hi, I am getting some warnings in my code. It is due to an interrupt routine -

   

This is the warning - MULTIPLE CALL TO FUNCTION.  I found out that I should create a reentrant file -  but I am not sure how to create one and what it should contain.

   

Best Regards 😉

0 Likes
1 Solution
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

This error message pops up when you have got a routine that is called

   

a) from within an interrupt handler

   

and

   

b) from any other place in your project.

   

All will be well if you can avoid a) or b)

   

To make a reentrant function start reading here.

   

 

   

Bob

View solution in original post

0 Likes
7 Replies