Forum Post: RE: CCS/MSP430FR2633: pragma vector timer routine issue
Pretty much your entire program is executed in a timer ISR. Since you haven't turned off the timer (TA1) and you re-enable interrupts, this "program" will restart every 550 microseconds. My guess is...
View ArticleForum Post: RE: CCS/MSP430F5359: Calling function inside interrupt
To answer your question: Declare your function with the "inline" keyword, something like: > static inline void SomeFunction(void) {somestuff;} Of course it doesn't have to be "void" but I do...
View ArticleForum Post: RE: F28M35H52C: TZCLRM Register Description
Disona, I don't have a good reason why you would want to mirror TZCLR. To the best of my knowledge TZCLRM does not shadow TZCLR, it is a true mirror. TZCLR writes take effect immediately. If you would...
View ArticleForum Post: RE: CCS/MSP430G2553: DC Motor not running for the below program
Your Delay function looks OK as far as it goes -- it delays for 10usec (actually more like 20us) for each count (Delay(5)->(5*10usec) delay.) Is that what you intended? It's less clear to me what...
View ArticleForum Post: RE: TM4C123GH6PM: Setting up SYSCTL_RCGC2_R to initialize GPIO Port
Hi Charles, Thank you very much for your explanation. Now I understand that SYSCTL_RCGC2_R register is located at address 0x400FE108. Just to confirm, so if I want to use bit-specific addressing for...
View ArticleForum Post: RE: CCS/TMS320F28035: SCI communication two F28035
User5803443, Note that the standard controlCARD and the isolated controlCARD are different with respect to the standard controlCARD includes a transceiver while the isolated controlCARD does not....
View ArticleForum Post: RE: TMS320F28069: CLA not working when boot from flash
I had to change my data that I allocated as "cla1dataram1" as "Cla1ToCpuMsgRAM", and then my code runs. I really would like to know what my code does not run when I allocated variables for use only by...
View ArticleForum Post: MSP430FR5969: MSP430 SMbus library bit shifting
Part Number: MSP430FR5969 Team, One of my customers is using MSP430FR5969 with BQ40z50 . the question is to why MSP430 SMbus library shifts the address when its sent, I have noticed that the is some...
View ArticleForum Post: RE: TMS320F28235: "function call will not return problem" solved...
Ozino, This problem always happens on one of the two parameters of CPU timer configuration function call. Whatever data you passed in using "Float". I asked them to update CCS and code generation tools...
View ArticleForum Post: RE: CCS: About TMS570LS0914 Interrupt
I just put forward this idea and looked for ways to solve my problem, so I haven't thought about RTOS yet
View ArticleForum Post: RE: RTOS/EK-TM4C1294XL: http server file load failed
Hi Charles Thanks for your response. I tried, but still occur failed. And I also tried increased other parameter(TaskStackSize, ndkThreadPri, ndkThreadStackSize, net SchedulePri, pktNumFramebufs,...
View ArticleForum Post: RE: RTOS/MSP432P401R: What is the input frequency of BCLK when...
Chris, In this example project of RTC, BCLK = LFXTCLK. However, why to make LFXTCLK = 32000Hz?
View ArticleForum Post: MSP430I2040: MSP-EXP430F5529LP cannot detect as HID when using...
Part Number: MSP430I2040 TI Team, We are using the MSP-EXP430F5529LP as HID Bridge for Energy Monitoring DC as described in the following link....
View ArticleForum Post: RE: MSP430F5529: MSP430F5529: mdio waveform looks not correct
Hi Geet, Is it caused by different environment we use? The OS of my computer is win7 64bits, usb version is 3.0. I'm sure I did everything according to the USB-2-MDIO Software Tool User's Guide...
View ArticleForum Post: MSP432P401R: The way to change the parameters in driverlib
Part Number: MSP432P401R Hi e2e, I want to use MSP432P401R without an external inductor when using FreeRTOS. And I change all the parameters(.activeState) as bellow to use LDO mode instead of DCDC...
View ArticleForum Post: RE: TMS320F28379D: Errors when trying to build the program from...
Hi Sam, I see from snap, the untitled model is running (Left snap - at the bottom shows running)? Make sure none of the other applications are actively connected to board including CCS. Try restarting...
View ArticleForum Post: RE: MSP430F2252: PMP8740 - Embedded Software.
Dear Roberto. Thanks for information. Please try to ask questions #2 & #3 internal..if possible... Thanks and Regards, Vijay Shinde
View ArticleForum Post: RE: TMS320F28335: Serial communication not happening unless...
Hello Ken, I am using TMS320F28335 microcontroller and it is not a experimenter's kit, we have made our own pcb.
View ArticleForum Post: RE: MSP432E401Y: USB Not Connecting to Computer
I looked through my device manager and I could not see any new changes from connecting to the otg-USB. All I receive are the two XDS110 ports when I try to power through the jtag-USB. No unknown...
View ArticleForum Post: RE: CCS: CONNECTING USB on F28379D controlCARD
Hi Cody, 3.1 Warnings/Notes/Errata Notes for all controlCARDs: Delfino TMS320F28379D controlCARD R1.3 User's Guide SOmehow it is not possible to get my PC and Code Composer to talk to the card. I am...
View Article