It is in the Mouse demo of FRDM-KL43-SC-BAREMETAL.exe
The data sheet needs to be updated to either explain what this bit does, or at least mention that it need to be set to '1'.
The default reset values show it defaults to '1' but the text says nothing about it so it is easy to overlook keeping this bit set when setting other bits in the register.
*****************************************************************************
* This function starts the Mouse Application
*****************************************************************************/
void USB_Mouse_Init(void)
{
uint_8 error;
rpt_buf[3] = 0x00; /* always zero */
*((uint_32_ptr)rpt_buf) = 0;
*((uint_32_ptr)null_buf) = 0;
__disable_irq(); /* Global Intterupt disable */
/* old documentation writes setting this bit is mandatory */
USB0_USBTRC0 = 0x40;
NVIC_ICPR = (1 << 24); /* Clear any pending interrupts on USB */
NVIC_ISER = (1 << 24); /* Enable interrupts from USB module */
USB0_CLK_RECOVER_IRC_EN = USB_CLK_RECOVER_IRC_EN_IRC_EN_MASK|USB_CLK_RECOVER_IRC_EN_REG_EN_MASK;
USB0_CLK_RECOVER_CTRL = USB_CLK_RECOVER_CTRL_CLOCK_RECOVER_EN_MASK|USB_CLK_RECOVER_CTRL_RESTART_IFRTRIM_EN_MASK;
/* Initialize the USB interface */
error = USB_Class_HID_Init(CONTROLLER_ID,
USB_Mouse_Callback,
NULL,
USB_Mouse_Param_Callback);
UNUSED(error);
__enable_irq(); /* Global Intterupt enable */
}