FreeRTOS running on Teensy 4.0 would be really nice! Teensy is so fast now, that it needs RTOS.
-albertr
Type: Posts; User: albertr
FreeRTOS running on Teensy 4.0 would be really nice! Teensy is so fast now, that it needs RTOS.
-albertr
Is 2M baud rate supported by FlexCAN library? Will it work on Teensy 3.6?
-albertr
That was it, thanks you very much for nailing it!
-albertr
Here's a code snipped demonstrating how we are calling it:
uint32_t pwm_neut = 0,
uint8_t pwm_low_byte;
pwm_neut = read_afew(20);
Serial.printf("Neutal position: %d\n",...
Hello,
Newbie with a first post here... We are using teensy 3.2 and have a simple function below to read PWM pulses:
uint32_t read_afew( uint32_t howmany) {
uint32_t val = 0;
uint8_t i;...