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.

IWRL6432BOOST: MMWave_init() function hangs

Part Number: IWRL6432BOOST

Tool/software:

Hello,

CCS: Version: 12.7.1.00001 

SDK MMWAVE_L_SDK_05_04_00_01

IWRL6432BOOST PROC117 Rev.B

I'm just working on building an application from scratch using the various APIs available in the SDK. I'm following the mmWave API documentation and stuck on the first step, initialising the module!

Debugging the code shows that it hangs at rl_mmWaveLinkInit(). The debugger stops at the line above this in mmwave_link_xWRLx4xx.c, pressing Step In doesn't do anything, it won't progress any further. No errors are reported back, the application just endlessly hangs.

MMWave_init()

MMWave_initLink()

MMWave_initMMWaveLink()

rl_mmWaveLinkInit()


Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include "ti_drivers_config.h"
#include "ti_drivers_open_close.h"
#include "ti_board_open_close.h"
/* mmWave SDK Include Files: */
#include <control/mmwave/mmwave.h>
/* Global Variable: This is the handle to the mmWave module */
MMWave_Handle gMMWaveHandle;
void empty_main(void *args)
{
/* Open drivers to open the UART driver for console */
Drivers_open();
Board_driversOpen();
int32_t err = 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Thanks