
venkatesh223
-
Content Count
32 -
Joined
-
Last visited
Posts posted by venkatesh223
-
-
Hello,.
My idea is about connecting two CC3200 without a separate WiFi router like with their own like for example share it app which connects two devices using wifi one device with hotspot and one connected to that hotspot and share data.
Is it possible to do that? As my idea is to share short text data between devices. using energiaI want to continuously send/receive data between 2 cc3200 without any other modem unit or with another cc3200 which will be an access point between 2 of them. Is this possible ? If so , where should i begin?
cc3200 (unit a) <-------> cc3200 (unit b) or cc3200 (unit a) <------via cc3200 (as AP) -------> cc3200 (unit b)
Thank you
-
.
-
yea yea ok thank you for your reply
-
Thank you for you reply.
Yes please do contact.
-
hello,
Im trying to interface a 2 inch rgb LCD display with ST7789v lcd driver im using the ucglib library for this i get a few errors stating not been declared need assistance with this please. I attached the library used and the screen shot.
-
Hello there,
Ive been trying to use the UART on pin number 3 and 4 by using serial for monitoring the received data and serial1 for connecting and controlling the hardware(GPS) but the by using serial1 i think the uart isnt active.
i see by connecting gps to putty that there is no data sent from the cc device .
I checked the hardware serial .h and .cpp file where in the cpp file there is serial1 functions mentioned but in the pins_energia file i see no pin initialized as uart only analog, timers and gpio's are initialized. So what can i do to make it work.
12345678910111213Serial1.begin(112500);
Serial.begin(19200);
delay(50);
Serial1.println(
"AT"
);
delay(1000);
Serial1.println(
"AT+QGNSSC?"
);
delay(1000);
Serial1.println(
"AT+QGNSSC=1"
);
delay(1000);
Serial1.println(
"AT+QGNSSTS?"
);
delay(1000);
-
Hello there,
I connected a gps module and it gives me the gps data but im unable to segregate the following data on energia
+QGNSSRD: $GNRMC,044927.000,A,1301.7816,N,07731.3016,E,0.00,93.73,290319,,,A*4F
so i need to separate the latitude and longitude, time and date.
So can anybody help me in understanding how to get the required data from the above.
i attached my code below as you can see im getting stuck in the serial read please help me in correcting this.
123456789101112131415161718192021222324252627282930313233343536char
gps;
int
times = 1;
int
count = 0;
void
setup()
{
Serial.begin(115200);
delay(2000);
Serial.println(
"AT"
);
delay(1000);
//Serial.println("AT+CMGF=1");
Serial.println(
"AT+QGNSSC?"
);
delay(1000);
Serial.println(
"AT+QGNSSC=1"
);
delay(1000);
Serial.println(
"AT+QGNSSTS?"
);
delay(1000);
}
void
loop() {
while
(count < times)
{
Serial.write(
"AT+QGNSSRD=\"NMEA/RMC\""
);
delay(2000);
if
(Serial.available() >0)
{
gps=Serial.read();
String response =
""
;
response +=gps;
Serial.println(response);
return
response;
}
count++;
}
}
-
On 1/9/2014 at 1:06 AM, energia said:
-
Hi,
Does anybody have an idea of when will energia ide support Hercules TMS570LS04x/03x LaunchPad is gonna release?
Can we add that board to energia?
If yes, can anybody suggest in how to add a new board to energia so that i shall try adding it.
Thanks
-
On 1/9/2014 at 1:06 AM, energia said:
Hercules is a great processor but it is also a bit to niche for Energia. With that said, if there is growing demand for it I might consider adding support for it in the future.
What would your application be if we would have Energia support for it?
Hi,
When is the support for hercules launchpad is added?
-
Hi there,
I've seen that the pins_energia file for MSP430FR6989 is designed for launchpad itself. So i,m developing a custom board using MSP430FR6989 will that same pin out file with the launchpad pin numbers can be used, or is there any pins_energia file only for that IC with all the pin numbers for each pin, or should i modify it accordingly?, if needed to modify then what changes can i do to make it compatible please help.
Thank you
-
Hi,
Iam planning to make a project which involves GPS and GSM ive decided to use the Quectel MC60 for this purpose.
Can anyone here guide me on how to do this like the libraries required references, example codes .
Thanks
-
-
Hi,
Can anyone provide me the links or code for basic read and write example on FRAM of MSP430FR6989 on energia?
-
Hello,
Im getting an error while compiling the 128x64 LCD u8g2 library on msp430fr6989. I tried the hello world code on it full buffer.
I complied the same code on msp432p401r it compiled and even the display worked but the same code when changed the board to FR6989 its says fatal error assert.h no such file or directory, the screen shot is attached below.
Please help me with it.
Thank you
-
Thank you for the reply. it helped a lot
-
Hello there,
I have 128x64 graphical dot matrix display lying around with the driver ST7567, so ive been thinking can i interface it with msp432 or 430?
i found a library for arduino in github but when i added the library to energia and compiled it i get the following error attached below. I have attached the library and the screen shots below, in that library there are for many lcd controllers i selected " U8G2_ST7567_JLX12864_F_4W_SW_SPI" it worked out fine on arduino.
can any one help me out??
-
Hi,
Can anybody provide me the links for some energia examples or lcd drivers for the on board lcd of msp430fr6989 launchpad.
Thank you
-
-
I use a Sandisk ultra SDHC 16Gb .
No i did not try different cards.
And the SPI bus isnt shared with any other devices
-
I tried the same code and the same SD card with Arduino uno, the card was detected. So what might be the possible reasons for not getting detected with MSP432P401R ??, even though the connections are right.
-
Thank you for your reply.
@terjeio Can you please provide me the link of SD card example on the TI SDK. And it would be helpful if you can tell me the pin configuration with the msp432p401r . Will give it a try using CCS and see is it the same or not.
-
Anybody please reply?
-
Is it the same pin out as above or do i have to change it?
CC3200 transceiver mode in energia.
in Energia - TivaC/CC3XXX
Posted
Thank you for your reply
Any example code for that?