闩锁和端口,dsPIC33f

时间:2013-01-19 08:50:01

标签: port mplab

我指的是http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=2123&param=en024284

上的一个简单程序(例2)
#include "p33Fxxxx.h"

#pragma config WDT = OFF

void main (void)
{
  TRISB = 0;

  /* Reset the LEDs */
  PORTB = 0;

  /* Light the LEDs */
  LATB = 0x005A;// tested with PORTB= 0X005A;at first, no change of PORTB in watch                      
                   window
  while (1)
  ;
}

在监视窗口中,latchB成功更改为0x5A,而PORTB保持为0x0000。 我想知道为什么会这样。 如果我将portb连接到LED,它们会点亮吗?

1 个答案:

答案 0 :(得分:0)

哦,我忘了通过AD1PCFGL = 0xffff;

将模拟输入设置为数字