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.

IWR1843BOOST: Issue on writing GPIO_2

Part Number: IWR1843BOOST
Other Parts Discussed in Thread: IWR1843

Hi Teams,

If I insert a line statement regarding on GPIO_write() then the IWR1843BOOST board did not work, why?

Th sample codes as followings,

void MRR_MSS_mssProcessDataPathTask(UArg arg0, UArg arg1)

{

/**********************************************************************

* Setup the PINMUX:

* - GPIO Output: Configure pin K13 as GPIO_2 output

**********************************************************************/

Pinmux_Set_OverrideCtrl(SOC_XWR18XX_PINK13_PADAZ, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL);

Pinmux_Set_FuncSel(SOC_XWR18XX_PINK13_PADAZ, SOC_XWR18XX_PINK13_PADAZ_GPIO_2);

/**********************************************************************

* Setup the DS3 LED on the EVM connected to GPIO_2

**********************************************************************/

GPIO_setConfig (SOC_XWR18XX_GPIO_2, GPIO_CFG_OUTPUT);

GPIO_write(SOC_XWR18XX_GPIO_2, 1); // if insert this line here seems not work

...

}

2. The working environment as followings,

   - CCS 8.3.1

   - SDK 3.2.0.4

   - AutoMotive Toolbox 3.4.0

   - Project Lab 11 MRR BeamSteering

   - IWR1843BOOST

Regards,

Kevin