Forum Post: RE: TIDM-THDREADING ISOLATED
Hi Ryan. I want to make a three-phase power meter, but that the electronic circuits do not used any of the three phase lines as power supply, is used as a power supply, a DC voltage source independent....
View ArticleForum Post: RE: EVM430-F6736 LCD Not Working
I will have someone from the Metering Team comment on this issue. You should not have to make any changes to the provided code. Have you tried downloading the code using the IAR project version?...
View ArticleForum Post: RE: MSP430F5510 RGZ/PT code compatibility
I didn't have any software tools (this is a legacy project) but I went ahead and installed the free version of code composer to check. You are right, there is no distinction between the different...
View ArticleForum Post: RE: ADC12 (MSP430F5528) 2's complement data format
>By the way, I didn’t understand what you meant by manipulations not needed. Because msp430 is little endian system. Just write ADC data into array of signed integers and you will see that byte...
View ArticleForum Post: RE: Delay on UART for MSP430F5438A
Does interrupt occur after configuration alone, without sending any byte? Anyway this is not hardware issue. There's something wrong with code. After 30/40 seconds something else happens which...
View ArticleForum Post: RE: Interfacing MSP-EXP430G2 LaunchPad Development Kit with...
If you use a newer device MSP430 LaunchPad with eZ-FET emulator, you should be able to program it.
View ArticleForum Post: RE: RTC_A IS NOT GENERATING ALARM INTERRPUT
Hi Sanjay, Here is an example that does what you want #include int X = 0; int main(void) { WDTCTL = WDTPW | WDTHOLD; // Stop Watchdog Timer P1DIR |= BIT0; // Set P1.0 as output P4DIR |= BIT0; PJSEL0 =...
View ArticleForum Post: RE: MSP43x with CC11xx issue
I finally did it. Lowering SPI bitrate to 4 Mbit/s solved this issue.
View ArticleForum Post: CORTEX_M4_0 - Debug Call Stack stop my program
Hello, i got a problem, I am trying to save some ADC data in a vector, after that I want to displace the data one position and save it in another vector, but the problem is that when I do that, the...
View ArticleForum Post: Signal measurement
I am using msp430f2619 using DMA ,DAC and timer i have generated a signal i have done so because i have to control amplitude and frequency of signal digitally. Now consider one case if one MCU is...
View ArticleForum Post: RE: Signal measurement
>So the question is all these tasks can be performed by one MCU? Indeed. Depends on sample rate and complexity of signal to generate. Unfortunately you don't specify such data
View ArticleForum Post: RE: Signal measurement
i am sending 72 samples via DMA for sine wave to one DAC and that DAC reference driven by second DAC so that amplitude will be controlled
View ArticleForum Post: RE: Signal measurement
If you are sending 72 samples every hour then I can process it even using calculator. You see what you missed to tell?
View ArticleForum Post: RE: CORTEX_M4_0 - Debug Call Stack stop my program
Why you are checking UART flag in the ADC ISR? while(!(UCA0IFG&UCTXIFG)); If i==buf_size, you are reading ADC result two times during ISR call which is by definition not good idea. Instead of...
View ArticleForum Post: RE: Signal measurement
yes here is the code mov.w #SFE(CSTACK),SP ; Initialize stackpointer StopWDT mov.w #WDTPW+WDTHOLD,&WDTCTL ; Stop watchdog timer SetupADC12 mov.w #REFON+REF2_5V,&ADC12CTL0 ; Internal reference...
View ArticleForum Post: RE: Signal measurement
I did not ask for code but sample rate (samples per time unit). You mentioned just sample count.
View ArticleForum Post: RE: TI msp430-gcc howto remove unused symbols without removing...
Rick Kimball could you please update the link in your posting as it does not point to any specific posting anymore. Thanks in advance.
View ArticleForum Post: RE: TI msp430-gcc howto remove unused symbols without removing...
It seems to have been deleted, maybe they fixed it.
View ArticleForum Post: RE: TI msp430-gcc howto remove unused symbols without removing...
[quote user="Rick Kimball"]It seems to have been deleted, maybe they fixed it.[/quote] I wanted to check your posting in the compiler forum first because I ran into a situation where the...
View ArticleForum Post: MSP430G2553 ,ADC10 and WDT Trigger
Hi, I am using MSP430G2553 in my design. I want Watchdog timer to trigger ADC10 Conversion in an interval of 1 msec. I am operating ADC10 in single sequence mode and total number of ADC channels are 4....
View Article