Skip to content

Commit d95cbf1

Browse files
committed
feat: add new logo
1 parent a2fc3aa commit d95cbf1

File tree

80 files changed

+205
-41
lines changed

Some content is hidden

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

80 files changed

+205
-41
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ PROJECT_BRIEF = "AT24CXX full function driver"
5151
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
5252
# the logo to the output directory.
5353

54-
PROJECT_LOGO =
54+
PROJECT_LOGO = E:/Github/at24cxx/doc/image/Doxygen.png
5555

5656
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
5757
# into which the generated documentation will be written. If a relative path is

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (C) LibDriver 2015-2021
3+
Copyright (c) 2015 - present LibDriver
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## LibDriver AT24CXX
66

7-
[English](/README.md) | [ 简体中文](/README_CN.md)
7+
[English](/README.md) | [ 简体中文](/README_zh-Hans.md) | [繁體中文](/README_zh-Hant.md)
88

99
AT24CXX is the EEPROM of IIC bus launched by Microchip. It supports 1.7v-5.5v power supply range, IIC standard mode (100kHz), fast mode (400kHz) and high speed mode (1MHz).
1010

@@ -104,7 +104,7 @@ Please sent an e-mail to lishifenging@outlook.com
104104

105105
### License
106106

107-
Copyright (C) LibDriver 2015-2021 All rights reserved
107+
Copyright (c) 2015 - present LibDriver All rights reserved
108108

109109

110110

README_CN.md renamed to README_zh-Hans.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## LibDriver AT24CXX
66

7-
[English](/README.md) | [ 简体中文](/README_CH.md)
7+
[English](/README.md) | [ 简体中文](/README_zh-Hans.md) | [繁體中文](/README_zh-Hant.md)
88

99
AT24CXX是美国微芯半导体推出的IIC总线的EEPROM。它支持1.7V-5.5V的供电范围、支持IIC标准模式(100KHz)、快速模式(400KHz)和高速模式(1MHz)。
1010

@@ -104,7 +104,7 @@ return 0;
104104

105105
### 版权
106106

107-
版权(C) LibDriver 2015-2021 版权所有
107+
版权 (c) 2015 - 现在 LibDriver 版权所有
108108

109109
MIT 许可证(MIT)
110110

