Skip to content

Commit a7920e2

Browse files
committed
added device name header files
1 parent 07d9782 commit a7920e2

63 files changed

Lines changed: 564 additions & 96 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "RTC_NXP_Arduino"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.3.0
51+
PROJECT_NUMBER = 0.4.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ It returns a value in the systems time stamp format of 'time.h'.
1616
To display the calendar/time, it can be written in this way.
1717

1818
```cpp
19+
#include <PCF2131_I2C.h> // including PCF2131_I2C class
1920
#include <time.h>
20-
#include <RTC_NXP.h> // including PCF2131_I2C class
2121

2222
PCF2131_I2C rtc;
2323
...
@@ -29,21 +29,22 @@ Serial.println( ctime( &current_time ) ); // Result will appear like -> "Sun Ap
2929
## Supported devices
3030
PCF2131, PCF85063A, PCF85063TP and PCF85263A are supported.
3131
On PCF2131, both I²C and SPI can be used for interfacing MCU.
32+
Include device name header file (`PCF85063A.h`, `PCF85063TP.h`, `PCF85063TP.h` and for PCF2131, `PCF2131_I2C.h`, `PCF2131_SPI.h`) to use those class libraries.
3233

33-
Type#|Features|Interface|Evaluation board
34-
---|---|---|---
35-
[PCF2131](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-temperature-compensation/nano-power-highly-accurate-rtc-with-integrated-quartz-crystal:PCF2131) |Nano-Power Highly Accurate RTC with Integrated Quartz Crystal |I²C and SPI |[PCF2131/PCA2131 Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf2131-pca2131-arduino-shield-evaluation-board:PCF2131-ARD)
36-
[PCF85063A](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar-with-alarm-function-and-ic-bus:PCF85063A) |Tiny Real-Time Clock/Calendar with Alarm Function |I²C |[PCF85063AT-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85063at-ard-arduino-shield-tiny-real-time-clock:PCF85063AT-ARD)
37-
[PCF85063TP](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar:PCF85063TP) |Tiny Real-Time Clock/Calendar |I²C |[PCF85063TP-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85063tp-ard-arduino-shield-evaluation-board:PCF85063TP-ARD)
38-
[PCF85263A](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar-with-alarm-function-battery-switch-over-time-stamp-input-and-ic-bus:PCF85263A)|Tiny Real-Time Clock/Calendar with Alarm Function, Battery Switch-Over, Time Stamp Input |I²C|[PCF85263ATL-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85263atl-ard-arduino-shield-tiny-real-time-clock:PCF85263ATL-ARD)
34+
Type#|Header file|Features|Interface|Evaluation board
35+
---|---|---|---|---
36+
[PCF2131](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-temperature-compensation/nano-power-highly-accurate-rtc-with-integrated-quartz-crystal:PCF2131) |`PCF2131_I2C.h`<br/>`PCF2131_SPI.h` |Nano-Power Highly Accurate RTC with Integrated Quartz Crystal |I²C and SPI |[PCF2131/PCA2131 Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf2131-pca2131-arduino-shield-evaluation-board:PCF2131-ARD)
37+
[PCF85063A](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar-with-alarm-function-and-ic-bus:PCF85063A) |`PCF85063A.h` |Tiny Real-Time Clock/Calendar with Alarm Function |I²C |[PCF85063AT-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85063at-ard-arduino-shield-tiny-real-time-clock:PCF85063AT-ARD)
38+
[PCF85063TP](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar:PCF85063TP) |`PCF85063TP.h` |Tiny Real-Time Clock/Calendar |I²C |[PCF85063TP-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85063tp-ard-arduino-shield-evaluation-board:PCF85063TP-ARD)
39+
[PCF85263A](https://www.nxp.com/products/peripherals-and-logic/signal-chain/real-time-clocks/rtcs-with-ic-bus/tiny-real-time-clock-calendar-with-alarm-function-battery-switch-over-time-stamp-input-and-ic-bus:PCF85263A) |`PCF85263A.h` |Tiny Real-Time Clock/Calendar with Alarm Function, Battery Switch-Over, Time Stamp Input |I²C|[PCF85263ATL-ARD Arduino® Shield Evaluation Board](https://www.nxp.com/design/development-boards/analog-toolbox/arduino-shields-solutions/pcf85263atl-ard-arduino-shield-tiny-real-time-clock:PCF85263ATL-ARD)
3940

4041
## Code sample
4142

4243
```cpp
4344
// Very simple sample to use the 'PCF2131-ARD : Arduino® Shield Evaluation Board'
4445

46+
#include <PCF2131_I2C.h>
4547
#include <time.h>
46-
#include <RTC_NXP.h>
4748

