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.

MDL-LM4F211CNCD User's Manual

Other Parts Discussed in Thread: DRV8301

Dear TI team,

could you please check the pages 9 and 10 of the attached user's manual for the controlCARD MDL-LM4F211CNCD?

(I downloaded this file 3 weeks ago but can not find it online anymore).

I guess, these pages describe the GPIOs of the controlCARD MDL-LM3S818CNCD and not of the MDL-LM4F211CNCD.

6740.MDL-LM4F211CNCD_UM.pdf

  • Waldemar, thanks for pointing this out. Here is the correct Excel sheet. We will be updating the manual shortly and will post that revision soon.

    Respectfully5327.connector-pinout.xls,

    Joe

  • Hello, Joe,

    thank you very much for this file!

    Actually, I'm using the baseboard DRV8301EVM and the controlCARD MDL-LM4F211CNCD.

    Im trying to enable the DRV8301 but can not scope any EN_GATE signal on the baseboard.

    Here is my code:

    #include "inc/hw_memmap.h"
    #include "inc/hw_types.h"
    #include "driverlib/rom.h"
    #include "driverlib/fpu.h"
    #include "driverlib/debug.h"
    #include "driverlib/gpio.h"
    #include "driverlib/sysctl.h"
    #include "driverlib/pin_map.h"
    #include "utils/uartstdio.h"
    #include "inc/lm4f211h5qr.h"

    #ifdef DEBUG
    void
    __error__(char *pcFilename, unsigned long ulLine)
    {
    }
    #endif

    int
    main(void)
    {
        ROM_SysCtlClockSet(SYSCTL_SYSDIV_10 | SYSCTL_USE_PLL | SYSCTL_XTAL_16MHZ | SYSCTL_OSC_MAIN);

        ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOB);
        ROM_GPIOPinConfigure(GPIO_PB3_T3CCP1);
        ROM_GPIOPinTypeGPIOOutput(GPIO_PORTB_BASE, GPIO_PIN_3);    // PB3(2) -> EN_GATE
        ROM_GPIOPadConfigSet(GPIO_PORTB_BASE, GPIO_PIN_3, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD_WPU);
        ROM_GPIOPinWrite(GPIO_PORTB_BASE, GPIO_PIN_3, 0x08);

        while(1)
        {
        }

    }

    Could you please tell me what is wrong?

  • Sorry, the issue is closed. Thank you.

    My scope probe was defekt.