> I would like to make known a bug we ran into with reading the eQEP module that resulted in position values not updating after exactly 1020 reads without closing the file pointer.
Of course you are using a low level read function, not buffered userspace IO like fscanf(). That is, use read() not fscanf(). Then try using seek() back to file begin, offset 0, in between reads. HTH, Dick -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
