CPLParameters.hpp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLParameters.hpp - interface for the CPLParameters class
  11. *
  12. * read/write a parameter block image from/to a device/file;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef CPLPARAMETERS_HEADER
  19. #define CPLPARAMETERS_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <stdint.h>
  24. #include <cstddef>
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../classes/stdafx.hpp"
  29. #include "../classes/CPLChannel.hpp"
  30. #include "../classes/CPLMessage.hpp"
  31. /*====================================================================*
  32. * class declaration;
  33. *--------------------------------------------------------------------*/
  34. class __declspec (dllexport) CPLParameters:public CPLMessage
  35. {
  36. public:
  37. CPLParameters ();
  38. explicit CPLParameters (char const * filename);
  39. explicit CPLParameters (CPLChannel * channel);
  40. virtual ~ CPLParameters ();
  41. void * Data () const;
  42. size_t Size () const;
  43. bool IsValid () const;
  44. signed Flash (CPLChannel * channel);
  45. signed Write (CPLChannel * channel);
  46. signed Write (char const * filename);
  47. signed Read (CPLChannel *);
  48. signed Read (char const * filename);
  49. CPLParameters & SetCAPPriority (int CAPpriority);
  50. int Write_QoS_block (int selectPIB);
  51. CPLParameters & Lock ();
  52. private:
  53. // uint8_t * mbuffer;
  54. CPLParameters & Init ();
  55. uint16_t mextent;
  56. #ifndef __GNUC__
  57. #pragma pack (push, 1)
  58. #endif
  59. typedef struct __packed
  60. {
  61. uint8_t FWVERSION;
  62. uint8_t PIBVERSION;
  63. uint16_t RESERVED1;
  64. uint16_t PIBLENGTH;
  65. uint16_t RESERVED2;
  66. uint32_t CHECKSUM;
  67. }
  68. Header;
  69. CPLParameters::Header * mheader;
  70. protected:
  71. uint8_t * mbuffer;
  72. #ifndef __GNUC__
  73. #pragma pack (pop)
  74. #endif
  75. };
  76. /*====================================================================*
  77. * end definition;
  78. *--------------------------------------------------------------------*/
  79. #endif