Search results

  1. T

    TeensyTimerTool

    ...first, awesome work/library! But in addition to trigger some actions based on some accurate timing I need some time measurement based on pin level changes. Do I missed something or is a simple running timer which I can ask for the time while pin level changed missing ? Besides the general...
  2. T

    using slow timer with Teensy 3.1 via fixed frequency clock instead of system clock

    ...ok, like always the devil is in details. Searching through the web, reading the data sheet again I get it. The following code does my job: FTM0_SC = 0; // Clear TPM0_SC register FTM0_CNT = 0; // Reset the TPM0_CNT counter FTM0_MOD = 0xFFFF; // Set overflow value...
  3. T

    using slow timer with Teensy 3.1 via fixed frequency clock instead of system clock

    ...no this doesn't meed my needs. I want to measure a kind of PWM signal where two adjacent edges have a distance between 0 to 1000 milliseconds. Before I did it with an original Arduino and its timers without any problems. Now I want to switch with my application to the teensy. I'm not sure...
  4. T

    using slow timer with Teensy 3.1 via fixed frequency clock instead of system clock

    I want to measure times in milliseconds range up to 1000ms. Using the FlexTimer and the system clock with biggest possible divider would produce too many overflows. So the idea came up to use a slower clock source: the "fixed frequency clock". But choosing this, my timer dosn't count anymore and...
Back
Top