can someone please help me, When I write the instruction Radio.begin() in my sketch and Upload this in the MSP430, the program freezes and all the instructions that I write after of Radio.begin() don´t work. with energia-0101E0012 , I looking for a solution to this problem on energia-0101E0010 forum.43oh.com/topic/4776-solved-energia-freezes-cc110l-rf-boosterpack/
but energia-0101E0012 and includes this solution Platform.cpp ,here
One example easy
I only use the Serial Communication, i have the same problem
#include <SPI.h>
#include <AIR430BoostFCC.h>
void setup()
{
Radio.begin(0x01, CHANNEL_1, POWER_MAX);
Serial.begin(9600);
}
void loop()
{
Serial.println("HELLO WORLD");
}
In this case, in Serial monitor, never see the text. Like I said before, the program freeze in Radio.begin()
my hadware is that : msp430 lauchpad 1.5, msp430g2553,cc110L boosterpack
I use a computer with windows 7 64bit