README_zh-Hant.md

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<div align=center>
2+
<img src="/doc/image/logo.png"/>
3+
</div>
4+
5+
## LibDriver AT24CXX
6+
7+
[English](/README.md) | [ 简体中文](/README_CH.md)
8+
9+
AT24CXX是美國微芯半導體推出的IIC總線的EEPROM。它支持1.7V-5.5V的供電範圍、支持IIC標準模式(100KHz)、快速模式(400KHz)和高速模式(1MHz)。
10+
11+
LibDriver AT24CXX是LibDriver推出的AT24CXX的全功能驅動,該驅動提供EEPROM寫入和讀取功能。
12+
13+
### 目錄
14+
15+
- [說明](#說明)
16+
- [安裝](#安裝)
17+
- [使用](#使用)
18+
- [example basic](#example-basic)
19+
- [文檔](#文檔)
20+
- [貢獻](#貢獻)
21+
- [版權](#版權)
22+
- [聯繫我們](#聯繫我們)
23+
24+
### 說明
25+
26+
/src目錄包含了LibDriver AT24CXX的源文件。
27+
28+
/interface目錄包含了LibDriver AT24CXX與平台無關的IIC總線模板。
29+
30+
/test目錄包含了LibDriver AT24CXX驅動測試程序,該程序可以簡單的測試芯片必要功能。
31+
32+
/example目錄包含了LibDriver AT24CXX編程範例。
33+
34+
/doc目錄包含了LibDriver AT24CXX離線文檔。
35+
36+
/datasheet目錄包含了AT24CXX數據手冊。
37+
38+
/project目錄包含了常用Linux與單片機開發板的工程樣例。所有工程均採用shell腳本作為調試方法,詳細內容可參考每個工程裡面的README.md。
39+
40+
### 安裝
41+
42+
參考/interface目錄下與平台無關的IIC總線模板,完成指定平台的IIC總線驅動。
43+
44+
將/src目錄,/interface目錄和/example目錄加入工程。
45+
46+
### 使用
47+
48+
#### example basic
49+
50+
```C
51+
uint8_t res;
52+
uint8_t data;
53+
54+
res = at24cxx_basic_init(AT24C01, AT24CXX_ADDRESS_A000);
55+
if (res)
56+
{
57+
return 1;
58+
}
59+
60+
...
61+
62+
res = at24cxx_basic_read(0x00, (uint8_t *)&data, 1);
63+
if (res)
64+
{
65+
at24cxx_basic_deinit();
66+
67+
return 1;
68+
}
69+
else
70+
{
71+
at24cxx_interface_debug_print("at24cxx: 0x%02X.\n", data);
72+
}
73+
74+
...
75+
76+
res = at24cxx_basic_write(0x00, (uint8_t *)&data, 1);
77+
if (res)
78+
{
79+
at24cxx_basic_deinit();
80+
81+
return 1;
82+
}
83+
else
84+
{
85+
at24cxx_interface_debug_print("at24cxx: 0x%02X.\n", data);
86+
}
87+
88+
...
89+
90+
at24cxx_basic_deinit();
91+
92+
return 0;
93+
```
94+
95+
### 文檔
96+
97+
在線文檔: https://www.libdriver.com/docs/at24cxx/index.html
98+
99+
離線文檔: /doc/html/index.html
100+
101+
### 貢獻
102+
103+
請聯繫lishifenging@outlook.com
104+
105+
### 版權
106+
107+
版權(C) LibDriver 2015-2021 版權所有
108+
109+
MIT 許可證(MIT)
110+
111+
特此免費授予任何獲得本軟件副本和相關文檔文件(下稱“軟件”)的人不受限制地處置該軟件的權利,包括不受限制地使用、複製、修改、合併、發布、分發、轉授許可和/或出售該軟件副本,以及再授權被配發了本軟件的人如上的權利,須在下列條件下:
112+
113+
上述版權聲明和本許可聲明應包含在該軟件的所有副本或實質成分中。
114+
115+
本軟件是“如此”提供的,沒有任何形式的明示或暗示的保證,包括但不限於對適銷性、特定用途的適用性和不侵權的保證。在任何情況下,作者或版權持有人都不對任何索賠、損害或其他責任負責,無論這些追責來自合同、侵權或其它行為中,還是產生於、源於或有關於本軟件以及本軟件的使用或其它處置。
116+
117+
### 聯繫我們
118+
119+
請聯繫lishifenging@outlook.com

doc/html/Doxygen.png

5.2 KB
Loading

doc/html/annotated.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<table cellspacing="0" cellpadding="0">
2525
<tbody>
2626
<tr style="height: 56px;">
27+
<td id="projectlogo"><img alt="Logo" src="Doxygen.png"/></td>
2728
<td id="projectalign" style="padding-left: 0.5em;">
2829
<div id="projectname">LibDriver AT24CXX
2930
&#160;<span id="projectnumber">2.0.0</span>

doc/html/classes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<table cellspacing="0" cellpadding="0">
2525
<tbody>
2626
<tr style="height: 56px;">
27+
<td id="projectlogo"><img alt="Logo" src="Doxygen.png"/></td>
2728
<td id="projectalign" style="padding-left: 0.5em;">
2829
<div id="projectname">LibDriver AT24CXX
2930
&#160;<span id="projectnumber">2.0.0</span>

doc/html/dir_11ec664f88f5f079ad4de1adb8458c37.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<table cellspacing="0" cellpadding="0">
2525
<tbody>
2626
<tr style="height: 56px;">
27+
<td id="projectlogo"><img alt="Logo" src="Doxygen.png"/></td>
2728
<td id="projectalign" style="padding-left: 0.5em;">
2829
<div id="projectname">LibDriver AT24CXX
2930
&#160;<span id="projectnumber">2.0.0</span>

doc/html/dir_13e138d54eb8818da29c3992edef070a.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<table cellspacing="0" cellpadding="0">
2525
<tbody>
2626
<tr style="height: 56px;">
27+
<td id="projectlogo"><img alt="Logo" src="Doxygen.png"/></td>
2728
<td id="projectalign" style="padding-left: 0.5em;">
2829
<div id="projectname">LibDriver AT24CXX
2930
&#160;<span id="projectnumber">2.0.0</span>

0 commit comments

Comments
 (0)