4849
void set_time(void);
4950

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
66
<meta name="generator" content="Doxygen 1.9.6"/>
77
<meta name="viewport" content="width=device-width, initial-scale=1"/>
8-
<title>RTC_NXP_Arduino: PCA2131_I2C.cpp Source File</title>
8+
<title>RTC_NXP_Arduino: PCF2131_I2C.cpp Source File</title>
99
<link href="tabs.css" rel="stylesheet" type="text/css"/>
1010
<script type="text/javascript" src="jquery.js"></script>
1111
<script type="text/javascript" src="dynsections.js"></script>
@@ -21,7 +21,7 @@
2121
<tbody>
2222
<tr id="projectrow">
2323
<td id="projectalign">
24-
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.3.0</span>
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
2525
</div>
2626
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
2727
</td>
@@ -74,7 +74,7 @@
7474
</div>
7575
</div><!-- top -->
7676
<div class="header">
77-
<div class="headertitle"><div class="title">PCA2131_I2C.cpp</div></div>
77+
<div class="headertitle"><div class="title">PCF2131_I2C.cpp</div></div>
7878
</div><!--header-->
7979
<div class="contents">
8080
<div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include &quot;RTC_NXP.h&quot;</span></div>
@@ -111,8 +111,8 @@
111111
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"> 32</span>{</div>
112112
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span> bit_op8( reg, mask, val );</div>
113113
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"> 34</span>}</div>
114-
<div class="ttc" id="aclass_p_c_f2131___i2_c_html_a985ec451e07b03626584aa6bcb0de450"><div class="ttname"><a href="class_p_c_f2131___i2_c.html#a985ec451e07b03626584aa6bcb0de450">PCF2131_I2C::PCF2131_I2C</a></div><div class="ttdeci">PCF2131_I2C(uint8_t i2c_address=(0xA6 &gt; &gt; 1))</div><div class="ttdef"><b>Definition:</b> <a href="_p_c_a2131___i2_c_8cpp_source.html#l00003">PCA2131_I2C.cpp:3</a></div></div>
115-
<div class="ttc" id="aclass_p_c_f2131___i2_c_html_ac0ff7f442437ec27dd0a786ee083c132"><div class="ttname"><a href="class_p_c_f2131___i2_c.html#ac0ff7f442437ec27dd0a786ee083c132">PCF2131_I2C::~PCF2131_I2C</a></div><div class="ttdeci">virtual ~PCF2131_I2C()</div><div class="ttdef"><b>Definition:</b> <a href="_p_c_a2131___i2_c_8cpp_source.html#l00007">PCA2131_I2C.cpp:7</a></div></div>
114+
<div class="ttc" id="aclass_p_c_f2131___i2_c_html_a985ec451e07b03626584aa6bcb0de450"><div class="ttname"><a href="class_p_c_f2131___i2_c.html#a985ec451e07b03626584aa6bcb0de450">PCF2131_I2C::PCF2131_I2C</a></div><div class="ttdeci">PCF2131_I2C(uint8_t i2c_address=(0xA6 &gt; &gt; 1))</div><div class="ttdef"><b>Definition:</b> <a href="_p_c_f2131___i2_c_8cpp_source.html#l00003">PCF2131_I2C.cpp:3</a></div></div>
115+
<div class="ttc" id="aclass_p_c_f2131___i2_c_html_ac0ff7f442437ec27dd0a786ee083c132"><div class="ttname"><a href="class_p_c_f2131___i2_c.html#ac0ff7f442437ec27dd0a786ee083c132">PCF2131_I2C::~PCF2131_I2C</a></div><div class="ttdeci">virtual ~PCF2131_I2C()</div><div class="ttdef"><b>Definition:</b> <a href="_p_c_f2131___i2_c_8cpp_source.html#l00007">PCF2131_I2C.cpp:7</a></div></div>
116116
</div><!-- fragment --></div><!-- contents -->
117117
<!-- start footer part -->
118118
<hr class="footer"/><address class="footer"><small>
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5+
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
6+
<meta name="generator" content="Doxygen 1.9.6"/>
7+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
8+
<title>RTC_NXP_Arduino: PCF2131_I2C.h Source File</title>
9+
<link href="tabs.css" rel="stylesheet" type="text/css"/>
10+
<script type="text/javascript" src="jquery.js"></script>
11+
<script type="text/javascript" src="dynsections.js"></script>
12+
<link href="search/search.css" rel="stylesheet" type="text/css"/>
13+
<script type="text/javascript" src="search/searchdata.js"></script>
14+
<script type="text/javascript" src="search/search.js"></script>
15+
<link href="doxygen.css" rel="stylesheet" type="text/css" />
16+
</head>
17+
<body>
18+
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
19+
<div id="titlearea">
20+
<table cellspacing="0" cellpadding="0">
21+
<tbody>
22+
<tr id="projectrow">
23+
<td id="projectalign">
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
25+
</div>
26+
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
27+
</td>
28+
</tr>
29+
</tbody>
30+
</table>
31+
</div>
32+
<!-- end header part -->
33+
<!-- Generated by Doxygen 1.9.6 -->
34+
<script type="text/javascript">
35+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
36+
var searchBox = new SearchBox("searchBox", "search/",'.html');
37+
/* @license-end */
38+
</script>
39+
<script type="text/javascript" src="menudata.js"></script>
40+
<script type="text/javascript" src="menu.js"></script>
41+
<script type="text/javascript">
42+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
43+
$(function() {
44+
initMenu('',true,false,'search.php','Search');
45+
$(document).ready(function() { init_search(); });
46+
});
47+
/* @license-end */
48+
</script>
49+
<div id="main-nav"></div>
50+
<!-- window showing the filter options -->
51+
<div id="MSearchSelectWindow"
52+
onmouseover="return searchBox.OnSearchSelectShow()"
53+
onmouseout="return searchBox.OnSearchSelectHide()"
54+
onkeydown="return searchBox.OnSearchSelectKey(event)">
55+
</div>
56+
57+
<!-- iframe showing the search results (closed by default) -->
58+
<div id="MSearchResultsWindow">
59+
<div id="MSearchResults">
60+
<div class="SRPage">
61+
<div id="SRIndex">
62+
<div id="SRResults"></div>
63+
<div class="SRStatus" id="Loading">Loading...</div>
64+
<div class="SRStatus" id="Searching">Searching...</div>
65+
<div class="SRStatus" id="NoMatches">No Matches</div>
66+
</div>
67+
</div>
68+
</div>
69+
</div>
70+
71+
<div id="nav-path" class="navpath">
72+
<ul>
73+
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
74+
</div>
75+
</div><!-- top -->
76+
<div class="header">
77+
<div class="headertitle"><div class="title">PCF2131_I2C.h</div></div>
78+
</div><!--header-->
79+
<div class="contents">
80+
<div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include &lt;RTC_NXP.h&gt;</span></div>
81+
</div><!-- fragment --></div><!-- contents -->
82+
<!-- start footer part -->
83+
<hr class="footer"/><address class="footer"><small>
84+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.6
85+
</small></address>
86+
</body>
87+
</html>

