亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

sd卡<b>FAtFs</b>文件系統(tǒng)操作以及帶操作系統(tǒng)的

  • MCS51單片機(jī)讀寫SD卡,FAT32文件系統(tǒng)

    MCS51單片機(jī)讀寫SD卡,FAT32文件系統(tǒng)

    標(biāo)簽: MCS FAT 51 32

    上傳時(shí)間: 2013-12-23

    上傳用戶:xlcky

  • lpc2138讀寫SD卡的fat文件系統(tǒng)

    lpc2138讀寫SD卡的fat文件系統(tǒng),spi接口

    標(biāo)簽: 2138 lpc fat SD卡

    上傳時(shí)間: 2013-12-19

    上傳用戶:ukuk

  • SD卡系統(tǒng)純?cè)创a模板,提供建立SD文件系統(tǒng)的程序編譯系統(tǒng)模式

    SD卡系統(tǒng)純?cè)创a模板,提供建立SD文件系統(tǒng)的程序編譯系統(tǒng)模式

    標(biāo)簽: SD卡 源代碼 模板

    上傳時(shí)間: 2017-07-31

    上傳用戶:cxl274287265

  • 基于SD卡的FAT文件系統(tǒng)

    基于SD卡的FAT文件系統(tǒng),在gcc上實(shí)現(xiàn)了FAT16文件系統(tǒng)的基本功能

    標(biāo)簽: FAT SD卡 文件系統(tǒng)

    上傳時(shí)間: 2014-12-20

    上傳用戶:z754970244

  • SPI接口控制 SD卡 并實(shí)現(xiàn)FAT16文件系統(tǒng)spi_contrl_sdcard_fat16.rar

    SPI接口控制 SD卡 并實(shí)現(xiàn)FAT16文件系統(tǒng)spi_contrl_sdcard_fat16.rar

    標(biāo)簽: spi_contrl_sdcard_fat 16 SPI FAT

    上傳時(shí)間: 2017-08-08

    上傳用戶:cuibaigao

  • 我改寫的在TFT上顯示SD卡中BMP文件的程序

    我改寫的在TFT上顯示SD卡中BMP文件的程序,使用了一個(gè)日本人寫的FAT FS

    標(biāo)簽: TFT BMP SD卡 程序

    上傳時(shí)間: 2013-12-09

    上傳用戶:manlian

  • 基于STM32微處理器的SD卡(TF卡)文件系統(tǒng)讀寫. 103ZC,ZD等有SDIO

    基于STM32微處理器的SD卡(TF卡)文件系統(tǒng)讀寫. 103ZC,ZD等有SDIO,檢查中。

    標(biāo)簽: SDIO STM 103 32

    上傳時(shí)間: 2017-09-21

    上傳用戶:lacsx

  • SD卡操作

    sd卡fatfs文件系統(tǒng)操作以及帶操作系統(tǒng)的

    標(biāo)簽: sd卡fatfs文件系統(tǒng)操作以及帶操作系統(tǒng)的

    上傳時(shí)間: 2016-04-07

    上傳用戶:teradyne

  • FPGA讀寫SD卡讀取BMP圖片通過LCD顯示例程實(shí)驗(yàn) Verilog邏輯源碼Quartus工程文件

    FPGA讀寫SD卡讀取BMP圖片通過LCD顯示例程實(shí)驗(yàn) Verilog邏輯源碼Quartus工程文件+文檔說明,FPGA型號(hào)Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。1 實(shí)驗(yàn)簡介在前面的實(shí)驗(yàn)中我們練習(xí)了 SD 卡讀寫,VGA 視頻顯示等例程,本實(shí)驗(yàn)將 SD 卡里的 BMP 圖片讀出,寫入到外部存儲(chǔ)器,再通過 VGA、LCD 等顯示。本實(shí)驗(yàn)如果通過液晶屏顯示,需要有液晶屏模塊。2 實(shí)驗(yàn)原理在前面的實(shí)驗(yàn)中我們?cè)?VGA、LCD 上顯示的是彩條,是 FPGA 內(nèi)部產(chǎn)生的數(shù)據(jù),本實(shí)驗(yàn)將彩條替換為 SD 內(nèi)的 BMP 圖片數(shù)據(jù),但是 SD 卡讀取速度遠(yuǎn)遠(yuǎn)不能滿足顯示速度的要求,只能先寫入外部高速 RAM,再讀出后給視頻時(shí)序模塊顯示module top( input                       clk, input                       rst_n, input                       key1, output [5:0]                seg_sel, output [7:0]                seg_data, output                      vga_out_hs,        //vga horizontal synchronization output                      vga_out_vs,        //vga vertical synchronization output[4:0]                 vga_out_r,         //vga red output[5:0]                 vga_out_g,         //vga green output[4:0]                 vga_out_b,         //vga blue output                      sd_ncs,            //SD card chip select (SPI mode) output                      sd_dclk,           //SD card clock output                      sd_mosi,           //SD card controller data output input                       sd_miso,           //SD card controller data input output                      sdram_clk,         //sdram clock output                      sdram_cke,         //sdram clock enable output                      sdram_cs_n,        //sdram chip select output                      sdram_we_n,        //sdram write enable output                      sdram_cas_n,       //sdram column address strobe output                      sdram_ras_n,       //sdram row address strobe output[1:0]                 sdram_dqm,         //sdram data enable output[1:0]                 sdram_ba,          //sdram bank address output[12:0]                sdram_addr,        //sdram address inout[15:0]                 sdram_dq           //sdram data);parameter MEM_DATA_BITS         = 16  ;            //external memory user interface data widthparameter ADDR_BITS             = 24  

    標(biāo)簽: fpga

    上傳時(shí)間: 2021-10-27

    上傳用戶:

  • 用于普中開發(fā)板STM32F103ZET6 最小系統(tǒng)板SD卡根目錄文件

    該文件來源于普中科技的STM32F103ZET6最小系統(tǒng)板的SD卡部分的使用說明文件

    標(biāo)簽: 普中 stm32f103zet6

    上傳時(shí)間: 2021-11-21

    上傳用戶:

主站蜘蛛池模板: 云安县| 枞阳县| 桐庐县| 宾川县| 石河子市| 玉门市| 天祝| 远安县| 肥乡县| 淳安县| 荥阳市| 华容县| 乡城县| 大冶市| 淅川县| 铜陵市| 酉阳| 浙江省| 铜川市| 呈贡县| 霍林郭勒市| 兰州市| 分宜县| 涞水县| 泗水县| 太仆寺旗| 玉门市| 镶黄旗| 鄱阳县| 宝鸡市| 青神县| 石泉县| 桃园县| 正蓝旗| 泾阳县| 依兰县| 原平市| 洪雅县| 堆龙德庆县| 沁阳市| 永康市|