CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 嵌入式/单片机编程 搜索资源 - 读文本

搜索资源列表

  1. L240128

    0下载:
  2. 液晶屏分为8行15列汉字源代码程序。 本例程未使用6963的文本模式,使用程序填入字模也足够快。程序以Youth所提供 的51例程移植过来,同时对有些地方做了简化处理,增加了画线画圆的例程,好在 6963的画点有专用指令,所以不用读屏就可以直接画点。-LCD screen is divided into eight 15 Chinese firms source code procedures. The routines of unused 6963 text mode, the
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:6.16kb
    • 提供者:wfl
  1. fileaa

    0下载:
  2. 作为单片机读写u盘的参考资料。 在u盘上可以建立一个文本文件。 仅做参考-as SCM u disk read and write information. In the period of the plate can create a text file. For reference only
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:89.46kb
    • 提供者:天禄
  1. Readhextxt

    0下载:
  2. 一个读单片机程序编译之后所存放的文本文件并且能计算其每行的长度的程序,多指教-a time after compiling SCM procedures stored in text files and can calculate the length of each procedure, more improve! !
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:32.83kb
    • 提供者:yangzy
  1. tts.实现文本转语音功能

    0下载:
  2. 实现文本转语音功能,把存入的文字读出来,基于凌阳spce601a单片机,Text-to-Speech function to read out the text into, based on single-chip Sunplus spce601a
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2017-03-27
    • 文件大小:729.81kb
    • 提供者:梧桐
  1. USB

    0下载:
  2. 单片机C8051F020通过CH375对U盘内文件进行读写。通过TFT液晶屏可以浏览U盘的文件系统,可以查看其中的位图和文本文件。-C8051F020 microcontroller through CH375 U disk file for read and write. TFT LCD screen can browse through the U-disk file system, you can view one of the bitmap and text files.
  3. 所属分类:SCM

    • 发布日期:2017-03-29
    • 文件大小:151.89kb
    • 提供者:zhlziv
  1. RK2608_4G_DEMO.rar

    0下载:
  2. 瑞芯微RK2608固件源代码,该版本,添加文本、图片自动浏览功能,添加BMP图片浏览功能,添加新的文件系统,加快文件查找速度,提高SD卡的读写速度,Rockchip Micro RK2608 firmware source code, the version, add text, pictures, automatically browsing, add BMP picture browsing, add a new file system, speed up file search speed
  3. 所属分类:SCM

    • 发布日期:2017-06-09
    • 文件大小:15.19mb
    • 提供者:陈俊江
  1. DP-51_Program_for_Experiment

    0下载:
  2. 周立功实验板DP-51+的实验程序,包括IC卡读写、EEPROM、IIC虚拟、串口操作等十多个典型程序。其编程风格、文本规范都是值得学习的!-Week Ligong board DP-51+ The experimental procedures, including the IC card reader, EEPROM, IIC virtual, serial operation of more than 10 typical procedures. Its programming style
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:2.08mb
    • 提供者:肖裕伟
  1. SD-CARD-P-FAT32

    0下载:
  2. 配合SD卡读写驱动实现对SD卡中的文本文件的读取,并将读到的数据通过串口输出到串口终端上,这里使用的是超级终端-SD card reader with SD card drive to achieve a text file to read, and read the data through the serial port output to the serial port terminal, where using HyperTerminal
  3. 所属分类:SCM

    • 发布日期:2017-03-22
    • 文件大小:77.92kb
    • 提供者:刘洪亮
  1. RS232

    0下载:
  2. 一种汇编与c混编的id卡读写器代码,选择不同的方式能输出不同的文本格式-A compilation of the id and c mixed code card reader, choose different ways to output text in different formats
  3. 所属分类:SCM

    • 发布日期:2017-03-27
    • 文件大小:38.82kb
    • 提供者:shenqiang
  1. writeandread

    0下载:
  2. 利用类可建立文本文件 可对文本文件进行写操作 可对文件进行读操作 可对文件进行内容删除操作. 源码已大2440上通过.-Can create text files using classes can write a text file can read the file to the contents of the file delete operation.
  3. 所属分类:Windows CE

    • 发布日期:2017-04-08
    • 文件大小:3.64kb
    • 提供者:军方
  1. cqjw_add(2010-4-08)

    0下载:
  2. 实现文本文件的读入,并对读入的数据进行累加。-function:implement the adder
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-26
    • 文件大小:429.56kb
    • 提供者:yanxiutao
  1. os

    0下载:
  2. 1.编写一个文件复制的C语言程序: 分别使用文件的系统调用read(fd, buf, nbytes), write(fd, buf, nbytes)和文件的库函数fread(buf, size, nitems, fp), fwrite(buf, size, nitems, fp),编写一个文件的复制程序。 当上述函数中nbytes, size和nitems都取值为1时(即一次读写一个字节),比较这两种程序的执行效率。当nbytes取1024字节,size取1024字节,且nitems取1
  3. 所属分类:SCM

    • 发布日期:2017-03-29
    • 文件大小:35.17kb
    • 提供者:yiyuzhiming
  1. CH376

    1下载:
  2. 本程序只是简单测试CH376主机功能连接U盘操作DEMO。将本文件夹内的CH376.txt文件拷贝到U盘根目录内。然后烧写本测试程序,在开发板USB-HOST口插入U盘。连好串口到PC,打开PC串口调试软件,按复位键,将在串口调试软件内看到读到U盘内的文本内容,同时接有LCD的话,在LCD上也有显示。 -This procedure is simple test CH376 host function connection U disk operating DEMO.Will this fo
  3. 所属分类:SCM

    • 发布日期:2016-06-15
    • 文件大小:4.68mb
    • 提供者:魏晨
  1. stm32-mp3

    0下载:
  2. 基于stm32的vs1003的mp3的开发,同时还有txt文本的读,和图片的 显示源码-Based on the stm32 vs1003 mp3 s development, at the same time and TXT text reading, and the picture shows the source code
  3. 所属分类:SCM

    • 发布日期:2017-05-23
    • 文件大小:6.94mb
    • 提供者:yrd
  1. usbPsdioPsdPfatfs(ok)2Pfile_creat

    0下载:
  2. 基于stm32Vet6的usb读写sd,sd的接口是利用sdio模式。产品采集的数据以txt文本的形式存储于sd卡,用户可以首次定义文件名后,后续的文件名自动更新区分之前的。-Based stm32Vet6 USB read and write SD sd interface use SDIO mode. Product data collected by to txt text in the form of storage on the sd card, the user can define
  3. 所属分类:SCM

    • 发布日期:2017-11-20
    • 文件大小:4.66mb
    • 提供者:李静
  1. STM3--SD-Fatfs-ucgui-ucos

    0下载:
  2. 基于奋斗STM32单片机+ucos+ucgui3.90 的SD读卡程序-建立了一个对话框,对话框里的列表框作为文件选择区,文本框作为文件内容显示区,磁盘介质采用了TF卡,在上面移植了FATFS0.09a,支持中文文件名及长文件名,由于是受内存的限制,只是做了能读取文件的头512个字节内容显示出来-Struggle based STM32 MCU+ ucos+ ucgui3.90 the SD Card Reader program- set up a dialog box as a file i
  3. 所属分类:SCM

    • 发布日期:2017-05-31
    • 文件大小:12.82mb
    • 提供者:何明强
  1. fft-ip-core

    0下载:
  2. 通过调用ISE中的fft IPcore实现了fft计算,输入数据通过textio从文本文件读入,处理后的数据再读入文本中。由于数据精度问题,与MATLAB计算的结果存在一定的误差-By calling the ISE of FFT IPcore implements the FFT computation, the input data through textio read a text file, after processing the data to read the text aga
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-05-21
    • 文件大小:5.87mb
    • 提供者:
  1. SD_test

    0下载:
  2. 使用lpc1768 实现对sd卡的读和写操作,并以txt文本的形式保存-use lpx1768 to sdcard read and write while saving file txt
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-30
    • 文件大小:468.6kb
    • 提供者:slt
  1. 基于stm32f103rc的USB_HID模拟键盘并发送卡号成功

    1下载:
  2. 1、基于stm23f103c8t6的开发板开发,外接rc522读卡板。 2,实现让windows系统把设备认成hid键盘,当刷M1卡时,把4字节的卡号以键盘输入的形式上送到电脑。 3,已在xp,win7系统上测试。把鼠标放在文本输入框中,刷卡,卡号即可显示在文本框中,并回车换行。(1, based on the stm23f103c8t6 development board development, external rc522 read card board. 2, to achieve
  3. 所属分类:微处理器开发

    • 发布日期:2017-12-19
    • 文件大小:2.53mb
    • 提供者:jingaaa
搜珍网 www.dssz.com