-
Content Count
57 -
Joined
-
Last visited
Reputation Activity
-
srv got a reaction from Aditya in Using MSP430 as a relay between a function generator and MATLAB
see file:http://energia.nu/AttachInterrupt.html
use this function:
attachInterrupt(interrupt, function, mode);
first change the intrrupt with your input pin and then
in place of mode put: RISING
and in place of function write you function which one you want to call
here you want to send data using serial port so write inside your function :
void function(void){ Serial.println("High Pulse"); } so your final program is like:
void setup() { Serial.begin(9600); attachInterrupt(P2_2, serial_call, RISING); } void loop() { // put your main code here, to run repeatedly: } void serial_call(void) { Serial.println("HIGH PULSE"); delay(100); } -
srv reacted to Rei Vilo in MSP430F5529 Driver Problems
What OS are you using?
As you say, the MSP430F5529 works fine with Mac OS X.
Have a look at the MSP430F5529 USB LaunchPad Evaluation Kit: there's a section called User Guides (3) and another Software (3) with LaunchPad Drivers (ZIP, 17202 KB) 2635 views, 30 Sep 2013.
-
srv reacted to roadrunner84 in delay time for SoftwareSerial in MSP430F5529 launchpad
Either press the < > icon in the top bar and paste your code there, or use the UBB codes (wrap your code in
tags, drop the spaces before the ]). -
srv got a reaction from bluehash in MSP430G2553
i am using MSP430G2 launchpad with MSP430G2553 controller.but when i program it and make a pin high i am getting 1.4-1.6 v only please help.