-
MCS
MCS-96单片机A_D转换器应用,包括查询式方法和中断方法。查询法通过检测AD_RESULT(LO)中的S位来判定A/D转换是否完成,中断方法用来实现多任务处理。-MCS-96 microcontroller A_D converter applications, including inquiries approaches and methods interruption. Query by detecting AD_RESULT (LO), the S-judge A/D conversion if completed, Methods used to achieve interruption of multi-tasking.
- 2023-05-24 10:40:03下载
- 积分:1
-
用汇编写的一个动画,内附有源码和说明
用汇编写的一个动画,内附有源码和说明-with a compilation of animation writing, enclosing a source and notes
- 2022-05-08 22:52:01下载
- 积分:1
-
Test program to loop on Successive Approxi mation A
Test program to loop on Successive Approximation A-to-D conversion.
Allows digital codes and resulting DAC output to be viewed on scope.-Test program to loop on Successive Approxi mation A-to-D conversion. Allows digital code "s and resulting DAC output to be viewed on scope.
- 2022-05-19 11:06:26下载
- 积分:1
-
IO口直接驱动lcd的汇编程序
中颖单片机SH67P33编写的用IO口直接驱动段码式lcd的汇编程序,对于刚接触单片机汇编的新手,还是不错的,给大家参考参考。
- 2023-08-07 10:35:04下载
- 积分:1
-
Super light water source, three state of transformation, using PWM and timer int...
超级流水灯源程序,三种状态转化,用PWM及定时中断控制!-Super light water source, three state of transformation, using PWM and timer interrupt control!
- 2022-02-02 03:08:54下载
- 积分:1
-
DSP16 10进制转换的程序(111111111111)
dsp16到10进制转化的程序
(111111111111)-dsp16 to 10 hex conversion program (111111111111)
- 2022-03-19 09:07:14下载
- 积分:1
-
根据8051单片机的特点及交通灯在实际控制中的特点,本文提出一种用单片机自动控制交通灯及时间显示的方法....
根据8051单片机的特点及交通灯在实际控制中的特点,本文提出一种用单片机自动控制交通灯及时间显示的方法.-According to the characteristics of 8051 and the traffic lights in the actual control of the characteristics of this paper, a single-chip automatic control with traffic lights and the time display method.
- 2023-03-23 05:30:03下载
- 积分:1
-
P1口的流水灯程序,先亮流水,后不亮流水,正反相对
P1口的流水灯程序,先亮流水,后不亮流水,正反相对-P1 mouth flow signals procedures and bright water, after failing to turn water, the relative pros and
- 2023-04-16 19:00:03下载
- 积分:1
-
代码2864
code 2864
for reference
- 2023-02-13 21:15:04下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1