-
Content Count
57 -
Joined
-
Last visited
About srv
-
Rank
Level 1
- Birthday 11/03/1994
Contact Methods
-
Website URL
http://soft-pedia.in
Profile Information
-
Gender
Male
-
Location
Pantnagar
-
Sparkfun
Marker
-
try with some other launchpad...
-
Using MSP430 as a relay between a function generator and MATLAB
srv replied to Aditya's topic in Energia - MSP
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 -
I am unable to use mspflash lib. with msp430F5529 launchpad. Compilling Error--------- Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/MspFlash/MspFlash.cpp: In member function 'void MspFlashClass::erase(unsigned char*)': /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/MspFlash/MspFlash.cpp:33:3: error: 'FCTL2' was not declared in this scope /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/MspFlash/MspFlash.cpp:33:17: error: 'FSSEL1' was not declared in this scope /Applications/Energia.app/Contents/Resource
-
Yes i know i make rtc clock using energia function millis. Sent from my ST26i using Tapatalk
-
can any one help me how can i use these lib with my msp430f5529 launchpad.
-
this is not working with msp430F5529 Launchpad unable to compile #error /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/RTCplus/RTCplus.cpp: In member function 'void RealTimeClock::begin()': /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/RTCplus/RTCplus.cpp:58:5: error: 'BCSCTL1' was not declared in this scope /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries/RTCplus/RTCplus.cpp:59:5: error: 'BCSCTL3' was not declared in this scope /Applications/Energia.app/Contents/Resources/Java/hardware/msp430/libraries
-
hey can any please help me, I want to know that is the program in my msp430F5529 flash is protected.Can any one copy that program to another microcontrollor???
-
Thank You.i am using msp430 launchpad.
-
Can anyone please help me how can i store a data/value in MC flash memory during prgram execution and use that value always (means after reset the launchpad)????? i want to store ADC value in my launchpad memory and use that value algin after several reset.
-
When i Connect my msp430F5529 Launchpad it's asking for drivers?where i can find drivers???...unable to install automatically.but in mac it's working properly. Please Help.
-
And could you please tell me how you send code in colourful way ???
-
Ok.I'll try this thing and send you picture of jumper setting.this time i am using softwear serial in my project.
-
Thank you everyne for support.Now i am gettting every thing very clear.I am new in Energia. It's a great tool for MSP430.I love it's it's simple and you people make this more much simple then any other IDE.
-
i am using P3_3 and P3_4 for softwear uart so the code is not working.
-
Ohh....sorry.You are right now.Thanks for helping me.but there is still a question that from serialuart we can use any pins as serial port then how can i use hardwear uart for this.because if i use software uart then the code size increases and also use more CPU.