Coder Social home page Coder Social logo

Timers interfere about duetimer HOT 6 CLOSED

ivanseidel avatar ivanseidel commented on May 24, 2024
Timers interfere

from duetimer.

Comments (6)

ivanseidel avatar ivanseidel commented on May 24, 2024

Could you post the entire sketch code so that I can investigate it deeper?

from duetimer.

ast avatar ast commented on May 24, 2024

I did some changes but I still get unexpected behavior. messageTestis called 1000/s. handleris not called at all.

#include <CmdMessenger.h>
#include <DueTimer.h>

CmdMessenger cmdMessenger = CmdMessenger(Serial);

enum
{
  kSetFreq              , // Command to request led to be set in specific state
  kStatus               , // Command to report status
};

// Attached callbacks
void attachCommandCallbacks()
{

}

void setup() {
  // DAC resolution in bits
  analogWriteResolution(12);

  // Start serial
  Serial.begin(9600);
  cmdMessenger.printLfCr();

  // Timer
  Timer.getAvailable().attachInterrupt(messageTest).start(10);
  Timer.getAvailable().attachInterrupt(handler).start(1000);


  cmdMessenger.sendCmd(kStatus,"Ready.");
}

void messageTest() {
  cmdMessenger.sendCmd(kStatus, (int)1);
}

// Generator function
inline double f(float t) {
  double r, w;

  w = TWO_PI * 1.3;

  r = 1.8 + sin(w * t) + 0.8 * sin(2*w*t) + 0.4 * sin(3*w*t);
  return r;
}

void handler() {
  static double t = 0.;
  t += 0.001;

  //Serial.println((int) (2000. * f(t)));

  analogWrite(DAC0, (int) (1000. * f(t)));
}

void loop() {
  // Process incoming serial data, and perform callbacks
  cmdMessenger.feedinSerialData();
}

from duetimer.

ivanseidel avatar ivanseidel commented on May 24, 2024

Oh, now I see ^^

Notice that the start(microsseconds = -1) uses "microseconds" as parameter, not the frequency. If you want to set the frequency instead, try something like this:

Timer.getAvailable().setFrequency(10).attachInterrupt(handler).start();

The reason why (what I think) 10microseconds didn't worked, is because it's too fast for the Due, but I'm not shure.

from duetimer.

ast avatar ast commented on May 24, 2024

My bad. Muito obrigado!

from duetimer.

ivanseidel avatar ivanseidel commented on May 24, 2024

De nada =]
Did it worked?

from duetimer.

ast avatar ast commented on May 24, 2024

Didn't try to be honest. I was just using the second timer for debugging so I found another way.
Might come in very handy in the future though! Great library, thanks a lot!!

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.