基于LTC1298或MCP3202 双通道12位串行AD的89C51汇编函数。 可用于C语言编写的程序,在C程序的开头先声明一个外部函数: extern unsigned int adcInput(bit chanSelect); 之后在程序便可直接调用。例如: static int pdata adiBuf_A[5]; // 静态变量 static int pdata adiBuf_B[5]; adiBuf_A[0] = adcInput(0); // 通道0 adiBuf_B[0] = adcInput(1); // 通道1