Added documentation for boost
This commit is contained in:
@@ -214,14 +214,14 @@ $(document).ready(function(){initNavTree('rtc__c_8c_source.html',''); initResiza
|
||||
<div class="line"><a name="l00122"></a><span class="lineno"> 122</span> }</div>
|
||||
<div class="line"><a name="l00123"></a><span class="lineno"> 123</span>  </div>
|
||||
<div class="line"><a name="l00124"></a><span class="lineno"> 124</span> <span class="keywordtype">void</span> RTC_C_configureCalendarAlarm(uint16_t baseAddress,</div>
|
||||
<div class="line"><a name="l00125"></a><span class="lineno"> 125</span>  RTC_C_configureCalendarAlarmParam *param)</div>
|
||||
<div class="line"><a name="l00125"></a><span class="lineno"> 125</span>  RTC_C_configureCalendarAlarmParam *<a class="code" href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a>)</div>
|
||||
<div class="line"><a name="l00126"></a><span class="lineno"> 126</span> {</div>
|
||||
<div class="line"><a name="l00127"></a><span class="lineno"> 127</span>  <span class="comment">//Each of these is XORed with 0x80 to turn on if an integer is passed,</span></div>
|
||||
<div class="line"><a name="l00128"></a><span class="lineno"> 128</span>  <span class="comment">//or turn OFF if RTC_C_ALARM_OFF (0x80) is passed.</span></div>
|
||||
<div class="line"><a name="l00129"></a><span class="lineno"> 129</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCAMINHR_L) = (param->minutesAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00130"></a><span class="lineno"> 130</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCAMINHR_H) = (param->hoursAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00131"></a><span class="lineno"> 131</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCADOWDAY_L) = (param->dayOfWeekAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00132"></a><span class="lineno"> 132</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCADOWDAY_H) = (param->dayOfMonthAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00129"></a><span class="lineno"> 129</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCAMINHR_L) = (<a class="code" href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a>->minutesAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00130"></a><span class="lineno"> 130</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCAMINHR_H) = (<a class="code" href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a>->hoursAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00131"></a><span class="lineno"> 131</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCADOWDAY_L) = (<a class="code" href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a>->dayOfWeekAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00132"></a><span class="lineno"> 132</span>  <a class="code" href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a>(baseAddress + OFS_RTCADOWDAY_H) = (<a class="code" href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a>->dayOfMonthAlarm ^ 0x80);</div>
|
||||
<div class="line"><a name="l00133"></a><span class="lineno"> 133</span> }</div>
|
||||
<div class="line"><a name="l00134"></a><span class="lineno"> 134</span> <span class="keywordtype">void</span> RTC_C_setCalendarEvent (uint16_t baseAddress,</div>
|
||||
<div class="line"><a name="l00135"></a><span class="lineno"> 135</span>  uint16_t eventSelect)</div>
|
||||
@@ -433,6 +433,7 @@ $(document).ready(function(){initNavTree('rtc__c_8c_source.html',''); initResiza
|
||||
<div class="line"><a name="l00341"></a><span class="lineno"> 341</span> <span class="comment">//</span></div>
|
||||
<div class="line"><a name="l00344"></a><span class="lineno"> 344</span> <span class="comment"></span><span class="comment">//</span></div>
|
||||
<div class="line"><a name="l00345"></a><span class="lineno"> 345</span> <span class="comment">//*****************************************************************************</span></div>
|
||||
<div class="ttc" id="a_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c_html_a95ea9afb900e6437e2aa85f3578289b7"><div class="ttname"><a href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c.html#a95ea9afb900e6437e2aa85f3578289b7">param</a></div><div class="ttdeci">MPU_initThreeSegmentsParam param</div><div class="ttdef"><b>Definition:</b> <a href="_m_s_p430_f_r57xx_2mpu_2mpu__ex3__system_pre_init_8c_source.html#l00075">mpu_ex3_systemPreInit.c:75</a></div></div>
|
||||
<div class="ttc" id="ahw__memmap_8h_html"><div class="ttname"><a href="hw__memmap_8h.html">hw_memmap.h</a></div></div>
|
||||
<div class="ttc" id="ahw__memmap_8h_html_a437bba8c6aaa7542f8d7522146157b42"><div class="ttname"><a href="hw__memmap_8h.html#a437bba8c6aaa7542f8d7522146157b42">HWREG8</a></div><div class="ttdeci">#define HWREG8(x)</div><div class="ttdef"><b>Definition:</b> <a href="hw__memmap_8h_source.html#l00041">hw_memmap.h:41</a></div></div>
|
||||
<div class="ttc" id="ahw__memmap_8h_html_a7bb830016238e9f911612eddc5e58143"><div class="ttname"><a href="hw__memmap_8h.html#a7bb830016238e9f911612eddc5e58143">HWREG16</a></div><div class="ttdeci">#define HWREG16(x)</div><div class="ttdef"><b>Definition:</b> <a href="hw__memmap_8h_source.html#l00039">hw_memmap.h:39</a></div></div>
|
||||
@@ -445,7 +446,7 @@ $(document).ready(function(){initNavTree('rtc__c_8c_source.html',''); initResiza
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="dir_4e9c05acfa2c3671b8618fcb95d57d96.html">Software</a></li><li class="navelem"><a class="el" href="dir_70428d3c5958c16802133545478a5cfb.html">Code Composer Studio Workspace</a></li><li class="navelem"><a class="el" href="dir_ef94255a62432ae865475b379d8bd501.html">SunseekerTelemetryAndLightingSystem</a></li><li class="navelem"><a class="el" href="dir_0201fb0a75bfb001181cd762468718da.html">Libraries</a></li><li class="navelem"><a class="el" href="dir_c161f571c8319861135bb5a2c903edf9.html">driverlib</a></li><li class="navelem"><a class="el" href="dir_46b95d24c0abe1f4457728e63ee00541.html">MSP430F5xx_6xx</a></li><li class="navelem"><a class="el" href="rtc__c_8c.html">rtc_c.c</a></li>
|
||||
<li class="footer">Generated on Mon Feb 22 2021 20:33:18 for 2020-2021 Sunseeker Telemetry and Lighting System by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1 </li>
|
||||
<li class="footer">Generated on Tue Apr 6 2021 20:40:57 for 2020-2021 Sunseeker Telemetry and Lighting System by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user