不好意思,微芯片论坛很慢,我更喜欢用 Stack Overflow 提问。
dsPIC33FJ06GS101/X02 and dsPIC33FJ16GSX02/X04 device
Sample Code
// configure comparator2
CMPCON2bits.CMPON = 1; // enable comparator
CMPCON2bits.INSEL = 1; // select CMP2B input pin (RB0)
CMPCON2bits.RANGE = 1; // select high range, max DAC value = Avdd/2
//CMPDACx: COMPARATOR DAC CONTROL REGISTER
//CMREF<9:0>: Comparator Reference Voltage Select bits
CMPDAC2 = CURR_HWLIM; // DAC threshold
#define CURR_HWLIM 1023 // 1023 // 10.15 * 101A
Microchip 示例代码设置CURR_HWLIM
是 1023A 到CMPDAC2
,它需要电压。
这是一个错误吗?