Forum Post: RE: Is there a way to tell how many bytes were transferred by the...
[quote]... I could not find any register that would tell me how many bytes have been transferred.[/quote] Maybe because this is not the use-case DMA is intended for. Polling the current state would...
View ArticleForum Post: RE: MSP-GANG Error #23
Hi Matt, Error 23 doesn't necessarily mean that the fuse was blown. It could also mean something is not set up correctly, or maybe your part has bad code in it that is causing it to reset quickly or...
View ArticleForum Post: RE: MSP430F47176 Driverlib
Hi David, In order to progress development we have moved focus to MSP430FG6626 due to its similarity to the MSP430F6638 (my understanding is that the MSP430FG6626 is supported by driverlib?) Is there a...
View ArticleForum Post: RE: MSP430FG6626 CTSD16 INPUT
It looks like the signal is getting chopped due to the reasons mentioned above. It's clear the top of the sine wave has been displaced to the negative side of the graph - like reversed polarity. Maybe...
View ArticleForum Post: RE: Has anyone used MSP432 to code MPU9250 or any other IMU chip?...
Related thread: e2e.ti.com/.../1606954 This should be able to get you started. There is also an Arduino library that you might be able to port to Energia : github.com/.../MPU-9250 Regards, Ryan
View ArticleForum Post: RE: CC430F5133 power consumption problem in LPM3 or LPM4 mode
Thank you for providing detailed debugging information, your issue seems to be directly related to UCS6 from the erratasheet (SLAZ092): www.ti.com/.../slaz092s.pdf This would explain both the high...
View ArticleForum Post: RE: MSP430F67791A RTC issue
Please provide the schematic, PCB layout, and RTC/AUX initialization code if possible. Please also confirm that the backup battery and external 32 kHz crystal are functioning properly during these fail...
View ArticleForum Post: RE: DMA with SPI relative clock speeds
Thank you all for replying. These were the missing pieces!
View ArticleForum Post: RE: RFID Card Reader UART to MSP430g2553
Unfortunately, RFID isn't straight. The different bits in the hex value belong to different 'fields', and it appears that the printed 'serial number' is a sequence of these fields rahte rthan a...
View ArticleForum Post: RE: Need software codes to measure 60 Hz RMS voltage
Hello Baha, Please review the MSP430-ENERGY-LIBRARY and accompanying TI Designs: TIDM-THREEPHASEMETER-F6779 TIDM-1PHMTR-ESD TIDM-3PH-ENERGY5-ESD Regards, Ryan
View ArticleForum Post: RE: Hardware checksum for MSP430fr5969
OCY, You are correct. I kind of got a little wrapped up in how I am used to it being done, that it never occurred to me that he just set it in the GUI (which saves the settings to the .ewp project...
View ArticleForum Post: RE: CapTIvate METAL TOUCH and thermal expansion
Hi Yuji, How high of temperatures do you expect to be operating at? Do you really foresee the metal overlay's thickness expanding dramatically enough to adversely affect the capacitance? Keep in mind...
View ArticleForum Post: RE: UART configuration - No data showing up on terminal (Putty)
Two things I'm wondering.... 1. Are you sure that your clock settings have SMCLK = 1 MHz? I don't see you setting up the DCO, and I don't know what the default is for that part. 2. Does enabling the...
View ArticleForum Post: MSP430F5528 rev. F issue with JTAG - doesn't work
We have a device based on MSP430F5528 MCU. It works fine with F5528 revision H and I. But recently we purchased F5528 revision F (see the picture below) and it doesn't work via JTAG. MCU doesn't...
View ArticleForum Post: RE: Fri Oct 14, 2016 10:54:22: No state storage buffer...
Hello Nagajyothi, Please refer to the following E2E threads: e2e.ti.com/.../418270 e2e.ti.com/.../1838059 e2e.ti.com/.../504664...
View ArticleForum Post: RE: LSM9DS1 Library for MSP430F5xxx
You mention Arduino. Are you looking for similar environment? If so, go over to Energia .nl and see if they have a library already. Otherwise, there are I2C examples for 5529LP in the project resource...
View ArticleForum Post: RE: RFID Card Reader UART to MSP430g2553
Thankyou for your notice. And what is FF meant which trails 0088585D ?
View ArticleForum Post: RE: USB Developers Package Support for MSP430FG6626?
In addition to what Zrno said, if you go to the Product Page for the MSP430FG6626 (<- Click that link) you will find in the Technical Documents tab links to all the datasheets, errata, user's guides...
View ArticleForum Post: RE: UART configuration - No data showing up on terminal (Putty)
#include /* * main.c */ const char string[5]={"Hello"}; int i; void main(void) { i=0; WDTCTL = WDTPW+WDTHOLD; // Stop watchdog timer UCA0CTL1 = UCSWRST; // Reset UCA0 to be configured P2SEL1 = 0x00;...
View ArticleForum Post: RE: LSM9DS1 Library for MSP430F5xxx
Hi Delared, As you can probably tell from the referred-to E2E post, TI does not provide examples for specifically interfacing a MSP device to the LSM9DS1 and the community has yet to provide a viable...
View Article