docs/_p_c_f2131___s_p_i_8cpp_source.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<tbody>
2222
<tr id="projectrow">
2323
<td id="projectalign">
24-
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.3.0</span>
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
2525
</div>
2626
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
2727
</td>
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5+
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
6+
<meta name="generator" content="Doxygen 1.9.6"/>
7+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
8+
<title>RTC_NXP_Arduino: PCF2131_SPI.h Source File</title>
9+
<link href="tabs.css" rel="stylesheet" type="text/css"/>
10+
<script type="text/javascript" src="jquery.js"></script>
11+
<script type="text/javascript" src="dynsections.js"></script>
12+
<link href="search/search.css" rel="stylesheet" type="text/css"/>
13+
<script type="text/javascript" src="search/searchdata.js"></script>
14+
<script type="text/javascript" src="search/search.js"></script>
15+
<link href="doxygen.css" rel="stylesheet" type="text/css" />
16+
</head>
17+
<body>
18+
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
19+
<div id="titlearea">
20+
<table cellspacing="0" cellpadding="0">
21+
<tbody>
22+
<tr id="projectrow">
23+
<td id="projectalign">
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
25+
</div>
26+
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
27+
</td>
28+
</tr>
29+
</tbody>
30+
</table>
31+
</div>
32+
<!-- end header part -->
33+
<!-- Generated by Doxygen 1.9.6 -->
34+
<script type="text/javascript">
35+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
36+
var searchBox = new SearchBox("searchBox", "search/",'.html');
37+
/* @license-end */
38+
</script>
39+
<script type="text/javascript" src="menudata.js"></script>
40+
<script type="text/javascript" src="menu.js"></script>
41+
<script type="text/javascript">
42+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
43+
$(function() {
44+
initMenu('',true,false,'search.php','Search');
45+
$(document).ready(function() { init_search(); });
46+
});
47+
/* @license-end */
48+
</script>
49+
<div id="main-nav"></div>
50+
<!-- window showing the filter options -->
51+
<div id="MSearchSelectWindow"
52+
onmouseover="return searchBox.OnSearchSelectShow()"
53+
onmouseout="return searchBox.OnSearchSelectHide()"
54+
onkeydown="return searchBox.OnSearchSelectKey(event)">
55+
</div>
56+
57+
<!-- iframe showing the search results (closed by default) -->
58+
<div id="MSearchResultsWindow">
59+
<div id="MSearchResults">
60+
<div class="SRPage">
61+
<div id="SRIndex">
62+
<div id="SRResults"></div>
63+
<div class="SRStatus" id="Loading">Loading...</div>
64+
<div class="SRStatus" id="Searching">Searching...</div>
65+
<div class="SRStatus" id="NoMatches">No Matches</div>
66+
</div>
67+
</div>
68+
</div>
69+
</div>
70+
71+
<div id="nav-path" class="navpath">
72+
<ul>
73+
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
74+
</div>
75+
</div><!-- top -->
76+
<div class="header">
77+
<div class="headertitle"><div class="title">PCF2131_SPI.h</div></div>
78+
</div><!--header-->
79+
<div class="contents">
80+
<div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include &lt;RTC_NXP.h&gt;</span></div>
81+
</div><!-- fragment --></div><!-- contents -->
82+
<!-- start footer part -->
83+
<hr class="footer"/><address class="footer"><small>
84+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.6
85+
</small></address>
86+
</body>
87+
</html>

