I'm trying to run Virtual_COM_Port from STM32_USB-FS-Device_Lib_V4.0.0. I'm using IAR 7.3. Everything buld ok, but not run usb. I started use debugger. In the function
void USB_Init(void)
{
pInformation = &Device_Info;
pInformation->ControlState = 2;
pProperty = &Device_Property;
pUser_Standard_Requests = &User_Standard_Requests;
/* Initialize devices one by one */
pProperty->Init();
}
on line pProperty = &Device_Property; the debugger jumps to the exception handler HardFault_Handler. What could be the problem? Problem whith IAR or some settings?