Forum Post: RE: MSP432 Copy Code from One project to another project.
Thanks a lot, That is the problem.
View ArticleForum Post: RE: MSP432 Red Launchpad using new Driverlib I2C problem
I found the problem. The MSP432 was going to this LPM: MAP_Interrupt_enableSleepOnIsrExit(); MAP_PCM_gotoLPM0InterruptSafe(); I changed this to: MAP_PCM_gotoLPM0(); And the I2C Interrupt was working...
View ArticleForum Post: RE: Storing constants in msp430g2553
Where in memory will these values be stored? Is such a declaration effcient?
View ArticleForum Post: MSP432 GPIO Interrupt priority problem
Hi, i declared two GPIOs to handle interrupt: MAP_GPIO_setAsInputPin(GPIO_PORT_P4, GPIO_PIN1); MAP_GPIO_setAsInputPin(GPIO_PORT_P5, GPIO_PIN1); MAP_GPIO_clearInterruptFlag(GPIO_PORT_P4, GPIO_PIN1);...
View ArticleForum Post: RE: MSP432 Copy Code from One project to another project.
Hi Ryan, I am confused by the interrupt IRS enabling in the start up file.. Here is the I2C driver code I used and it is working for me.(From " BOOSTXL-EDUMKII _LightSensor_ MSP432P401R " example) 2...
View ArticleForum Post: RE: MSP430 is not programming using MSP-FET
hi Jace, Thanks for the reply. I Want to use python application using USB to load the application firmware. How i can upload BSL if it is corrected ? My test board has JTAG and USB connection. For...
View ArticleForum Post: RE: USB code for multiple data byte handling
Can i can first call the API to get the datasize available and then call again with datasize i receive in previous call? Ex. call API to read 5 bytes since my 5th byte is datasize available. i.e....
View ArticleForum Post: MSP432 i2c_driver.c IRQ not working for me
Hi Everyone, I am trying to following I2C example code from " BOOSTXL-SENSORS _SensorGUI_ MSP432P401R " to get my I2C working.(Code attached) Below is my code for calling the I2C_driver.c. It got stuck...
View ArticleForum Post: RE: USB Communication
Hi Arthi, Thanks for descriptive reply. Yes you right, the MSP430 USB module has seven non-EP0 IN endpoints available so only 3 devices can be connected with USB Descriptive Tool. But in my case, I...
View ArticleForum Post: RE: MSP432 PORT3 PIN0 doesnt tend high, even if register tells so
What is the value of the P3SEL1 bit0? If it is high and the P3DIR is also high, then the output is DVSS. Regards, Chris
View ArticleForum Post: RE: RF430FRL152H Level Translator Circuit
I checked slau607. I am pretty sure that this can be done only by one TXB chip, but you can follow TI solution presented on fig.21. However, or schematic lvc125 (translator) gates are powered by 1.5V,...
View ArticleForum Post: RE: USB Communication
You don't need any dll. CDC working as standard serial port, with open / read / write / close file functions on Win / Linux / OS X.
View ArticleForum Post: RE: USB Communication
Khyati, are you trying to create a HUB device from the USB stack? The stack only supports CDC, HID and MSC type devices. It does not have support for HUB devices. You can, of course, connect the CDC...
View ArticleForum Post: RE: Program msp430FR5739 using msp430f5529 launchpad board
Hi Phillip, The MSP430F5529 LaunchPad has an onboard eZ-FET Lite emulator, as discussed in Section 2.2.2 of the LaunchPad User's Guide . See Section 2.5 for more details about how to use this emulator...
View ArticleForum Post: New MSP-FET - How should it appear on CCS6 ?
I have been successfully using a Blackhawk XDS100v2 for MSP432 development on CCS6. I am trying to get a MSP-FET working, and it does not appear to show up on the list of options when I setup project...
View ArticleForum Post: issue with cgt 7.4.15
Hi, I have a code that does not work with CCSv6 CGT 7.4.15 but works with CCSv6 CGT 8.1.1. I don't get any error from CCSv6 but the output I get from CCSv6 CGT 7.4.15 is not the expected output I want...
View ArticleForum Post: I2C sends repeated start instead of stop in Read command
I'm building an I2C function to read slave devices in the next format: Start > Address Slave + W > A > Register> A> Repeated Start> Address Slave + R > A > DATA > NACK >...
View ArticleForum Post: RE: USB code for multiple data byte handling
Hi Arthi, Thanks for the reply and suggestions. Nitesh
View ArticleForum Post: MSP430FR5994: LEASC busy?
I've been using the MSP430FR5994 to construct a primitive spectrum analyzer around msp_cmplx_fft_auto_q15() . I'm using the FR5994 Launchpad, the K350 LCD Booster Pack, CCS 6.1.3, and DSPLib...
View ArticleForum Post: RE: MSP430F6726 IPN : SD24B (ADC) interrupt is getting disabled...
Hi Ryan, Thanks for the quick reply. I will follow the code examples you suggested. Regards, Vivek
View Article