docs/_p_c_f2131__base_8cpp_source.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<tbody>
2222
<tr id="projectrow">
2323
<td id="projectalign">
24-
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.3.0</span>
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
2525
</div>
2626
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
2727
</td>

docs/_p_c_f85063_a_8cpp_source.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<tbody>
2222
<tr id="projectrow">
2323
<td id="projectalign">
24-
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.3.0</span>
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
2525
</div>
2626
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
2727
</td>

docs/_p_c_f85063_a_8h_source.html

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5+
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
6+
<meta name="generator" content="Doxygen 1.9.6"/>
7+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
8+
<title>RTC_NXP_Arduino: PCF85063A.h Source File</title>
9+
<link href="tabs.css" rel="stylesheet" type="text/css"/>
10+
<script type="text/javascript" src="jquery.js"></script>
11+
<script type="text/javascript" src="dynsections.js"></script>
12+
<link href="search/search.css" rel="stylesheet" type="text/css"/>
13+
<script type="text/javascript" src="search/searchdata.js"></script>
14+
<script type="text/javascript" src="search/search.js"></script>
15+
<link href="doxygen.css" rel="stylesheet" type="text/css" />
16+
</head>
17+
<body>
18+
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
19+
<div id="titlearea">
20+
<table cellspacing="0" cellpadding="0">
21+
<tbody>
22+
<tr id="projectrow">
23+
<td id="projectalign">
24+
<div id="projectname">RTC_NXP_Arduino<span id="projectnumber">&#160;0.4.0</span>
25+
</div>
26+
<div id="projectbrief">LED driver device operation sample code for Arduino</div>
27+
</td>
28+
</tr>
29+
</tbody>
30+
</table>
31+
</div>
32+
<!-- end header part -->
33+
<!-- Generated by Doxygen 1.9.6 -->
34+
<script type="text/javascript">
35+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
36+
var searchBox = new SearchBox("searchBox", "search/",'.html');
37+
/* @license-end */
38+
</script>
39+
<script type="text/javascript" src="menudata.js"></script>
40+
<script type="text/javascript" src="menu.js"></script>
41+
<script type="text/javascript">
42+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
43+
$(function() {
44+
initMenu('',true,false,'search.php','Search');
45+
$(document).ready(function() { init_search(); });
46+
});
47+
/* @license-end */
48+
</script>
49+
<div id="main-nav"></div>
50+
<!-- window showing the filter options -->
51+
<div id="MSearchSelectWindow"
52+
onmouseover="return searchBox.OnSearchSelectShow()"
53+
onmouseout="return searchBox.OnSearchSelectHide()"
54+
onkeydown="return searchBox.OnSearchSelectKey(event)">
55+
</div>
56+
57+
<!-- iframe showing the search results (closed by default) -->
58+
<div id="MSearchResultsWindow">
59+
<div id="MSearchResults">
60+
<div class="SRPage">
61+
<div id="SRIndex">
62+
<div id="SRResults"></div>
63+
<div class="SRStatus" id="Loading">Loading...</div>
64+
<div class="SRStatus" id="Searching">Searching...</div>
65+
<div class="SRStatus" id="NoMatches">No Matches</div>
66+
</div>
67+
</div>
68+
</div>
69+
</div>
70+
71+
<div id="nav-path" class="navpath">
72+
<ul>
73+
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
74+
</div>
75+
</div><!-- top -->
76+
<div class="header">
77+
<div class="headertitle"><div class="title">PCF85063A.h</div></div>
78+
</div><!--header-->
79+
<div class="contents">
80+
<div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include &lt;RTC_NXP.h&gt;</span></div>
81+
</div><!-- fragment --></div><!-- contents -->
82+
<!-- start footer part -->
83+
<hr class="footer"/><address class="footer"><small>
84+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.6
85+
</small></address>
86+
</body>
87+
</html>

0 commit comments

Comments
 (0)