Coder Social home page Coder Social logo

Comments (5)

ivanseidel avatar ivanseidel commented on May 24, 2024

Try this and let me know if works:

void sequenceHandler(){
    // Disable Interrupts
    noInterrupts();

    // Do something that may take longer...
    while(something());

    // Enable Interrupts again and exit
    interrupts();
}

If that doesn't work let me know @xxseabxx

from duetimer.

l-mb avatar l-mb commented on May 24, 2024

I thought interrupts are automatically disabled in an ISR; so no need to explicitly call noInterrupts(). If your ISR takes longer, new interrupts are queued, and will be delivered afterward (but not multiple times for the same IRQ). Of course, then your timing is screwed up.

I think the best way for what you want would be to find an alternative to the busy wait in the ISR. Since you're waiting for a HIGH->LOW transition on a digital PIN, you can handle that via an interrupt too:

attachInterrupt(pinEOC, handler, FALLING);

That'll probably need some reshuffling of your code to be more event-driven.

from duetimer.

qbsho avatar qbsho commented on May 24, 2024

Thanks for the fast reply.
I will try it out in the next few days!

@l-mb I'm not sure how to change my code to work with the attachInterrupt - but i'm also the opinion it's better to work outside the sequence

I let you know my experience
Thanks

from duetimer.

ivanseidel avatar ivanseidel commented on May 24, 2024

@xxseabxx
Any news? I want to close this if possible

from duetimer.

qbsho avatar qbsho commented on May 24, 2024

Hello
I handle this with the
attachInterrupt(pinEOC, handler, FALLING);

thanks for you reply and help.
regards sebastian

from duetimer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.