Convert to 64 bit timestamps in dma edge counting.

Change-Id: If6dbb578e7408ca6a8e87ad43d65d593db8d59eb
diff --git a/frc971/wpilib/dma_edge_counting.h b/frc971/wpilib/dma_edge_counting.h
index c71e7ae..813f59c 100644
--- a/frc971/wpilib/dma_edge_counting.h
+++ b/frc971/wpilib/dma_edge_counting.h
@@ -195,7 +195,7 @@
   ::std::vector<DMASampleHandlerInterface *> handlers_;
 
   // The time at which we most recently read the sensor values.
-  uint32_t sample_time_ = 0;
+  int64_t sample_time_ = 0;
 
   DISALLOW_COPY_AND_ASSIGN(DMASynchronizer);
 };