Search results

  1. R

    Teensy 3.2 and mbed-rtos

    I am just playing around with mbed to get a feel for it, I don't actually need an rtos right now. I just wanted to be able to compile this snippet and see it work. Yeah I do have the Teensy selected as I have another program in my compiler which works as expected. For this program I've...
  2. R

    Teensy 3.2 and mbed-rtos

    I am trying to get mbed-rtos working on my Teensy 3.2. I am using the following code: #include "mbed.h" #include "rtos.h" DigitalOut led(D13); void blink(void const *args) { led = !led; } int main(void) { RtosTimer led_timer(blink, osTimerPeriodic, (void *)0)...
Back
Top