while (1)
{
/* USER CODE END WHILE */
MX_USB_HOST_Process();
delay_ums(1);
a++;
if(a>1000)
{
a=0;
USBH_CDC_Transmit(&hUsbHostFS, "AT\r\n", strlen("AT\r\n"));
}
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}
/**
* @brief This function is executed in case of error occurrence.
* @retval None
*/
void Error_Handler(void)
{
/* USER CODE BEGIN Error_Handler_Debug */
/* User can add his own implementation to report the HAL error return state */
#ifdef USE_FULL_ASSERT
/**
* @brief Reports the name of the source file and the source line number
* where the assert_param error has occurred.
* @param file: pointer to the source file name
* @param line: assert_param error line source number
* @retval None
*/
void assert_failed(uint8_t *file, uint32_t line)
{
/* USER CODE BEGIN 6 */
/* User can add his own implementation to report the file name and line number,
tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
/* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */