File.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 File type as an enum
  22. /// </summary>
  23. public enum File : byte
  24. {
  25. Device = 1,
  26. Settings = 2,
  27. Sport = 3,
  28. Activity = 4,
  29. Workout = 5,
  30. Course = 6,
  31. Schedules = 7,
  32. Weight = 9,
  33. Totals = 10,
  34. Goals = 11,
  35. BloodPressure = 14,
  36. MonitoringA = 15,
  37. ActivitySummary = 20,
  38. MonitoringDaily = 28,
  39. MonitoringB = 32,
  40. Segment = 34,
  41. SegmentList = 35,
  42. MfgRangeMin = 0xF7,
  43. MfgRangeMax = 0xFE,
  44. Invalid = 0xFF
  45. }
  46. }