Forum Post: RE: Msp430g2553 ADC clock division
Hi Amir, What do you mean when you say you "cant read full data sent"? Also, I see you are setting the ADC registers with '=' instead of '|='. This can be a problem, especially in your conversion_start...
View ArticleForum Post: RE: Problems with the msp432 linux support package
Dan, I would target your response to someone at ti. I'm just a casual crash observer. maybe DavidL (2005340) could help? [Edit note: I can barely read in this editor, the font is so small ... .. sorry...
View ArticleForum Post: RE: Serial data plotting
Hi Prasanth, I would recommend you look into GUI composer: processors.wiki.ti.com/.../Category:GUI_Composer Regards, Ryan
View ArticleForum Post: UPLOAD WITH CODE COMPOSER
Hi , I have a code that I downloaded to a board a wile ago, and I need to do more boards , however the code that I have now seeMs not to work as the old board , so I need to upload from the old MSP430...
View ArticleForum Post: RE: Problems with the msp432 linux support package
Thanks for the pointer to the right place. I will post directly to TI. You just seemed like a helpful (and clueful) guy :-)
View ArticleForum Post: MSP432 - Need Example of using CMSIS to read and write a variable...
MSP432 - Need Example of using CMSIS to read and write a variable value to FLASH Using CCS with GCC compiler (Black version of Launchpad)
View ArticleForum Post: Problem using DriverLib in I2C polled mode on MSP432 Launchpad
Hi folks, I am trying to do some simple, polled (not interrupt) write and read transfers using the EUSCI_B1 module on the MSP432 with DriverLib. However, I have run into behavior that I cannot explain,...
View ArticleForum Post: RE: Factory reset msp432 RevB Silicon
Hey David, What's the process for updating the BSL. I followed the link, downloaded the new BSL. Used CCS to build the project. When I run, it flashes the new bsl to 2000. How does it get to 202000? Is...
View ArticleForum Post: Uint16 to int(signed) conversion
I am programming into a TMS320F28335 controlcard. I want to convert variable in into varialbe in2. in is declared as Uint and in2 is declared as int. Uint holds a 12 bit adc conversion number between...
View ArticleForum Post: RE: Factory reset msp432 RevB Silicon
David, I think I understand more about the process. I set up a release version and set up the msp432 options to enable BSL clearing , etc. The flash now programs at 0x202000 but it doesn't match when I...
View ArticleForum Post: RE: MSP430F5229 BSL for DVIO domain
Thanks Ryan, We changed the hardware to use DVCC domain. We are able to flash images via BSL Rocket.
View ArticleForum Post: RE: Factory reset msp432 RevB Silicon
David, I was mistaken. I was looking at the TITXT output file for debug not release. The BSL looks like it loaded correctly, but still doesn't work. Are you sure this version works on the XMS432P401R...
View ArticleForum Post: RE: DAC with DMA
Thank you for your reply i go through that now consider if i want to send data from lookup table to DAC12_0DAT register than how its possible, i have go through the user guide but its somewhat...
View ArticleForum Post: RE: Communication error in the msp430f5438a
Hi James, This is the initial error, followed by I am using IAR for MSP430 version 6.40.1 on Windows 8.1. The debugger is an MSP FET (not sure if any other details about this are required or how to get...
View ArticleForum Post: RE: Uint16 to int(signed) conversion
[quote user="Amit Aryal"]Uint holds a 12 bit adc conversion number between 0x0FFF (3.3V adc (4095)) and 0x0000 (0V adc (0)). I want to convert in into in2 so that in2 holds a 12 bit signed number...
View ArticleForum Post: RE: Uint16 to int(signed) conversion
sorry i mean in not Uint rephrasing, in is declared as Uint and in2 is declared as int. Variable in holds a 12 bit adc conversion number between 0x0FFF (3.3V adc (4095)) and 0x0000 (0V adc (0)). I want...
View ArticleForum Post: RE: Uint16 to int(signed) conversion
Hi! Conversion, actually math, you re looking for: in2 = (int)in - 2048; Note that "blind" typecasting of uint in to int in is safe in your case because max value it holds is <= 4095. It will...
View ArticleForum Post: RE: Software initiated interrupts on the msp430
Thanks C.L. I concur with your evaluation of the situation, it verifies my findings. Thank you for your time.
View ArticleForum Post: RE: Uint16 to int(signed) conversion
Apart from the simple type cast and the "shift" (subtraction of 2048) - having values from -2048...+2047 representing all-positive ADC values and voltages is a bit dubious. That would fit to truly...
View ArticleForum Post: RE: Problem using DriverLib in I2C polled mode on MSP432 Launchpad
Hi all, As I thought about this some more, it occurred to me that what _might_ be happening is that the DriverLib calls to send bytes are executing so fast that the transmit data is being overwritten...
View Article