msp430
Msp430 blinky (uses onboard led!) Get your Energia development package here: http://energia.nu/ /download/ http://www.ti.com/ww/en/launchpad/launchpads-msp430-msp-exp430g2.html#tabs #include <msp430g2553.h> unsigned int i = 0; // Initialize variables. This will keep count of how many cycles between LED toggles void main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer. This line of code is needed at the beginning of most MSP430 projects. // This line of code turns off the watchdog timer, which can reset the device after a certain period of time. P1DIR |= 0x01; // P1DIR is a register that ...