
ransher
Members-
Content Count
12 -
Joined
-
Last visited
About ransher
-
Rank
Member
-
what is solution?
-
xms432p401r becomes hot when connected to usb port and when connected to different usb port in just a second. Please help me out,thanks.
-
i downloaded energia 17 but it is unable to run on windows 10
-
i am facing a problem of slow running energia from last few months but found no solution. energia ide 1.6.10e8 is installed on my system and it takes 5 min just to verify the blink led example which is simple code just imagine how ,long it would take to compile big codes antivirus is turned off if anyone there can sort out this would be really grateful,thanks.
-
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
i didn't get it what meant by that?? -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
the same code i have uploaded above is not working in msp432 its just showing "invalid" whenever hello &hey is typed which it should not and should print corresponding strings "hi" &"yeah" further modification i have done in code but the problem still exist code //#define rxPin 3 //#define txPin 4 void setup() { Serial.begin(9600); Serial.write("Arduino is ready"); Serial1.begin(9600); Serial1.write("Bluetooth is ready"); } void loop() { jump: if (Serial1.available() > 0) { String s = Serial1.readString(); if ( s == "hello") { -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
@@energia,thanks for helping now i have new problem, the code i am running perfect with no issue compiled and working as per written on arduino microcontroller- works perfectly but when implemented same code on msp432 with modification as you have notified me above,the code compiles perfectly but don't works as defined in energia though its working on arduino mega 2560 with no issue code #define rxPin 3 #define txPin 4 char myChar ; void setup() { Serial.begin(9600); Serial.println("AT"); Serial1.begin(9600); Serial1.println("AT"); } void loop() { if (Ser -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
@@KeithB msp432 (48mhz) does not support softwareserial library softwareserial.h only supports 8mhz and 20mhz processor -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
installed softwareserial.zip file now shows this error. C:\Users\Hp\Documents\Energia\libraries\SoftwareSerial\SoftwareSerial.cpp:125:2: error: #error This version of SoftwareSerial supports only 20, 16 and 8MHz processors #error This version of SoftwareSerial supports only 20, 16 and 8MHz processors ^ C:\Users\Hp\Documents\Energia\libraries\SoftwareSerial\SoftwareSerial.cpp: In member function 'bool SoftwareSerial::listen()': C:\Users\Hp\Documents\Energia\libraries\SoftwareSerial\SoftwareSerial.cpp:181:23: error: 'SREG' was not declared in this scope -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
error i recieved C:\Users\Hp\AppData\Local\Temp\arduino_modified_sketch_95419\sketch_feb10a.ino:1:28: fatal error: SoftwareSerial.h: No such file or directory #include <SoftwareSerial.h> ^ compilation terminated. exit status 1 Error compiling for board LaunchPad w/ msp432 EMT (48MHz). -
msp432p401r launchpad library for using with energia
ransher replied to ransher's topic in Energia - MSP
i have installed the driver for 432.whatelse i need ? i try to upload a code which i used to run on arduino microcontroller for serial communication using SoftwareSerial.h library which found error while uploading to msp432p401r microcontroller. Error-Softwareserial.h not found code #include <SoftwareSerial.h> #define rxPin 10 #define txPin 11 SoftwareSerial mySerial(rxPin, txPin); // RX, TX char myChar ; void setup() { Serial.begin(9600); Serial.println("AT"); mySerial.begin(9600); mySerial.println("AT"); } void loop() { while (mySerial.available()) { myChar -
hello, i have a new msp432p401r launchpad and i am new to use energia and TI microcontroller.i need the help regarding the library for serial communication with bluetooth hc-05 and pc and coding information for energia setup.Before this i used to code on arduino microcontroller and i am bit confused with this new stuff and some questions are in my mind that can we use arduino library and codes for msp432p401r microcontroller via energia ?? regards, Ransher