Skip to content

Latest commit

 

History

History
175 lines (115 loc) · 4.66 KB

README_zh-Hant.md

File metadata and controls

175 lines (115 loc) · 4.66 KB

English | 简体中文 | 繁體中文

LibDriver W25QXX

API License

W25QXX串行Flash存儲器面向受限於空間、引腳和功耗的系統,提供了一種存儲解決方案。 25Q系列存儲器相比於普通的串行Flash器件提供更好的靈活性和性能表現。它們是代碼存儲、代碼直接通過雙線/四線SPI運行、存儲音頻、文本和數據的理想選擇。該器件可在2.7V到3.6V的供電電壓下工作,工作時電流消耗最低4mA,在掉電模式下消耗僅1uA。所有的器件都提供節省空間的封裝。

LibDriver W25QXX是LibDriver推出的W25QXX全功能驅動,該驅動提供Flash讀取,Flash寫入等功能。

目錄

說明

/src目錄包含了LibDriver W25QXX的源文件。

/interface目錄包含了LibDriver W25QXX與平台無關的SPI或QSPI總線模板。

/test目錄包含了LibDriver W25QXX驅動測試程序,該程序可以簡單的測試芯片必要功能。

/example目錄包含了LibDriver W25QXX編程範例。

/doc目錄包含了LibDriver W25QXX離線文檔。

/datasheet目錄包含了W25QXX數據手冊。

/project目錄包含了常用Linux與單片機開發板的工程樣例。所有工程均採用shell腳本作為調試方法,詳細內容可參考每個工程裡面的README.md。

安裝

參考/interface目錄下與平台無關的SPI和QSPI總線模板,完成指定平台的SPI或QSPI總線驅動。

將/src目錄,/interface目錄和/example目錄加入工程。

使用

example basic

volatile uint8_t res;
volatile uint8_t manufacturer;
volatile uint8_t device_id;
volatile uint8_t data[8];

res = w25qxx_basic_init(W25Q128, W25QXX_INTERFACE_SPI, W25QXX_BOOL_TRUE);
if (res)
{
    return 1;
}

...
    
res = w25qxx_basic_get_id((uint8_t *)&manufacturer, (uint8_t *)&device_id);
if (res)
{
    w25qxx_basic_deinit();
    
    return 1;
}
w25qxx_interface_debug_print("w25qxx: manufacturer is 0x%02X device id is 0x%02X.\n", manufacturer, device_id);
    
...    
    
res = w25qxx_basic_write(0x00000000, (uint8_t *)data, 8);
if (res)
{
    w25qxx_basic_deinit();
    
    return 1;
}

...

res = w25qxx_basic_read(0x00000000, (uint8_t *)data, 8);
if (res)
{
    w25qxx_basic_deinit();
    
    return 1;
}

...
    
w25qxx_basic_deinit();

example advance

volatile uint8_t res;
volatile uint8_t manufacturer;
volatile uint8_t device_id;
volatile uint8_t data[8];

res = w25qxx_advance_init(W25Q128, W25QXX_INTERFACE_SPI, W25QXX_BOOL_TRUE);
if (res)
{
    return 1;
}

...
    
res = w25qxx_advance_get_id((uint8_t *)&manufacturer, (uint8_t *)&device_id);
if (res)
{
    w25qxx_advance_deinit();
    
    return 1;
}
w25qxx_interface_debug_print("w25qxx: manufacturer is 0x%02X device id is 0x%02X.\n", manufacturer, device_id);
    
...    
    
res = w25qxx_advance_write(0x00000000, (uint8_t *)data, 8);
if (res)
{
    w25qxx_advance_deinit();
    
    return 1;
}

...

res = w25qxx_advance_read(0x00000000, (uint8_t *)data, 8);
if (res)
{
    w25qxx_advance_deinit();
    
    return 1;
}

...
    
w25qxx_advance_deinit();

文檔

在線文檔: https://www.libdriver.com/docs/w25qxx/index.html

離線文檔: /doc/html/index.html

貢獻

請聯繫[email protected]

版權

版權 (c) 2015 - 現在 LibDriver 版權所有

MIT 許可證(MIT)

特此免費授予任何獲得本軟件副本和相關文檔文件(下稱“軟件”)的人不受限制地處置該軟件的權利,包括不受限制地使用、複製、修改、合併、發布、分發、轉授許可和/或出售該軟件副本,以及再授權被配發了本軟件的人如上的權利,須在下列條件下:

上述版權聲明和本許可聲明應包含在該軟件的所有副本或實質成分中。

本軟件是“如此”提供的,沒有任何形式的明示或暗示的保證,包括但不限於對適銷性、特定用途的適用性和不侵權的保證。在任何情況下,作者或版權持有人都不對任何索賠、損害或其他責任負責,無論這些追責來自合同、侵權或其它行為中,還是產生於、源於或有關於本軟件以及本軟件的使用或其它處置。

聯繫我們

請聯繫[email protected]