Hi @peter_shi,
According to your screenshots FreeMASTER successfully connects the target. What happens in your case is that FreeMASTER Driver is configured for UART communication, but you try to connect to the board using BDM. Although BDM does not require specific configurations, it has a limited functionality thus the host application (GUI) does not work as you would expect. I would recommend to use PD-BDM communication that is a superset of the "raw" BDM. It would require the following:
1. On the embedded project - configure FreeMASTER Driver to use PD-BDM
#define FMSTR_DISABLE 0 /* To disable all FreeMASTER functionalities */
#define FMSTR_USE_LPUART 0 /* To select LPUART communication interface */
#define FMSTR_USE_FLEXCAN 0 /* To select FlexCAN communication interface */
#define FMSTR_USE_PDBDM 1 /* To select Packet Driven BDM communication interface (optional) */
2. On the FreeMASTER (desktop) project - make sure to select PD-BDM option in the BDM configuration (for conection instructions refer to the documentation available in "C:\NXP\FreeMASTER 3.2\FreeMASTER\plugins\bdm\doc\pdbdm").
Hope it helps,
Iulian