SPI(Serial Peripheral Interface,串行外围接口)是Motorola公司提出的外围接口协议,它采用一个串行、同步、全双工的通信方式,解决了微处理器和外设之间的串行通信问题,并且可以和多个外设直接通信,具有配置灵活,结构简单等优点。根据全功能SPI总线的特点,设计的SPI接口可以最大发送和接收16位数据;在主模式和从模式下SPI模块的时钟频率最大可以达到系统时钟的1/4,并且在主模式下可以提供具有四种不同相位和极性的时钟供从模块选择;可以同时进行发送和接收操作,拥有中断标志位和溢出中断标志位。
上传时间: 2013-11-11
上传用户:himbly
一款辅助背单词的小软件,单词范围包括《大学英语精读通》全6册共60个单元,其中1-4册针对CET-4,5-6册针对CET-6,大家可以各取所需
上传时间: 2015-01-28
上传用户:zgu489
这是使用Java编写一个模仿星际全屏界面的我的Java课程设计。可以选中画面上的单元,并命令其像某点运动(跟星际的操作一样,左键选中,右键确定目的地)。机器的如不支持程序中的分辨率,文字显示可能会有问题。还有就是JDK要1.4以上。
上传时间: 2013-12-17
上传用户:vodssv
本书的目标就是,尽快使得用户能够将J2EE 1.4应用部署并运行在JBoss 4.0.x上。
标签:
上传时间: 2015-04-19
上传用户:kikye
分而治之方法还可以用于实现另一种完全不同的排序方法,这种排序法称为快速排序(quick sort)。在这种方法中, n 个元素被分成三段(组):左段l e f t,右段r i g h t和中段m i d d l e。中段仅包含一个元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以独立排序,并且不必对l e f t和r i g h t的排序结果进行合并。m i d d l e中的元素被称为支点( p i v o t )。图1 4 - 9中给出了快速排序的伪代码
上传时间: 2015-04-27
上传用户:kristycreasy
这个无限位计算器,N!及N的平方了。本来是打算用堆栈去实现的,突然发现了BigDecimal这个好东东~~于是乎~~堆栈在偶的计算器里退休了。。。 这个是在JDK 5.0 Update 3下用 NetBeans 4.1写的,我试过了两个1.4.2版本的,总说找不到MAIN()方法,对NetBeans打的包。。偶有置疑。。。所以拆开来。。。*.calss + 一个批处理+*.java打成了个压缩包传了上来~~
标签: 计算器
上传时间: 2015-05-03
上传用户:rishian
我好不容易上网找到的java API中文帮助文档,有最新JDK5.0的中文帮助文档和1.4.2的中文帮助文档
上传时间: 2014-11-05
上传用户:15071087253
模拟约索夫问题: 有N个人围成一圈从第一个人报数,凡报到M的倍数的人退出圈外,求最后剩下得人的编号。 yuesuofuDemo是一个jBuilder2005的项目,JDK是V1.4
标签: 模拟
上传时间: 2013-12-20
上传用户:zyt
用JAVA写的shell程序,编译后即可使用,需要 jdk 1.4 以上
上传时间: 2015-05-15
上传用户:xc216
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda