Location:
Search - 2413
Search list
Description: 写了2413的背光驱动,供大家参考,希望能与大家交流,共同进步-wrote 2413's backlight driver, for your reference, and we hope to exchange and common progress
Platform: |
Size: 6836 |
Author: 杨勇刚 |
Hits:
Description: 三星2413芯片的测试代码,对进行驱动开发很有帮助.
Platform: |
Size: 3153719 |
Author: 李华磊 |
Hits:
Description: uClinux下的DS1284设备驱动程序开发-uClinux the DS1284 Device Driver Development
Platform: |
Size: 5407 |
Author: 朱胜 |
Hits:
Description: uClinux下的DS1284设备驱动程序开发-uClinux the DS1284 Device Driver Development
Platform: |
Size: 5120 |
Author: 朱胜 |
Hits:
Description: 三星新出的一款ARM926EJ-S内核芯片,时钟高达266MHZ,带有图像(CAMERA)接口,LCD接口,USB,SD,UART,SPI,IIS,IIC等接口,资源丰富,是s3c2440和S3C24A0的低成本代替产品。-Samsung's first and ARM926EJ-S processor chip, the clock up to 266MHZ. with images (CAMERA) interface, LCD interface, USB, SD, UART, SPI, IIS, IIC interfaces, rich resources, and S3C24A0 s3c2440 is a low-cost substitute products.
Platform: |
Size: 1809408 |
Author: 歪歪 |
Hits:
Description: 写了2413的背光驱动,供大家参考,希望能与大家交流,共同进步-wrote 2413's backlight driver, for your reference, and we hope to exchange and common progress
Platform: |
Size: 6144 |
Author: 杨勇刚 |
Hits:
Description: 一个基于三星S3C2413的全部驱动程序,里面有NAND驱动,SPI驱动,LCD驱动,时钟驱动,IIC驱动,一个不可多的好程序-a Samsung S3C2413 on all drivers, with a NAND-driven, SPI drive, LCD driver, the clock-driven, IIC-driven, not a good number of procedures
Platform: |
Size: 2074624 |
Author: kevin.liu |
Hits:
Description: 三星ARM9芯片S3C2413的咯ader源代码,不错的-ARM9 Samsung S3C2413 chip of pyronaridine Ader source code, a good
Platform: |
Size: 198656 |
Author: pzy |
Hits:
Description: 三星ARM9 S3C2412的PDF资料。-Samsung ARM9 S3C2412 the PDF data.
Platform: |
Size: 2070528 |
Author: pzy |
Hits:
Description: 三星2413芯片的测试代码,对进行驱动开发很有帮助.-Samsung 2413 chip testing code to drive the development of helpful.
Platform: |
Size: 7079936 |
Author: 李华磊 |
Hits:
Description: 支持三星原产的S3C2413开发板,编译环境为WCE5.0-Support the origin of the Samsung S3C2413 development board, the compiler environment WCE5.0
Platform: |
Size: 5814272 |
Author: 陈涛 |
Hits:
Description: 三星ARM9系列CPU S3C2413的USB下载测试程序的源代码-CPU S3C2413 Samsung ARM9 family of USB test procedure to download the source code
Platform: |
Size: 222208 |
Author: Michael |
Hits:
Description: samsung 2410 demo源代码-samsung 2410 demo source code
Platform: |
Size: 1999872 |
Author: magod |
Hits:
Description: 2413的IIC,SPI,FLASH,LCD 驱动源码-2413 the IIC, SPI, FLASH, LCD driver source
Platform: |
Size: 1491968 |
Author: chenbibi |
Hits:
Description: 广义的人脸识别实际包括构建人脸识别系统的一系列相关技术,包括人脸图像采集、人脸定位、人脸识别预处理、身份确认以及身份查找等;而狭义的人脸识别特指通过人脸进行身份-Construction of broad recognition, including face recognition system actually a series of related technologies, including facial image capture, face detection, face recognition preprocessing, identification and identity search, etc. and especially by a narrow face recognition Face identity
Platform: |
Size: 1446912 |
Author: xt |
Hits:
Description: Background
This a classical problem. N Queens are placed on a N x N checkerboard. There should not be more than one "Queen" on the same horizontal line, nor on the same vertical, nor on the same diagonal line.
Given the size of a checkerboard N, write a program to generate all possible solutions of placing N "Queens" on the board in ascending order.
eg. Given the size of the checkerboard is 4, the possible solutions of placing "Queens" is as follow:
2413
3142
The first solution of the example above is:
Place a "Queen" at 1st column 2nd row
Place a "Queen" at 2nd column 4th row
Place a "Queen" at 3rd column 1st row
Place a "Queen" at 4th column 3rd row
Since 2413 < 3142, the ouput is sorted in ascending order.
Input
Input contains an integer N (1 <= N <= 10), the size of the checkerboard.
Output
Output all possible solutions of the given checkerboard size in ascending order. If there is no solution for the given size of the checkerboard, output NIL.-Background
This is a classical problem. N Queens are placed on a N x N checkerboard. There should not be more than one "Queen" on the same horizontal line, nor on the same vertical, nor on the same diagonal line.
Given the size of a checkerboard N, write a program to generate all possible solutions of placing N "Queens" on the board in ascending order.
eg. Given the size of the checkerboard is 4, the possible solutions of placing "Queens" is as follow:
2413
3142
The first solution of the example above is:
Place a "Queen" at 1st column 2nd row
Place a "Queen" at 2nd column 4th row
Place a "Queen" at 3rd column 1st row
Place a "Queen" at 4th column 3rd row
Since 2413 < 3142, the ouput is sorted in ascending order.
Input
Input contains an integer N (1 <= N <= 10), the size of the checkerboard.
Output
Output all possible solutions of the given checkerboard size in ascending order. If there is no solution for the given size of the checkerboard, output NIL.
Platform: |
Size: 1024 |
Author: norman |
Hits:
Description: 在N*N的棋盘上放置N个皇后(n<=10)而彼此不受攻击(即在棋盘的任一行,任一列和任一对角线上不能放置2个皇后),编程求解所有的摆放方法。
【输入格式】
输入:n
【输出格式】
每行输出一种方案,每种方案顺序输出皇后所在的列号,各个数之间有空格隔开。若无方案,则输出no solute!
【输入样例】Queen.in
4
【输出样例】Queen.out
2 4 1 3
3 1 4 2
-Placed on the board of N* N N queens (n <= 10) and another against attack (ie any row of the board, and any one of any of a diagonal line can not be placed on the two queens), programmed to solve all display methods.
[Input Format
Input: n
[Output format]
Each line of output a scheme where each program sequentially output Queen column number, there are separated by a space between each number. Without the program, the output no solute!
[Sample input] Queen.in
4
Sample [output] Queen.out
2413
3142
Platform: |
Size: 1024 |
Author: qzh |
Hits: