搜索资源列表
gpio
- gpio驱动 leddrv.c为驱动源程序 writeled.c为应用程序 writeled.c 编译方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c leddrv.c 编译方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目录/linux-2.4.x/include-Wall -Wstrict-prototypes
CEWifiDriverAR6000-21374
- Atheros无线芯片AR-6000系列wince 6驱动源代码(这东西我也没用过别问我,我是搜别的wince资源搜到的) AR6K SDIO support. Requires firmware 1.1 on SD13 cards. readme: Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,20
C-graph
- 一共8个代码(在TC环境下实现,都是关于图形方面) chess 国际象棋棋盘 citywall 城墙模型 diagrams 统计图 draw 随机绘图(山水画) fivestar 五星红旗(国旗) leafs 百叶图 march 红花绿叶图 olympic 奥运五环
CEWifiDriverAR6000-21374
- Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your sy
gpio
- gpio驱动 leddrv.c为驱动源程序 writeled.c为应用程序 writeled.c 编译方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c leddrv.c 编译方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目录/linux-2.4.x/include-Wall -Wstrict-prototypes
CEWifiDriverAR6000-21374
- Atheros无线芯片AR-6000系列wince 6驱动源代码(这东西我也没用过别问我,我是搜别的wince资源搜到的) AR6K SDIO support. Requires firmware 1.1 on SD13 cards. readme: Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,20
C-graph
- 一共8个代码(在TC环境下实现,都是关于图形方面) chess 国际象棋棋盘 citywall 城墙模型 diagrams 统计图 draw 随机绘图(山水画) fivestar 五星红旗(国旗) leafs 百叶图 march 红花绿叶图 olympic 奥运五环-A total of 8 code (in the TC realize environment are on the graphic
itpp-4.0.4.tar
- 强大的C++库,综合了Matlab的功能和C的速度,适合于信号处理等领域。最新的2008年3月稳定版本,支持ldpc/turbo编码。-Powerful C++ Library, a combination of Matlab functions and C the speed, suitable for signal processing and other fields. The latest in March 2008 a sta
T-REC-H.264-200503-I!!PDF-C
- h.264官方中文翻译标准,2005年3月版本。-h.264 official Chinese translation of standard version in March 2005.
CEWifiDriverAR6000-21374
- Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your sy
SDIO_AR6K_Atheros
- AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory b
6
- 编写一个程序模拟支票输出.程序要求用户输入日期,姓名和 //* 支票的数量,然后模拟支票的形式输出如下信息,例如: //* 日期:2004年3月26日 //* 姓名:张三 RMB1920.68 //* 人民币:壹仟玖佰贰拾元陆角捌分 //* //* 注意:假设输入的金额中,最多自由两位小数. //* 输入有效性检验:输入金额的数量不能大于RMB10000.-Simulation
calendar
- 编程思路:按照以上背景知识可得判断闰年的规律:某年年份如果能被4整除但不能被100整除,或者能被400整除则是闰年。由此规则可推得计算万年历的公式: s=X-1+[X-1]/4-[X-1]/100+[x-1]/400+c 上式中:X为公元年数(如2003年);C 为从元旦起,到要算的那天总数(如2003年3月23日,C=31+28+23=82)。S/7余数是星期几。 -Programming idea: In accordanc
c
- 题目:输入某年某月某日,判断这一天是这一年的第几天? 1.程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊 情况,闰年且输入月份大于3时需考虑多加一天-Title: enter a certain period of a day, this is the one to judge the first few days this year? 1. Program Analysis:
Ccsc
- CCS C Compiler Reference Manual March 2003-CCS C Compiler Reference Manual March 2003
RSWL
- RSWL是ReliableSoft Windows Library的缩写,由Relisoft.com开发,用于Windows下程序的开发。这个库是免费的,最新版本请使用code co-op软件check-out。 此版本为2009年3月code co-op检出的代码。 看过《C++ In Action》一书的人对这个库应该很熟悉。 内含全部的文档,文档为文本文件,但是含有Code co-op软件中wiki-page的格式标记
march
- 俄罗斯方块,c++编译通过,没有BUG。轻巧。-Tetris, Compiled by Dev-C++, no bugs and portable.
mem
- 一种用于测试SRAM阵列的MARCH-C算法;使用Verilog语言描述,包括SRAM模块、MRACH-C算法还有testbench-An algorithm for MARCH-C test SRAM array using Verilog language descr iption, including SRAM module, MRACH-C algorithms as well as testbench
TestDRAM
- March-C and March-X for ram checking.
新建文件夹
- 题目:输入某年某月某日,判断这一天是这一年的第几天? 1.程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊 情况,闰年且输入月份大于3时需考虑多加一天。(Question: enter a certain year, a certain day, to judge the day is the next day of the year? 1. program analysis: