This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHXL-F2800137: TMS320F2800137

Part Number: LAUNCHXL-F2800137
Other Parts Discussed in Thread: LAUNCHXL-F280049C, C2000WARE

Tool/software:

Hi,

I'm attempting to program the F2800137 and F280049 development boards using an LED example. I've connected the development kit to my computer via USB and selected XDS110. The code is building successfully, but when I try to debug and program the boards, I receive the following error message. This issue is occurring with both development boards, so I must be missing something.

Can you please let me know what can be the problem and how can I solve it.

Thanks,
Saeid

  • Hi,

    The snapshot you have attached is not an error. Could you please help attach the snippet of the error you mention? 

    Thanks & Regards

    Pramod

  • For a long time, it has been displaying this message without any programming, and nothing is happening.
    Actually there is no error and when I discount the board from computer it shows the error.

  • Can you please let me know what can be the problem and how can I solve it.

    Hi Saeid,

    I do not see any error message you are referring to. The output you have screenshotted means you have been able to successfully load a RAM file.

    Best,

    Ryan Ma

  • Hi Ryan,

    Thank you for your prompt reply. I am not receiving any errors, but after programming, the LED does not blink. However, I was able to program it using Matlab and the LED is blinking. I chose the correct pin based on the Launchpad document. What could be the problem here? Additionally, I loaded the PWM example, but I do not see a PWM signal in the output as well. It seems successful I can load the RAM file but it does not work!

  • Hi Saeid,

    Can you screenshot me the exact procedures you're following to load the program without MatLab?

    Is there a syscfg file attached to the project? If so, can you verify that the correct GPIOs are being used for the LEDs?

    Best,

    Ryan Ma

  • Hi Ryna,

    I am using LAUNCHXL-F280049C, I want to load following example. 
    C:\ti\C2000Ware_5_02_00_00\device_support\f28004x\examples\led.

    As I checked based on the Lunchpad document GPIO 23 and 34 are for LEDS. so i the program I changed GPIO to both 34 and 23.
    Then I build and debug it!
    and nothing happens.

    I couldn't see syscfg file.
    Please let me know if you need more information to answer to solve this problem.

    Thanks

    //#############################################################################
    //
    // FILE:   led_ex1_blinky.c
    //
    // TITLE:  LED Blinky Example
    //
    //! \addtogroup bitfield_example_list
    //! <h1> LED Blinky Example </h1>
    //!
    //! This example demonstrates how to blink a LED.
    //!
    //! \b External \b Connections \n
    //!  - None.
    //!
    //! \b Watch \b Variables \n
    //!  - None.
    //!
    //
    //#############################################################################
    //
    //
    // $Copyright:
    // Copyright (C) 2024 Texas Instruments Incorporated - http://www.ti.com/
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions
    // are met:
    //
    //   Redistributions of source code must retain the above copyright
    //   notice, this list of conditions and the following disclaimer.
    //
    //   Redistributions in binary form must reproduce the above copyright
    //   notice, this list of conditions and the following disclaimer in the
    //   documentation and/or other materials provided with the  
    //   distribution.
    //
    //   Neither the name of Texas Instruments Incorporated nor the names of
    //   its contributors may be used to endorse or promote products derived
    //   from this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    // $
    //#############################################################################

    //
    // Included Files
    //
    #include "F28x_Project.h"

    //
    // Defines
    //
    #define DEVICE_GPIO_PIN_LED1    34

    //
    // Main
    //
    void main(void)
    {
        //
        // Initialize device clock and peripherals
        //
        InitSysCtrl();

        //
        // Initialize GPIO and configure the GPIO pin as a push-pull output
        //
        InitGpio();
        GPIO_SetupPinMux(DEVICE_GPIO_PIN_LED1, GPIO_MUX_CPU1, 0);
        GPIO_SetupPinOptions(DEVICE_GPIO_PIN_LED1, GPIO_OUTPUT, GPIO_PUSHPULL);

        //
        // Initialize PIE and clear PIE registers. Disables CPU interrupts.
        //
        DINT;
        InitPieCtrl();
        IER = 0x0000;
        IFR = 0x0000;

        //
        // Initialize the PIE vector table with pointers to the shell Interrupt
        // Service Routines (ISR).
        //
        InitPieVectTable();

        //
        // Enable Global Interrupt (INTM) and realtime interrupt (DBGM)
        //
        EINT;
        ERTM;

        //
        // Loop Forever
        //
        for(;;)
        {
            //
            // Turn on LED
            //
            GPIO_WritePin(DEVICE_GPIO_PIN_LED1, 0);

            //
            // Delay for a bit.
            //
            DELAY_US(500000);

            //
            // Turn off LED
            //
            GPIO_WritePin(DEVICE_GPIO_PIN_LED1, 1);

            //
            // Delay for a bit.
            //
            DELAY_US(500000);
        }
    }

    //
    // End of File
    //
  • Hi Saeid,

    I am able to run this same exact code, and I see the LED blinking on my launchpad.

    Can you set a breakpoint at the line? Does the LED turn on? Does it reach here?

            //
            // Turn on LED
            //
            GPIO_WritePin(DEVICE_GPIO_PIN_LED1, 0);

    Best,

    Ryan Ma

  • Thanks Ryan, It is working now.