Forum Post: TRF7970ABP with MSP-EXP430F5529LP Uniflash .ccxml and .out
If you are trying to use the TRF7970ABP with MSP-EXP430F5529LP, the instructions here http://www.ti.com/lit/ml/slab069/slab069.pdf have everything correct except one major thing.The correct .ccxml and...
View ArticleForum Post: What should XCLKOUT be on unprogrammed F28335
I am bringing up a new board with an F28335 with a 30MHz crystal. The crystal is producing a 30MHz signal. I have not been able to connect to it with CCS (I will make a separate post on that) and...
View ArticleForum Post: RE: Has Anyone Got Elprotronic's FlashPro430 to work with IAR's...
I forgot to post my solution for why, in my case, the FlashPro430 JTAG was not working with IAR:My MSP430F2274 Spy-Bi-Wire setup included a custom programming board which included a 330ohm resistor...
View ArticleForum Post: RE: How to implement a C code into tms320f28335 dsp using CCS V5
By default the pins are general purpose inputs. No configuration is needed for inputs, you can just read the appropriate GPxDAT register bit. To change the pin to a general purpose output all you have...
View ArticleForum Post: RE: DRV8312 Output Wave Forms
Paul,120 kHz is unnecessary for InstaSPIN-FOC. Even with nearly 0 inductance motors we get excellent performance with 60 kHz maximum, and 45 KHz usually does nearly as well. The teeeeny tiny little...
View ArticleForum Post: RE: microSD for MSP430F5438A
Now that you mention it... IIRC you need to read the register for supported operating voltages before proceeding. Which does not exist on SDSC or MMC cards.And I totally missed the UCB3/UCB0 typo.I too...
View ArticleForum Post: LM3S8971 ADC SSO sample FIFO errata or bad Simulator behavior?
Reading sampled data from sequencer SS0-FIFO(1-3) cause sampling of data on SS0-FIFO-0 when the trigger for any alternate sample sequencer 1-3 is configured (ADC_TRIGGER_PROCESSOR). SS0 FIFO-0 is...
View ArticleForum Post: RE: Doubt on switches in Tiva Launchpad
Thanks for the reply. I used the code as you gave, and obtained the ouput. This is the code which i useduint32_t ui32PinData; while(1) { ui32PinData = GPIOPinRead(GPIO_PORTF_BASE,GPIO_PIN_0);...
View ArticleForum Post: RE: I2C communication AND Serial Communication using MSP430...
The MSP does not have any OS that handles output or input. You'll have to write this code on your own (or link a library into your project that offers this).However, CCS offers a way to intercept the...
View ArticleForum Post: RE: Problem with I2C in SHT25 sensor
Ah, now I jus tnoticed something:you have mixed-up UCB0 and UCB1. Check your register writes, you're reading the wrong registers sometimes.To which physical pins did you connect the slave?
View ArticleForum Post: RE: A suggestion to TI employees with regards to GUI for the...
[quote user="Jens-Michael Gross"]DC voltage and current happen when there is a DC offset on the inputs. Either a real offset relative to earth potential, or an offset in the virtual GND level of the...
View ArticleForum Post: RE: MSP 430 + CC2560
[quote user="Ilmars"]Application circuit tells that this sensor does not digitize anything but have CCD _analog_ output instead. [/quote]I was reading something like 'register transfer clock' and for...
View ArticleForum Post: can not implement custom pre_init.c using _system_pre_init()
I've read all through these forums about the issue that I'm having. The watchdog timer is expiring and resetting the micro before my main loop is ever reached. I've attempted to disable the watchdog...
View ArticleForum Post: RE: I2C communication problem in MAP430F5438A
You should not use arithmetic addition operator (+) for combining bits. The compiler won't complain as it treats both as numbers, but depending on the operands, '+' and '|' (the binary OR operator)...
View ArticleForum Post: InstaSPIN for 3-ph stepper
I've been playing with a 3-ph Stepper (50 poles, 80V+ capable) and DRV8301-69M-KIT @ 50VbusI can run at < 1 Hz, with 0 speed command full holding torque, and nearly instantaneous full speed...
View ArticleForum Post: RE: HVMotorCtrl Kit based board seeing spurious trips!
Anup,In your code do you have the PWMDAC routine? because that routine is called after Devinit and it does configure the GPIO'sCan you also confirm that you checked the GpioRegister configuration...
View ArticleForum Post: RE: Add eZ430 Chronos with Bluetooth
[quote user="mirron panicker"] i just want to know is it possible for me to send messages when a button of EZ430 is pressed through programmed??[/quote]Sure it is possible to send a message on a button...
View ArticleForum Post: RE: Blink_LED
You aren't writing an initial state to P1OUT so the state of P1OUT will be the same as when you powered down the board. In the user's guide (http://www.ti.com/lit/ug/slau144j/slau144j.pdf pg.333)...
View ArticleForum Post: RE: What should XCLKOUT be on unprogrammed F28335
Dave,Yes this is the answer I was hoping for.Thanks very much for looking into this. Now I can move on to figuring out why I can't connect..Regards, Scott
View ArticleForum Post: RE: Tiva SDA held low
Apparently I posted too soon. I found this recommendation by Dave Wilson in regards to bus hangs."I've found that the slave peripheral can sometimes be stuck in a state where it holds SDA low because...
View Article