CPLFirmware.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <chapter id='CPLFirmware'>
  2. <title>
  3. Class CPLFirmware
  4. </title>
  5. <section id="CPLFirmware-class">
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class implements one instance of a runtime formware image chain. Class methods permit reading and writing a firmware image chain from and to powerline devices or local host files. Class properties permit direct access to the chain but do not expose any chain elements. Application that must access specific image chain elements should inherit this class.
  11. </para>
  12. <para>
  13. This class is declared in <ulink url='CPLFirmware.hpp.html'>CPLFirmware.hpp</ulink> and defined in <ulink url='CPLFirmware.cpp.html'>CPLFirmware.cpp</ulink>.
  14. </para>
  15. <section id="CPLFirmware-inheritance">
  16. <title>
  17. Inheritance
  18. </title>
  19. <para>
  20. None.
  21. </para>
  22. </section>
  23. <section id="CPLFirmware-dependence">
  24. <title>
  25. Dependence
  26. </title>
  27. <para>
  28. </para>
  29. </section>
  30. </section>
  31. <section id="CPLFirmware-properties">
  32. <title>
  33. Properties
  34. </title>
  35. <para>
  36. </para>
  37. <section id="CPLFirmware-Data">
  38. <title>
  39. CPLFirmware::Data
  40. </title>
  41. <funcsynopsis>
  42. <funcprototype>
  43. <funcdef>void * <function>Data</function></funcdef>
  44. <paramdef>void</paramdef>
  45. </funcprototype>
  46. </funcsynopsis>
  47. <para>
  48. Return the absolute address of the firmware image chain. This will be the address of the first header in the firmware image chain.
  49. </para>
  50. </section>
  51. <section id="CPLFirmware-IsValid">
  52. <title>
  53. CPLFirmware::IsValid
  54. </title>
  55. <funcsynopsis>
  56. <funcprototype>
  57. <funcdef>bool <function>IsValid</function></funcdef>
  58. <paramdef>void</paramdef>
  59. </funcprototype>
  60. </funcsynopsis>
  61. <para>
  62. Return <constant>true</constant> if the current firmware image chain appears valid. Validity is determined by walking the image header chain to confirm that stored lengths, offsets, checksums and so forth are correct.
  63. </para>
  64. </section>
  65. <section id="CPLFirmware-Size">
  66. <title>
  67. CPLFirmware::Size
  68. </title>
  69. <funcsynopsis>
  70. <funcprototype>
  71. <funcdef>size_t <function>Size</function></funcdef>
  72. <paramdef>void</paramdef>
  73. </funcprototype>
  74. </funcsynopsis>
  75. <para>
  76. Return the size of the firmware image chain last read from a powerline device or host file. This will be the sum of all bytes read and should equal the sum of all image headers plus all firmware images in the chain.
  77. </para>
  78. </section>
  79. </section>
  80. <section id="CPLFirmware-methods">
  81. <title>
  82. Methods
  83. </title>
  84. <para>
  85. </para>
  86. <section id="CPLFirmware-ReadFile">
  87. <title>
  88. CPLFirmware::Read
  89. </title>
  90. <funcsynopsis>
  91. <funcprototype>
  92. <funcdef>signed <function>Read</function></funcdef>
  93. <paramdef>char const * <parameter>filename</parameter></paramdef>
  94. </funcprototype>
  95. </funcsynopsis>
  96. <para>
  97. Read the firmware image chain from the named host file.
  98. </para>
  99. </section>
  100. <section id="CPLFirmware-ReadChannel">
  101. <title>
  102. CPLFiremare::Read
  103. </title>
  104. <funcsynopsis>
  105. <funcprototype>
  106. <funcdef>signed <function>Read</function></funcdef>
  107. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  108. </funcprototype>
  109. </funcsynopsis>
  110. <para>
  111. Read the firmware image chain from the powerline device assigned to the given channel.
  112. </para>
  113. </section>
  114. <section id="CPLFirmware-WriteFile">
  115. <title>
  116. CPLFirmware::Write
  117. </title>
  118. <funcsynopsis>
  119. <funcprototype>
  120. <funcdef>signed <function>Write</function></funcdef>
  121. <paramdef>char const * <parameter>filename</parameter></paramdef>
  122. </funcprototype>
  123. </funcsynopsis>
  124. <para>
  125. Write the firmware image chain to the named host file.
  126. </para>
  127. </section>
  128. <section id="CPLFirmware-WriteChannel">
  129. <title>
  130. CPLFirmware::Write
  131. </title>
  132. <funcsynopsis>
  133. <funcprototype>
  134. <funcdef>signed <function>Write</function></funcdef>
  135. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  136. </funcprototype>
  137. </funcsynopsis>
  138. <para>
  139. Write the firmware image chain to the powerline device assigned to the given <varname>channel</varname>. This method fills or over-writes the firmware image buffer on the powerline device.
  140. </para>
  141. </section>
  142. </section>
  143. <section id="CPLFirmware-operators">
  144. <title>
  145. Operators
  146. </title>
  147. <para>
  148. None.
  149. </para>
  150. </section>
  151. <section id="CPLFirmware-constructors">
  152. <title>
  153. Constructors
  154. </title>
  155. <para>
  156. </para>
  157. <funcsynopsis>
  158. <funcprototype>
  159. <funcdef><function>CPLFirmware</function></funcdef>
  160. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  161. </funcprototype>
  162. </funcsynopsis>
  163. <para>
  164. Initialize the instance by reading the firmware image chain from the powerline device assigned by the given channel. This constructor may be used to fetch firmware that has been downloaded as a module by the local host or some remote host.
  165. </para>
  166. <funcsynopsis>
  167. <funcprototype>
  168. <funcdef><function>CPLFirmware</function></funcdef>
  169. <paramdef>char const * <parameter>filename</parameter></paramdef>
  170. </funcprototype>
  171. </funcsynopsis>
  172. <para>
  173. Initialize the instance by reading the firmware image chain from the named host file.
  174. </para>
  175. </section>
  176. <section id="CPLFirmware-examples">
  177. <title>
  178. Examples
  179. </title>
  180. <para>
  181. To be written.
  182. </para>
  183. </section>
  184. </chapter>