Forum Post: RE: msp430 i2c problems
That string contains five bytes. And D0..D3 are not connected, so you must use 4-bit mode. And you are not handling the RS/RW/E pins.
View ArticleForum Post: Writing to MSP432 flash
Can a program running in MSP432 flash write to flash?
View ArticleForum Post: RE: MSP432P401R launch pad Overheating?
How can i confirm this ? Is there any way to repair this. Earlier in a previous post i had mentioned a problem of unable to debug in CCS ( e2e.ti.com/.../544407) But i am able to use energia to debug....
View ArticleForum Post: RE: msp430 i2c problems
what is the fifth byte? is it the null in the end of the string? and how can i handle rs/rw/e pins from the msp430? I thought that 248 in binary is 1001001000 and the first bit (from the left) is the...
View ArticleForum Post: RE: Run time issue with MSP430FR6989 while run/debug on launch...
Have you tried the code in Code Composer Studio? The same code should work in CCS without modifications (almost). Maybe this could help you narrow down the problem ...
View ArticleForum Post: RE: MSP430FR6989 + GRLIB
Hi, Ryan, unfortunately I don't have this kit for now. If I left justify the picture (i.e. X = 0, Y = 0) the picture is shown the correct way - entirely. I'm providing you with the full project ......
View ArticleForum Post: RE: Writing to MSP432 flash
Hi Alvin! Yes, the MSP432P401R can write into it's own flash during runtime. The Technical Reference Manual has a chapter FLCTL (Flash Controller) that describes the module for doing so. Dennis
View ArticleForum Post: RE: CAPDx register config for current consumption control
Hi Ryan, they are reporting me that with CAPD.x pin set, they are having no issues, even if the pin is used in ADC mode. Is it possible that, due to low dynamics of the signals, having the buffer...
View ArticleForum Post: RE: MSP-FET Flash Emulation Tool problem
Hi, I am eagerly waiting forward for your kind reply. Thanks, Vaishravana
View ArticleForum Post: RE: msp430 i2c problems
"\x24" is the fourth byte, "8" the fifth. With the I/O expander, you have only 8 bits. To write to the LCD controller, you have to first set the data bits and RS/RW bits to their desired values, and E...
View ArticleForum Post: RE: msp432 external power and usb
So from the hardware point of view, i can simply connect the power pin to an external power supply? Nothing else? sorry but i would want to do the right thing
View ArticleForum Post: RE: MSP430F235 Usci output level inverted
The same when the pin is disconnected. More then that, when I try to use the port (P3.4) without initiating it to Usart, but as GPIO, using debugger, the levels are also inverted !! '0' is 3V and '1'...
View ArticleForum Post: RE: Run time issue with MSP430FR6989 while run/debug on launch...
Hi Lubomir Bogdanov, Thanks for your answers, Problem is identified as linker file memory partitioning issue.
View ArticleForum Post: RE: MSP430FR5739 not blinking
Hi Thanks for help both codes are working , where can I find more information about PJ (DIR , OUT) . I need to understand the following lines : PJDIR |= BIT0|BIT1; PJOUT |= BIT0; PJOUT &= ~BIT1;...
View ArticleForum Post: RE: MSP430FR5739 not blinking
The information about the registers is given in the User's Guide , chapter "Digital I/O". Things like "|=" or "&= ~" are bitwise operations . In short: [quote user="sarmad mueen"]PJDIR |=...
View ArticleForum Post: RE: msp430 i2c problems
You need helper functions like this: void switchFrom8To4Bits() { static unsigned char buf[2] = { 0x24, 0x20 }; dataTransmit = buf; size = 2; while(UCB0STAT & UCBBUSY); UCB0CTL1 |= UCTR + UCTXSTT; }...
View ArticleForum Post: RE: Interfacing MSP430f5529 to SD card reader
Hello Arthi, Thank you for your reply. Sorry for the delay because I wanted to try a couple of things before i got back to you. I did what you suggested but it still hasn't sensed the insertion/removal...
View ArticleForum Post: RE: Interfacing MSP430f5529 to SD card reader
The MSP has a couple of ports, each having eight bits in most cases, some have less if the device is small. So there could be... Port 1 BIT0 BIT1 BIT2 BIT3 BIT4 BIT5 BIT6 BIT7 Port 2 BIT0 BIT1 BIT2...
View ArticleForum Post: MSP430FR5989 ADC 12 bits offset error specification
Hi TI Champs, Please find here 2 questions about the MSP430FR5989 ADC 12 bits offset error specification Thanks for your help here Q1 : In the MSP430FR5989 DS, the Table 5-26 “12-Bit ADC, Linearity...
View Article