我正在使用MSP430 Launchpad。更具体地说,我正在使用微控制器MS430G2553。我正在尝试编译为MS430G2230设计的一些代码,但问题是代码的某些部分与MS430G2553不匹配。 这是代码
void USI_Init (void)
{
// configure SPI
USICTL0 |= USISWRST; // USI in reset
USICTL0 = USICTL0 | USILSB; // Least Significant Bit first
USICTL0 |= USIPE7 + USIPE6 + USIPE5 + USIMST + USIOE; // Port, SPI Master
USICTL1 |= USICKPH; // flag remains set
USICKCTL = USIDIV_1 + USISSEL_2; // /2 SMCLK
USICTL0 &= ~USISWRST; // USI released for operation
USICNT = USICNT | 0x50; // 16 bit mode; 16 bit to be transmitted/received
return;
}
这是第二个不起作用的例程
#pragma vector=WDT_VECTOR
__interrupt void Write_Matrix(void)
{
static unsigned char index=0;
P1OUT |= DATA_LATCH_PIN;
P1OUT &= ~DATA_LATCH_PIN;
USICTL1 &= ~USIIFG; // Clears the interrupt flag
USISRH = 1<<index; // Move the index of the column in the high bits of USISR
USISRL = Matrix[index]; // Move the index of the rows (value of Matrix[index]) in the low bits of USIRS
USICNT = USICNT | 0x10; // 16 bit format
index = (index+1) & 7;
return;
}
任何想法? 感谢
答案 0 :(得分:2)
首先,您不应期望在这两个处理器系列之间具有100%可移植的代码。 MSP430G2553是一款体积更大的线路处理器,具有比MSP430G2230更多的外设。
请参考下图:
如您所见,这些MCU非常不同。
您的第一个例程不起作用,因为MSP430G2553没有USI
外设。相反,使用USCI
外设执行SPI通信。您需要修改代码才能使用此外围设备。有关详细信息,请参阅User's Guide。
由于缺少USI
外围设备,您的第二个例行程序无效。请注意对USI
寄存器的引用:USICTL1 &= ~USIIFG;
等。您需要再次修改代码才能使用USCI
外设。