Part Number:MSP430FR2533
what's the version# of this item according to label? Is REV:A stand for version A?
Any difference of version A /B/ C?
Thx!
Part Number:MSP430FR2533
what's the version# of this item according to label? Is REV:A stand for version A?
Any difference of version A /B/ C?
Thx!
Part Number:MSP430F2617
Tool/software: Code Composer Studio
Hello all,
this time i got another tricky question for all of you, wheather one has expirienced this behaviour before :)
We do have a board with a MSP430F2617 and some FRAM attached to it via I2C and a lot other stuff going on, but now after some time in field the following corruption of FRAM ( remember this one is external not internal to the MSP430) did happen.
Some address, always the same, did get overwritten and at first look we did not know why this was happening.
After some investigation now, we found out that indeed the MSP430 is executing an I2C FRAM write command, which was completly unreachable in the
while(1) loop.
So we probed the I2C pins and the Vcc of the MSP430, and around 2 V Vcc ( after shutdown the 3V3 took about 20 ms to drop down to 0 V ) the MSP43ß I2C line is executing a write to exactly the Adress that
gets corrupted in field.
So here is the question to the experts: Have you ever expirienced behaviour like this?
What could be triggering this execution of some rather random code snippet, maybe the program counter is set to a certain value when some brown out happenes?
Note that as a workaround, for example setting the voltage supervisor in hardware to around 2,5V will help, also altering the written code in the while(1) loop, by for example adding another if(flag== blablba){
will also help to get around this problem.
But all those things treat the symptoms and not the root cause i fear, so I would rather prefer some explenation of that phenomenon.
And what does the MSP430 do when reaching the voltage supervisor level, does it halt internally? or shut down? or simply only set a flag, but executes the following codes anyway?
Thanks a lot for reading.
Part Number:MSP430G2332
Hello,
What's laser marking power during logo marking on top of MSP430G2332 IC?
And if customer request for own logo on IC, what's the requirement?
thank you.
Part Number:MSP432P401R
Dear All,
We're trying to use MSP432P401R and the screen Kentec BOOSTXL-K350QVG with ENERGIA and we have some problems depending of the version of Energia and also the computer.
For instance, if we use the last version of Energia 1.8.7E21 there's no library for the screen kentec and it don't work.
For using the Kentec BOOSTXL-K350QVG, we have to use Energia 1.6.10E18 and with some computers, it don't work !! Could you confirm that ??
perso.esiee.fr/.../Energia.html
Thanks for your help and best regards,
Patrick
Part Number:MSP430FR6047
Hello,
What is the difference between the USS and USS_A module? Does this mean there are 2 USS module or only one? USS_A has an extended pulse generator means it is used when we do DUAL tone generation? this is what understood. please update me on this.
regards,
Jadhav
Part Number:MSP432P4111
Hi,
I am attempting to bring up a custom board with an on-board MSP432P4111 but having problems connecting to the DAP. The device is daisy chained with a CC2650, and I have set up a target configuration as shown below.
I have bypassed the CC2650 for now:
And the connection test succeeds (for both JTAG and SWD).
I ran a project-less debug session by launching this target configuration, and I was able to connect to the MSP core and load the program. I could see it had entered the main() function, but as soon as I attempted to step through the target disconnected and stopped working!
Now if I try and connect I get the following error:
I've been through several posts with this error I've found in the forum but I am unable to connect to the target at all, which I don't understand as I was able to connect briefly once. I had included the board configuration file in the program, could this lead to the problems I am seeing?
Why would this happen on a custom board? Is it related to the BSL? In the FAQ I noticed this
Part Number:MSP432P4111
Tool/software: Code Composer Studio
I am totally new to texas instruments, i have recently got this MCU for a project based on gas sensors and i am totally lost. Without the program examples available in simplelink sdk no other programs are getting uploaded on my MCU. I am totally getting hopeless and lost in this ide. Please someone help me with examples or screenshots to connect a sensor in digital pin and achieve some value from the sensor. please. A big thank you in advance.
Part Number:MSP430G2553
Tool/software: Code Composer Studio
HI
I need to store data ( 3 or 4 words maxi ) in non volatile memory of the MSP430G. When some parameters change on my application I need to store them with the user program. (then read them after a power on )
How can do that and to be sure to write these data and to be sure to not over write my user program ? (assume my user program don't use all the range of flash memory)
Regards
Olivier
Part Number:MSP432P401R
Tool/software: Code Composer Studio
how i can add delay for toggle the led pin.
Part Number:MSP430F5529
Tool/software: Code Composer Studio
For MSP430F5529 on ADS1293 EVM board, which software is best suit for writing a new code- Energia or CCS? Can I get a detailed explanation stating why that particular software is better?
How to upload the code? Do I necessarily need a MSP-FET board for uploading or are there any other possible methods?
Part Number:MSP430G2553
Tool/software: Code Composer Studio
Hi,
For below code,am not getting output. Please suggest me what's the error in code.
#include <msp430.h> #include<lcd_header.h> /** * main.c */ void main(void) { WDTCTL = WDTPW + WDTHOLD; // stop watchdog timer lcd_init(); send_command(0x80); send_string("Sri Ram"); send_command(0xC0); send_string("KIT"); while(1){} } #include <msp430g2553.h> #define DR P2OUT = P2OUT | BIT0 // define RS high #define CWR P2OUT = P2OUT & (~BIT0) // define RS low #define READ P2OUT = P2OUT | BIT1 // define Read signal R/W = 1 for reading #define WRITE P2OUT = P2OUT & (~BIT1) // define Write signal R/W = 0 for writing #define ENABLE_HIGH P2OUT = P2OUT | BIT2 // define Enable high signal #define ENABLE_LOW P2OUT = P2OUT & (~BIT2) // define Enable Low signal unsigned int i; unsigned int j; void delay(unsigned int k) { for(j=0;j<=k;j++) { for(i=0;i<=1000;i++); } } void data_write(void) { ENABLE_HIGH; delay(2); ENABLE_LOW; } void data_read(void) { ENABLE_LOW; delay(2); ENABLE_HIGH; } void check_busy(void) { P1DIR &= ~(BIT7); // make P1.7 as input while((P1IN&BIT7)==1) { data_read(); } P1DIR |= BIT7; // make P1.7 as output } void send_command(unsigned char cmd) { check_busy(); WRITE; CWR; P1OUT = (P1OUT & 0x00)|(cmd); data_write(); // give enable trigger } void send_data(unsigned char data) { check_busy(); WRITE; DR; P1OUT = (P1OUT & 0x00)|(data); data_write(); // give enable trigger } void send_string(char *s) { while(*s) { send_data(*s); s++; } } void lcd_init(void) { P2DIR |= 0xFF; P1DIR |= 0xFF; P2OUT &= 0x00; P1OUT &= 0x00; send_command(0x38); // 8 bit mode send_command(0x01); // clear the screen send_command(0x0E); // display on cursor on send_command(0x06);// increment cursor send_command(0x80);// cursor position }
Part Number:MSP-EXP430FR2433
Hello everyone,
I am using the MSP-EXP430FR2433 board along with Energia for a college course in computer design.
Unfortunately I have been having trouble running code to the board as I get a error every time I try to upload, which is the following:
"error: MSP430: Error initializing emulator: No USB FET was found
Failed: MSP430: Error initializing emulator: No USB FET was found
the selected serial port does not exist or your board is not connected"
Things I have tried so far:
Restarts with and without board connected.
Different cable than the one that came with the board.
Reset button on board.
Reinstalled Energia, and the drivers that installed for the board.
Try different USB ports.
Turned off windows defender.
Made sure board showed up in device manager (was under "Ports COM & LPT")
Browsed these forums for an answer
Installed Energia and board on different computer, same issue occurred.
Any help is appreciated, thank you.
Part Number:MSP430FR6989
Tool/software: Code Composer Studio
Hi I am designed a electronic contrl system with MSP430FR6989, The PCB Design satisfaid rules and correct conections are maded, but i can`t program.. y used the MSP-FET. MSP-FETU430UIF and CCS 8.2, i tried 10 systems and nothing... I test with only mps supply and system supply ... can you help me?
System mensage:
Error connecting to the target:
Unknown device
Part Number:MSP430F5529
Tool/software: Code Composer Studio
In MSP430F5529, I am trying to send data through UART, and want to transmit back the data received in RXBUF. But the interrupt is not enabling and i couldn't receive the data back. I tried with TI example code but still the interrupt is not working. It will be so helpful to get some knowledge regarding the receive interrupt part.
Part Number:EVM430-FR6047
We need to measure the flow velocity in a square 60cm channel with open top access, we can place reflectors in the bottom below the transducers. Can the MSP430FR6047 measure velocity in that environment?
Thanks
Part Number:MSP430F6736
Hello,
I want to use accurate time using RTC timer. but I have never considered temperature compensation when I use RTC_C.
So that I checked that RTC time is faster more than expected time approximately 2 seconds a day. (2019.01.29 12:00:00 -> 2019.01.30 11:59:58)
If i can measure temperature data, plz provide me with how to use RTCTCMP register.
If I get a temperature zero degree Celsius, how to use RTCTCMP register?
I can refer to 'ULP Temperature Compensated RTC on MSP430F6736 Degign Guide' (URL: http://www.ti.com/lit/ug/tidu600/tidu600.pdf
Part Number:MSP430F6726
Hi community member,
The following questions about FLL are received from my customers using MSP430F6726.
① What is the fluctuation range due to the 1 bit fluctuation of the MOD bit?
(For the DCO bit, it is described as 2% minimum and 12% maximum with about 8% in 1 step.)
② What is the cycle of the FLL correction operation?
If you know the answer of the above, please tell me.
Best regards.
Cruijff
Part Number:MSP430G2452
Tool/software: Code Composer Studio
Hello, I have a question. I am using the MSP430G2452 with the Launchpad Development board and am trying to practice using the I/O pins. Here is code that is supposed to turn an LED on a breadboard off when the button is pressed:
#include <msp430g2452.h>
// P1.4 is the led
// P1.5 is the button
#define LIGHT BIT4
#define BUTTON BIT5
int main(void)
{
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer
P1DIR |= LIGHT;
P1REN |= BUTTON;
P1OUT |= BUTTON;
while(1){
if((P1IN & BUTTON) == 0X00)
P1OUT |= LIGHT;
else
P1OUT &= ~LIGHT;
}
}What happens, however, is that the whole board will turn off when I press the button, not just the LED. So when I press the button on my breadboard, the device acts as if I just disconnected the device from the computer. Does anybody know or can see why this is happening? Thank you for your time
Part Number:MSP430FR6047
Hello,
I would like o know that does the frequency of transducer affects the power consumption? if yes then How? As we can see in below picture 1 MHz transducer is used.
Regards,
Jadhav
Part Number:MSP430F2617
Tool/software: Code Composer Studio
Hello,
odd things do happen to me these days.
I was playing around with the voltage supervisor, had the following code:
SVSCTL |= 0x60; // 2,5V SVSCTL |= 0x80; // 2,8V SVSCTL |= PORON;
I did not comment out the first line so in aggregation the bits were set to 3,7 V PORON generation,
so of course if i treat my MSP normally with 3,3V the PORON is always set, holding the device in the reset state!!!
I did try the uniflash tool, and different settings in CodeComposer, it will simply not detect my module anymore, could I really brick my device this halarious way?
I thought the JTAG debug interface would recover the device from almost any state.
Maybe someone has an easy answer, or maybe my problem is related to something different.
Thanks a lot.