Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 1 | #include "frc971/wpilib/encoder_and_potentiometer.h" |
| 2 | |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 3 | #include "aos/logging/logging.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 4 | #include "aos/realtime.h" |
Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 5 | |
| 6 | namespace frc971 { |
| 7 | namespace wpilib { |
| 8 | |
Brian Silverman | 7cce2d3 | 2017-02-19 21:48:48 -0800 | [diff] [blame] | 9 | bool DMAEncoder::DoUpdateFromSample(const DMASample &sample) { |
Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 10 | if (index_last_value_) { |
| 11 | // It was already true last time, so check if it's reset back to false yet. |
| 12 | index_last_value_ = sample.Get(index_.get()); |
| 13 | } else if (sample.Get(index_.get())) { |
| 14 | // This sample is posedge, so record all the values. |
| 15 | index_last_value_ = true; |
| 16 | ++index_posedge_count_; |
| 17 | last_encoder_value_ = sample.GetRaw(encoder_.get()); |
Brian Silverman | 7cce2d3 | 2017-02-19 21:48:48 -0800 | [diff] [blame] | 18 | return true; |
Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 19 | } |
Brian Silverman | 7cce2d3 | 2017-02-19 21:48:48 -0800 | [diff] [blame] | 20 | return false; |
Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 21 | } |
| 22 | |
Brian Silverman | 4da5807 | 2015-01-26 20:18:52 -0500 | [diff] [blame] | 23 | } // namespace wpilib |
| 24 | } // namespace frc971 |