Jump to content
43oh

areben

Members
  • Content Count

    6
  • Joined

  • Last visited

  1. Still looking for people interested in helping us push the project further.
  2. ROCKETuC is a library for launchpad, processing and Java which allows for control of the microcontroller through USB. Stefan Wendler and I (mostly Stefan ) have been putting this together to get it to a state to release for feedback. "ROCKETuC is a Library for fast prototyping of micro-controllers through serial protocols. Currently the TI Launchpad with an MSP430G2553 installed is the only supported hardware." Right now, we have a github page with a pre-alpha release https://github.com/areben/ROCKETuC A how-to for processing Processing example code Here is
  3. Any ideas? I have not been able to debug this one.
  4. Hello I am having trouble getting my code to receive an RX byte when I use the cap sense library. It either freezes the code or does not echo. Here is my (hacked up) code: /******************************************************************************* * * CapTouchBoosterPack_UserExperience.c * - MSP430 firmware application to demonstrate the capacitive touch * capability of the MSP430G2452 interfacing with the LaunchPad CapTouch * BoosterPack. * * Copyright (C) 2011 Texas Instruments Incorporated - * * Redistribution and use in source and binary forms, with
  5. Ok, Solved my own problem in the example code __bis_SR_register(LPM0_bits + GIE); // Enter LPM0, interrupts enabled puts the CPU to sleep changing it to __bis_SR_register(GIE); worked
  6. Hello I'm sure this is obvious, but I used the example code for hardware serial for the MSP430 My problem is: The code never runs my while(1) The code returns "Hello World" when I send u The code does not toggle the pin when I send c Tips appreciated #include "msp430g2553.h" #define BEEP_PIN BIT0 const char string1[] = { "Hello World\r\n" }; unsigned int charLoop; void main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop WDT BCSCTL1 = CALBC1_1MHZ; // Set DCO DCOCTL = CALDCO_1MHZ; P1SEL = BIT1 + BIT2 ; // P1.1 = R
×
×
  • Create New...