por kubiak » 29 Jun 2007 16:04
Pessoal, Obrigado pelas respostas, o meu problema é realmente em relação as licensas, eu consigo instalar, porém na hora de compilar ele não compila....
Dá erro que não tem licensa...
EX:
#include "msp430x20x1.h"
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P1DIR |= 0x01; // Set P1.0 to output direction
for (;;)
{
volatile unsigned int i; // volatile to prevent optimization
P1OUT ^= 0x01; // Toggle P1.0 using exclusive-OR
i = 10000; // SW Delay
do i--;
while (i != 0);
}
}
--------------------------------------------------------------------------------------
Building configuration: MSP430x2xx (C - SpyBiWire) - Debug
Updating build tree...
msp430x2xx_fet_1.c
Fatal Error[Cp001]: Copy protection check, No valid license found for this product [20]
Total number of errors: 1
Total number of warnings: 0