Forum Post: RE: lcd 16*2 msp430f5529
Hi Ryan, got the output....there was a connection problem. R/W pin and enable was not connected properly. i also used bit set(|=) as suggested by you,to avoid overwriting. Thanks. Regards, Neha
View ArticleForum Post: when i read temperature first i get a temperature data of 26.3...
Below function called respectively for temperature and voltage. uint16_t Rechargeable_battery_read(void) { //uint32_t i; uint16_t vltg = 0; Adc_Vltg_init(); GPIO_setAsOutputPin(GPIO_PORT_P7,GPIO_PIN4);...
View ArticleForum Post: RE: MSP432 chip heats up quickly on Power-On
[quote]As to the last part of your response, if the voltage regulator has gone bonkers, that would mean I'd have to get a new board, right?[/quote] That depends upon the damage. I just one (a voltage...
View ArticleForum Post: RE: MSP432 - Is the TLV descriptors for die information not...
I would just take 8/8/8/24 bits. Or better, compute a hash over all fields. (It is unlikely that TI will guarantee any upper limit on the wafer/lot size for all future devices.)
View ArticleForum Post: MSP430FR2633: Estimating the whole uC current consumption for...
Hello, I was requested to estimate and summarize the current consumption of a CapTIvate use case. Could you please advise ? ### Whole uC current consumption Could you tell me if anything in the...
View ArticleForum Post: Problem with UART communication in MSP430G2553
Hi, I am working on MSP430. In that I am connecting XBEE module to the UART pins of msp430. I am transmitting hexadecimal value from one xbee to the other xbee which is connected to the msp430. After...
View ArticleForum Post: RE: Problem with UART communication in MSP430G2553
Hi Subash! I don't understand your post completely, I think. So you are able to transmit something, but the value you send isn't equal to the value you receive? If something received is different from...
View ArticleForum Post: RE: Wakeup time from LPM0 and LPM1
KoT, when you measure wake-up time please measure from the wake-up event to the first active edge of the MCLK, to do this please put it to the corresponding output pin and measure again. Also please...
View ArticleForum Post: MSP432P401R: IR Library?
Part Number: MSP432P401R Hi Devs, I am working on an IR library but not having much success (not oscilloscope to help me either). My approach is just to translate a working Arduino library, however, I...
View ArticleForum Post: RE: MSP430FR5994: Writable Memory Above 64k
Also, in case this information helps: CCS version 6.2.0.00050 Compiler: TI v15.12.3.LTS In compiler settings, Silicon version = mspx Data memory model = restricted code memory model = large Compiler...
View ArticleForum Post: RE: MSP430FR2633: Estimating the whole uC current consumption for...
Jace, I appreciate your kind response. Could you please what is your word "base modules specified" ? It was not clear to me. I'm sorry for this strict question. My customer need to estimate the whole...
View ArticleForum Post: RE: MSP430FR2110 RTC w/ PWM output
Thank you Katie. I think we can convincingly call this one Closed! Regards, Chris
View ArticleForum Post: RE: MSP430 SD card write throuhput
Hi Kyt, I saw you are using MSP-EXP430FR5994 board which has a SPI interface with SD-card, have you tested the Out-Of-Box demo with SDcard function? Another question is about ADC setting, maybe you...
View ArticleForum Post: RE: DCO changes in MSP432 revision C and a possible error in...
A follow up. I have been playing with the DCO, writing different values in the DCOTUNE bitfield and got some quite strange results. When the DCOTUNE is zero - everything is fine, the DCO works at its...
View ArticleForum Post: RE: when i read temperature first i get a temperature data of...
version : MSP432p401r When i call voltage function first i get value ,and if i call temperature next i couldn't get because (uint64_t status = ADC14_getEnabledInterruptStatus()) status remains same ....
View ArticleForum Post: RE: msp432 SPI clock speed
[quote user="Chris Sterzik"]Eric, I mispoke, the 16Mhz was a bench characterization and not a validation test. I am still waiting for feedback, but the 16Mhz value is valid for both 32Mhz and 16Mhz...
View ArticleForum Post: MSP432P401R: Making MSP432P401R (Red)Launchpad work at 1.8V
Part Number: MSP432P401R Hi guys!!! I recently bought a msp432p401r launchpad rev2.0(red colored). It works at 3.3V natively. My question is can I supply 1.8V from external source to launchpad? Then...
View ArticleForum Post: RE: MSP430 SD card write throuhput
KC thank you for your reply. The demo go well. And the ADC operation is operation correctly. I will double-check. Do you have any check point without it? best regards, kyt
View ArticleForum Post: RE: MSP430F1611IPM FOTA
Dear Dennis, Thank you so much. I have one more question. In my design, I have wireless connectivity shield,and I used CC2591RGVT in this shield. Can I update MCU with CC2591RGVT?
View ArticleForum Post: RE: MSP430FR5969: How long to enter Low power mode LPM0?
Disable interrupts; Configure and start the timer; go to LPM0 and re-enable the interrupts at the same time: _bis_SR_register(GIE | LPM0_bits);
View Article