LeftRightBalance100.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. #region Copyright
  2. ////////////////////////////////////////////////////////////////////////////////
  3. // The following FIT Protocol software provided may be used with FIT protocol
  4. // devices only and remains the copyrighted property of Dynastream Innovations Inc.
  5. // The software is being provided on an "as-is" basis and as an accommodation,
  6. // and therefore all warranties, representations, or guarantees of any kind
  7. // (whether express, implied or statutory) including, without limitation,
  8. // warranties of merchantability, non-infringement, or fitness for a particular
  9. // purpose, are specifically disclaimed.
  10. //
  11. // Copyright 2016 Dynastream Innovations Inc.
  12. ////////////////////////////////////////////////////////////////////////////////
  13. // ****WARNING**** This file is auto-generated! Do NOT edit this file.
  14. // Profile Version = 16.60Release
  15. // Tag = production-akw-16.60.00-0-g5d3d436
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #endregion
  18. namespace Dynastream.Fit
  19. {
  20. /// <summary>
  21. /// Implements the profile LeftRightBalance100 type as a class
  22. /// </summary>
  23. public static class LeftRightBalance100
  24. {
  25. public const ushort Mask = 0x3FFF; // % contribution scaled by 100
  26. public const ushort Right = 0x8000; // data corresponds to right if set, otherwise unknown
  27. public const ushort Invalid = (ushort)0xFFFF;
  28. }
  29. }