Search results

  1. B

    Threading and timeslice

    I have a question about thread timing. volatile uint counter; void threadFunction() { while(1) { counter++; threads.delay (1000); } } and... void loop() { delay(1000); } When this thread is added and its timeslice is 10 msec, how often...
  2. B

    Char [] to double or String.ToDouble()

    First time poster here - long time lurker. I am parsing an nmea sentence and require the full double precision of the latitude and longitude. Using the Teensy 4.1 for Precision Agriculture GPS and absolutely require the precision, floats will not do. We are attempting to put basic operation of...
Back
Top