Quantcast
Channel: Microcontrollers
Viewing all 215796 articles
Browse latest View live

Forum Post: RE: TMS320F28388D: Flash uncorrectable error occurs when rebooting device after rewriting the bootloader

$
0
0
Hi, Can you show what the disassembly says when trying to reboot? Thanks, Charles

Forum Post: RE: MSPM0L1306: Programing MSPM0L1306SRHB from XDS110

Forum Post: RE: AM2634: How to configure AM2634 in SPI Master and Slave mode and using Interrupt with callback mode

$
0
0
Hi Ajit, I don't have an external loopback example between two McSPI instances with callback mode for both controller (master) and peripheral (slave).

Forum Post: RE: LAUNCHXL2-RM46: Looking to customize firmware of debug probe.

$
0
0
The firmware doesn't support other functions and is limited for debugger only.

Forum Post: RE: MSPM0-SDK: I2C SCL Clock Low Timeout (I2CTIMEOUT_CTL register) count setting.

$
0
0
Hi Dennis, No worries, appreciate you following up on this for me

Forum Post: RE: TMS320F28335: Please Clarify How Multiple HWIs Behave : "Hwi_MaskingOption_SELF"

$
0
0
1. SYS/BIOS masking is at the CPU IER level--meaning INT.x. SYS/BIOS doesn't do any masking at the PIE level. 2. It is possible for stack overflow to occur if you enable nesting. Hwi_MaskingOption_NONE means there's no change to the IER inside the Hwi. The hardware clears IER automatically when an interrupt occurs, but the SYS/BIOS Hwi dispatcher will restore its original value when using Hwi_MaskingOption_NONE. Hwi_MaskingOption_SELF is similar in that it will restore the original value for all bits except the "self" bit. Whitney

Forum Post: RE: AM2432: EQEP - strobe latch configuration

$
0
0
Hi Ariel, if you can send us snipped code it might be helpful Few things to double check - If you're using an interrupt to trigger the latch, make sure the interrupt is being properly triggered and serviced. You can use EQEP_getInterruptStatus() - Also, you can use EQEP_getStatus() to check status register. More details: AM243x MCU+ SDK: EQEP (ti.com) AM243x MCU+ SDK: APIs for EQEP (ti.com) thank you, Paula

Forum Post: RE: TMS320F28388D: TMS320f28388D

$
0
0
Hi Rajkumar, Sorry for the delay, let me take a look at this and reply by tomorrow. Thanks

Forum Post: AM2431: How to handle OSPI0 and OSPI1

$
0
0
Part Number: AM2431 Tool/software: Hi Support Team, I refer you to the following 2 year old thread e2e.ti.com/.../arm-based- microcontrollers-forum/1128180/am2431-ospi-interface-using-multiple-chip-selects-is-not-supported-with-sysconfig I currently have the following question from my customer, is “SW/driver supporting heterogeneous chips” still not supported as per the answer in the above thread? Q. I am trying to configure AM2431(AM2431BSDGHIALVR) with CCS. In SystemConfig, there is OSPI, but I think there are two devices, but I can only select one. (The situation is the same in both Code Composer Studio 12.8.1 and CCS Theia 1.5.1) The following are the main connected devices, but this configuration is not possible. FlashROM: AT25SF321B (SPI connection) EEPROM: BR24T08F (I2C connection) DDR4: 256 M x 16 Gbit Ether: DP83867CSRGZR (RGMII connection, TCP/IP) USB: 2.0 High Speed (CDC) Own device: MKYxx (QuadSPI connection) When configured to use FlashROM, OSPI is automatically used and the interface to the in-house device cannot be configured. Can't I use OSPI0 and OSPI1? Or is it not possible to configure FlashROM to use SPI instead of OSPI? (Is the only way left is to write SPI code in solid form without using FlashROM?) Please let me know how I can achieve the above configuration at this time. Best Regards, Kanae

Forum Post: RE: TMS320F28P650DK: The questions of F28388D migration.

$
0
0
Hi, [quote userid="114524" url="~/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1421603/tms320f28p650dk-the-questions-of-f28388d-migration"]There has no Peripheral Configuration Register(PERCNF1) in F28P65x, does it mean internal PHY is always present for USB_A module?[/quote] Yes, that was the case on F28388 also. I'll assign it to other expert to reply on flash related query. Vivek Singh

Forum Post: RE: MSP-EXP430FR5994: Cannot get any of the UART examples to work

$
0
0
I am running echo. FWIW, I have an MSP-EXP430FR2443 at home which I just ran the same UART Introduction Lab successfully on. The FR5994 is at work. So I'm gonna take this FR2443 to work tomorrow, to see if it works on the work computer. And then I'll probably bring the FR5994 home and retry it here, since the FR2443 works fine.

Forum Post: RE: TMS320F28379D: TMS320F28379D

$
0
0
Hi, I apologize for the delay, I will have to get back to you towards the end of this week. Best Regards, Ben Collier

Forum Post: RE: TMS320F28379D: TMS320F28379D

Forum Post: RE: LAUNCHXL-F28P65X: Test Connention -> An error occurred while soft opening the controller

$
0
0
Hi, You will need to use XDS110 with this board. I recommend that you use the examples located at C:\ti\c2000\C2000Ware_5_02_00_00\driverlib\f28p65x\examples\ Also, if you are getting started with C2000, I recommend that you look at C2000 Academy and go through some of the labs: https://dev.ti.com/tirex/explore/node?node=A__AEIJm0rwIeU.2P1OBWwlaA__C28X-ACADEMY__1sbHxUB__LATEST Best Regards, Ben Collier

Forum Post: RE: TMS320F28027F: Load Program Error, load failed !

$
0
0
Hi, I apologize for the delay, I will have to get back to you towards the end of this week. Best Regards, Ben Collier

Forum Post: RE: TMDSCNCD280025C: How to run Simulink's Monitor & Tune with TMDSCNCD280025C controlCARD

$
0
0
Hi, I apologize for the delay, I will have to get back to you towards the end of this week. Best Regards, Ben Collier

Forum Post: RE: MSPM0C1104: Reading data from a specific memory location using __attribute__((section(".")));

$
0
0
Hello Santhosh, 1). Stack is a part of SARM which is the bottom of SRAM. If you want to store data in stack directly, you can try to use the pointer which I have mentioned before. 2). But why you want to store a permanent value in stack directly? Stack is used to store the data such as local variables and return addresses, etc. If you store an unrelated data, it may affect the usage of stack. 3). Why don't you choose another region of SRAM to store the data? Best Regards, Janz Bai

Forum Post: RE: MCU-PLUS-SDK-AM243X: Boot start issues

$
0
0
Hi Linjun When debugging, I encountered the following situation: due to an exception, it entered the abort mode. After waiting for a while, it started in UART boot mode. The content captured is as follows, please help me analyze this. e2e.ti.com/.../am64x_5F00_r5_5F00_log.txt e2e.ti.com/.../am64x_5F00_r5_5F00_trace.txt Please note that the data has been reformatted as '.bin'. Jimmy

Forum Post: RE: TMS320F280039C: LAUNCHXL-F280039C Set the MCAN to classic CAN issue

$
0
0
HI QJ, After verification, I found that the interrupt for group 9 is cleared after entering the interrupt service routine for the first time, but the program still only enters the interrupt service once. Could you also kindly review the provided code to check if there are any other configuration issues? Thank you for your help! BR, Allen

Forum Post: RE: TMS320F280039C: LAUNCHXL-F280039C Set the MCAN to classic CAN issue

Viewing all 215796 articles
Browse latest View live