-
This directory contains the memtest 8051 firmware
for the Anchor Chips EZ-USB chip.
The purpose of this software is to test the different
memory segments in the Ez-Usb chip.
This example will output the string "good" on the 7 segment
LED if the mem test passes, or it will output the first address
where the memtest fails.
標(biāo)簽:
directory
the
contains
firmware
上傳時(shí)間:
2015-05-04
上傳用戶:zxc23456789
-
用CY7C63723設(shè)計(jì)的鼠標(biāo)固件程序
chip.c - include file that defines CY7C63723 constants
- combi.c - main source file
- combi.hex - Intel hex file for programming a CY7C63723 microcontroller
- combi.lst - output listing from c-compiler for use with the CYDB debugger
- macros.h - defines macros used in combi.c
- ps2defs.h - defines PS/2 interface constants
- usb_desc.h - defines the USB descriptors
- usbdefs.h - defines USB interface constants
標(biāo)簽:
C63723
63723
CY7
constants
上傳時(shí)間:
2014-02-15
上傳用戶:aappkkee
-
The LT® 1529/LT1529-3.3/LT1529-5 are 3A low dropout
regulators with micropower quiescent current and shutdown.
The devices are capable of supplying 3A of output
current with a dropout voltage of 0.6V. Designed for use
in battery-powered systems, the low quiescent current,
50mA operating and 16mA in shutdown, make them an
ideal choice. The quiescent current is well controlled it
does not rise in dropout as it does with many other low
dropout PNP regulators.
標(biāo)簽:
1529
micropower
regulators
quiescent
上傳時(shí)間:
2013-12-17
上傳用戶:qiao8960
-
ARM下 Implement matrix multiplication of 2 square matrices, with data read from an input file and printed both to the console and to an output file.
• Assume a file with correct data (no garbage, characters, etc.).
• you must check and provide appropriate execution for 2 extra cases, namely when the matrix size given is either “0” , or when the size is greater than the maximum handled of “5” . In these 2 cases you must implement the following behaviour:
o If size = 0, then print a message “Size = 0 is unacceptable” and continue by reading the
next size for the next 2 matrices (if not end of file).
o If size >5, then print two messages: “Size is too big - unacceptable”. Then read and
discard the next (size2 ) integers and continue by reading the next size for the next 2 matrices (if not end of file).
標(biāo)簽:
multiplication
Implement
matrices
matrix
上傳時(shí)間:
2014-08-30
上傳用戶:dsgkjgkjg
-
簡單混合衰落信道
This mfile inputs an unmodulated sinewave through a simple Rayleigh two path fading channel and shows the output with phase, gain, and attenuation characteristics via animation.
標(biāo)簽:
unmodulated
Rayleigh
sinewave
through
上傳時(shí)間:
2015-05-17
上傳用戶:CSUSheep
-
數(shù)字運(yùn)算,判斷一個(gè)數(shù)是否接近素?cái)?shù)
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
標(biāo)簽:
數(shù)字
運(yùn)算
上傳時(shí)間:
2015-05-21
上傳用戶:daguda
-
很好的linux內(nèi)核調(diào)試軟件 兼轅馬,沒有密碼。
The ia64 and ix86 directories contain versions of kdb prior to v2.0
(kdb version v2.0, not the kernel version). Older versions of kdb had
complete patches for each architecture it supported, each patch included
all the common kdb code. This format was awkward to maintain and use
for multiple platforms.
Starting with kdb v2.0 there is a common patch against each kernel which
contains all the architecture independent code plus separate architecture
dependent patches. Either use an old style (v1.8 or v1.9) kdb patch or
use a new style (v2.0) common patch plus the corresponding architecture
dependent patch.
標(biāo)簽:
linux
內(nèi)核
調(diào)試軟件
上傳時(shí)間:
2014-01-21
上傳用戶:wyc199288
-
這個(gè)例子如果運(yùn)行,將在仿真的PC窗口中的第1,2,3行顯示一些信息后,在隨機(jī)位置顯示 1 ~ 5 .由于keil c51默認(rèn)不支持重入函數(shù),它的重入函數(shù)使用仿真的重入棧而不使用系統(tǒng)棧,而Small RTOS 51沒有進(jìn)行重入棧管理,所以在TaskA~TaskE雖然及其相似,但不能合并.
注意:(1)在KEIL C51 工程中,我已經(jīng)把輸出文件目錄設(shè)在e:\temp中,您可以在Project->Options for Target "Target 1"的output頁點(diǎn)擊Select Folder for Objects...和Listing頁點(diǎn)擊Select Folder for Listing...改變.
(2)編譯時(shí)會(huì)有5個(gè)警告,其中一個(gè)是因?yàn)闆]有使用一個(gè)系統(tǒng)函數(shù)OSSendSignal引起,它可以忽略.另4個(gè)是禁止任務(wù)間變量覆蓋分析引起,必須忽略.感謝網(wǎng)友John X. Liu,在這個(gè)例子中我使用了他編寫的仿真(dllPc51Emu.dll),這個(gè)dll原來是為他移植的Ucos-ii for keil c51的例子編寫.
(3)Pc51Emu.dll在KEIL C51 V6.23 V7.00工作不正常.
標(biāo)簽:
Small
keil
c51
仿真
上傳時(shí)間:
2015-05-29
上傳用戶:無聊來刷下
-
這個(gè)例子是例子2的另一種寫法(但任務(wù)數(shù)量不同),它使用了最高優(yōu)先級任務(wù)作為顯示任務(wù),全局變量ShowChar作為參數(shù).函數(shù)TaskB是優(yōu)先級1~10的任務(wù)函數(shù),因?yàn)闆]有使用局部變量,這些任務(wù)可以用一個(gè)函數(shù).
注意:(1)在KEIL C51 工程中,我已經(jīng)把輸出文件目錄設(shè)在e:\temp中,您可以在Project->Options for Target "Target 1"的output頁點(diǎn)擊Select Folder for Objects...和Listing頁點(diǎn)擊Select Folder for Listing...改變.
感謝網(wǎng)友John X. Liu,在這個(gè)例子中我使用了他編寫的仿真dll(Pc51Emu.dll),這個(gè)dll原來是為他移植的Ucos-ii for keil c51的例子編寫.
(2)Pc51Emu.dll在KEIL C51 V6.23 V7.00工作不正常.
標(biāo)簽:
ShowChar
TaskB
函數(shù)
10
上傳時(shí)間:
2015-05-29
上傳用戶:asddsd
-
Ever wanted to just type tail -f error_log on Windows?Envious of your Unix friends who can track changes to a file, in real time, as they happen?
Well, now with the Objektiv Tail for Win32, you ll be happily monitoring your log files like you ve never done before.
What s even better, you can track several files all at the same time with the patented "Multiple Document Interface"TM technology, with each file having its own, fabulous window.
標(biāo)簽:
error_log
Envious
Windows
friends
上傳時(shí)間:
2015-05-31
上傳用戶:rocwangdp