-
Content Count
39 -
Joined
-
Last visited
Everything posted by hemangjoshi37a
-
Dear developers, I am simply using Serial.println(); command, but I get some weird characters in the serial port display window. Code : #include <Wire.h> // HIH6130 I2C address is 0x27(39) #define Addr 0x27 int tzero = 196; int tspan = 17; int hzero = 196; int hspan = 17; void setup() { Wire.setModule(1); Wire.begin(); pinMode(P1_3,OUTPUT); pinMode(P1_2,OUTPUT); pinMode(P1_6,OUTPUT); Serial.begin(9600); Serial.println("OK"); delay(300); } void loop() { unsigned int data[4]; // Start I2C Transmission Wire.beginTransmission(Addr); // Select data registe
-
I don't know why but my energia is running very slow. All the other apps are running at good speed. I am using windows 10 64-bit version. I am using Energia V17. Pictures from my task manager are attached here, please take a look at it. Thax and peace.
-
[Energia Library] ILI9341 TFT 2.2 port
hemangjoshi37a replied to gmtii's topic in TivaC / CC3XXX Energia Libraries
Does it work with MSP 430 Launchpad?? with MSP430G2553 or MSP430F5529?? -
Code composer studio is not detecting my MSP Launchpad while Energia easily detects it and loads program on it. Does anyone know why CCS is not detecting Launchpad??
-
Hello everyone, Does anyone have the link to download the library?? Thanks.
-
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
Hey yo. I thought it would work but it is still not working. And guess what, I am a advance member now......yay....... You said I have wrong connections. Well I have connected Tx pin to Rx and Rx pin to Tx, Isn't it right bro?? -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
Yo man I found the solution, There is pin named TXD and RXD on the MSP's board. There is the signal is generated. But thax for your help. -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
So any new thoughts ??? -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
look man just forget about connection to PC, because arduino and MSP both are connected to PC through USB cable, Not using RS232 connection. And very basic question is why MSP is not able to develop any signal on TX pin while I am transmitting some data. however Arduino generates signal on TX pin when I try to transmit some data using same code. -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
So what is this?? solution ?? -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
Arduino is connected to PC through USB cable and to MSP through TX/RX Pins. (to both at same time.) But When I transmit anything through Arduino, It shows on oscilloscope as well as on serial terminal. Why so?? So that in arduino we can intercept the serial signal and in MSP we cant. right?? -
UART Communication between Arduino and MSP430F5529
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
From Arduino's Serial terminal I should get "Hii" message but it is not showing anything. Infact I found that the MSP is just not transmitting anything by connecting Tx pin of MSP to oscilloscope and not getting any signal. -
Dear Developers, I want to send data from MSP430F5529 to my Arduino Nano through UART connection. But somehow it is not working filne. I have used voltage devider circuit to convert Arduino's 5V to MSP's 3.3V. Connection Arduino's RX -> MSP's TX Arduino's TX -> MSP's RX Ground of Both -> ground of voltage devicer. Code of Arduino : const int chipSelect = 10; String inByte = " "; void setup() { // initialize both serial ports: Serial.begin(9600); } void loop() { if(Serial.available()) { char b = Serial.read(); Serial.println(b); }
-
Dear Engineers, Please help me send data to Arduino from my MSP430F5529 using SPI interface. I want to use SPI iterface because in future I want to use the modified code for Attiny13A instead of the Arduino Leonardo. Details are given below. Thank you for your support. Information to Provide When Asking for Help: Model of LaunchPad used and revision number : MSP430F5529 Launchpad Rev 1.6 & Arduino Leonardo Model of the MCU used : MSP430F5529 & ATMEGA32U4~AU at 15Mhz Name and version of the IDE used : Energia 1.6.10E18 & Ardduino IDE 1.8.2
-
[Energia Library] Jaffl: Just another FatFs library
hemangjoshi37a replied to geometrikal's topic in MSP Energia Libraries
Can We create new file with this library??can we expand the file size with this library?? -
[Energia Library] Jaffl: Just another FatFs library
hemangjoshi37a replied to geometrikal's topic in MSP Energia Libraries
Would it work with my MSP430F5529?? And if not than what changes I have to make to work it as library?? -
Have you guy found any solution for MODBUS for Energia?? because the given examples are quite buggy and giving a bunch of errors while compiling them. Please help me. Thank you..
-
[Energia Library] Petit FatFS SD Card Library
hemangjoshi37a replied to calinp's topic in MSP Energia Libraries
Have you found anyway to perform datalogging bro??? -
[Energia Library] Petit FatFS SD Card Library
hemangjoshi37a replied to calinp's topic in MSP Energia Libraries
@LiviuM Yo man I didn't noticed that. It cleared all of my confusions. -
SD card not writing any data from microcontroller.
hemangjoshi37a replied to hemangjoshi37a's topic in Energia - MSP
@Rickta59, @LiviuM, Thax bros. for help. Well then does it means, I have to create the file and add the ammount of characters I want to write?? Right??- 3 replies
-
- sd card
- data logging
-
(and 2 more)
Tagged with:
-
[Energia Library] Petit FatFS SD Card Library
hemangjoshi37a replied to calinp's topic in MSP Energia Libraries
I found very weird solution for this problem. If I have some number of characters pre-written in the t_write.txt file than Hello world will get written on that file. Is it not possible to write something in empty file?? -
[Energia Library] Petit FatFS SD Card Library
hemangjoshi37a replied to calinp's topic in MSP Energia Libraries
Actually I can successfully do data logging with same SD card and same SD card shield from Arduino, so I dont think the card is locked. -
[Energia Library] Petit FatFS SD Card Library
hemangjoshi37a replied to calinp's topic in MSP Energia Libraries
My code for writing "hello world" to the sd card is running successfully but the SD card is not showing anything inside the written file. Please somebody hepl me. Thank you. Regards, Hemang Joshi. Code : /*----------------------------------------------------------------------*/ /* Petit FatFs sample project for generic uC (C)ChaN, 2010 */ /*----------------------------------------------------------------------*/ /* ported to Energia */ /* copy the two files t_read.txt and t_write.txt from the example folder in the root of the sd card*/ #include "SPI.h" -
Hi frineds, Issue : I am data logging into my 1 gb sd card using given code. In my serial terminal window it shows that the data is being written in the sd card, but when i take it out from microcontroller interface and put it in the computer it shows nothing buy empty file (log.txt). Well i know one thing that can be causing this issue that is the log.txt file shows read only in my linux mint environment but still i can write anything in that file. I have attached a screen recording and screen shot file of the issue down below. Please help me... Thank you in advance...
- 3 replies
-
- sd card
- data logging
-
(and 2 more)
Tagged with: