DecodeWheelTorque.h 814 B

1234567891011121314151617181920212223
  1. /*
  2. This software is subject to the license described in the License.txt file
  3. included with this software distribution. You may not use this file except in compliance
  4. with this license.
  5. Copyright (c) Dynastream Innovations Inc. 2014
  6. All rights reserved.
  7. */
  8. #if !defined (DECODE_WHEELTORQUE_H)
  9. #define DECODE_WHEELTORQUE_H
  10. #define WT_TIME_QUANTIZATION (2048) // Timer ticks per second
  11. #include "PowerDecoder.h"
  12. void DecodeWheelTorque_Init(double dRecordInterval_, double dTimeBasedPeriod, double dReSyncInterval_, PowerRecordReceiver powerRecordReceiverPtr_);
  13. void DecodeWheelTorque_End(void);
  14. void DecodeWheelTorque_Message(double dTime_, unsigned char aucByte_[]);
  15. void DecodeWheelTorque_Resync(double dTime_, unsigned char aucByte_[]);
  16. void DecodeWheelTorque(double dTime_, unsigned char aucByte_[]);
  17. #endif