main.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : main.c
  5. * @brief : Main program body
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* USER CODE END Header */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "main.h"
  22. #include "cmsis_os.h"
  23. /* Private includes ----------------------------------------------------------*/
  24. /* USER CODE BEGIN Includes */
  25. #include "tusb.h"
  26. #include "ide_async.h"
  27. /* USER CODE END Includes */
  28. /* Private typedef -----------------------------------------------------------*/
  29. /* USER CODE BEGIN PTD */
  30. /* USER CODE END PTD */
  31. /* Private define ------------------------------------------------------------*/
  32. /* USER CODE BEGIN PD */
  33. /* USER CODE END PD */
  34. /* Private macro -------------------------------------------------------------*/
  35. /* USER CODE BEGIN PM */
  36. /* USER CODE END PM */
  37. /* Private variables ---------------------------------------------------------*/
  38. RTC_HandleTypeDef hrtc;
  39. UART_HandleTypeDef huart2;
  40. PCD_HandleTypeDef hpcd_USB_OTG_HS;
  41. /* Definitions for tinyusb */
  42. osThreadId_t tinyusbHandle;
  43. const osThreadAttr_t tinyusb_attributes = {
  44. .name = "tinyusb",
  45. .stack_size = 1024 * 4,
  46. .priority = (osPriority_t) osPriorityNormal,
  47. };
  48. /* Definitions for ide */
  49. osThreadId_t ideHandle;
  50. const osThreadAttr_t ide_attributes = {
  51. .name = "ide",
  52. .stack_size = 1024 * 4,
  53. .priority = (osPriority_t) osPriorityNormal,
  54. };
  55. /* USER CODE BEGIN PV */
  56. /* USER CODE END PV */
  57. /* Private function prototypes -----------------------------------------------*/
  58. void SystemClock_Config(void);
  59. static void MX_GPIO_Init(void);
  60. static void MX_RTC_Init(void);
  61. static void MX_USART2_UART_Init(void);
  62. static void MX_USB_OTG_HS_PCD_Init(void);
  63. void tinyusb_task(void *argument);
  64. void ide_task(void *argument);
  65. /* USER CODE BEGIN PFP */
  66. /* USER CODE END PFP */
  67. /* Private user code ---------------------------------------------------------*/
  68. /* USER CODE BEGIN 0 */
  69. #ifdef DEBUG
  70. int _write (int fhdl, const void *buf, size_t count) {
  71. uint8_t const* buf8 = (uint8_t const*) buf;
  72. for(size_t i=0; i<count; i++) {
  73. ITM_SendChar(buf8[i]);
  74. }
  75. return count;
  76. }
  77. #endif
  78. /* USER CODE END 0 */
  79. /**
  80. * @brief The application entry point.
  81. * @retval int
  82. */
  83. int main(void)
  84. {
  85. /* USER CODE BEGIN 1 */
  86. /* USER CODE END 1 */
  87. /* MCU Configuration--------------------------------------------------------*/
  88. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  89. HAL_Init();
  90. /* USER CODE BEGIN Init */
  91. /* USER CODE END Init */
  92. /* Configure the system clock */
  93. SystemClock_Config();
  94. /* USER CODE BEGIN SysInit */
  95. #ifdef DEBUG
  96. setvbuf(stdout, NULL, _IONBF, 0); // disable stdout buffering
  97. #endif
  98. /* USER CODE END SysInit */
  99. /* Initialize all configured peripherals */
  100. MX_GPIO_Init();
  101. MX_RTC_Init();
  102. MX_USART2_UART_Init();
  103. MX_USB_OTG_HS_PCD_Init();
  104. /* USER CODE BEGIN 2 */
  105. /* USER CODE END 2 */
  106. /* Init scheduler */
  107. osKernelInitialize();
  108. /* USER CODE BEGIN RTOS_MUTEX */
  109. /* add mutexes, ... */
  110. /* USER CODE END RTOS_MUTEX */
  111. /* USER CODE BEGIN RTOS_SEMAPHORES */
  112. /* add semaphores, ... */
  113. /* USER CODE END RTOS_SEMAPHORES */
  114. /* USER CODE BEGIN RTOS_TIMERS */
  115. /* start timers, add new ones, ... */
  116. /* USER CODE END RTOS_TIMERS */
  117. /* USER CODE BEGIN RTOS_QUEUES */
  118. /* add queues, ... */
  119. /* USER CODE END RTOS_QUEUES */
  120. /* Create the thread(s) */
  121. /* creation of tinyusb */
  122. tinyusbHandle = osThreadNew(tinyusb_task, NULL, &tinyusb_attributes);
  123. /* creation of ide */
  124. ideHandle = osThreadNew(ide_task, NULL, &ide_attributes);
  125. /* USER CODE BEGIN RTOS_THREADS */
  126. /* add threads, ... */
  127. /* USER CODE END RTOS_THREADS */
  128. /* USER CODE BEGIN RTOS_EVENTS */
  129. /* add events, ... */
  130. /* USER CODE END RTOS_EVENTS */
  131. /* Start scheduler */
  132. osKernelStart();
  133. /* We should never get here as control is now taken by the scheduler */
  134. /* Infinite loop */
  135. /* USER CODE BEGIN WHILE */
  136. while (1)
  137. {
  138. /* USER CODE END WHILE */
  139. /* USER CODE BEGIN 3 */
  140. }
  141. /* USER CODE END 3 */
  142. }
  143. /**
  144. * @brief System Clock Configuration
  145. * @retval None
  146. */
  147. void SystemClock_Config(void)
  148. {
  149. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  150. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  151. /** Configure LSE Drive Capability
  152. */
  153. HAL_PWR_EnableBkUpAccess();
  154. __HAL_RCC_LSEDRIVE_CONFIG(RCC_LSEDRIVE_LOW);
  155. /** Configure the main internal regulator output voltage
  156. */
  157. __HAL_RCC_PWR_CLK_ENABLE();
  158. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  159. /** Initializes the RCC Oscillators according to the specified parameters
  160. * in the RCC_OscInitTypeDef structure.
  161. */
  162. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE|RCC_OSCILLATORTYPE_LSE;
  163. RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS;
  164. RCC_OscInitStruct.LSEState = RCC_LSE_ON;
  165. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  166. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  167. RCC_OscInitStruct.PLL.PLLM = 8;
  168. RCC_OscInitStruct.PLL.PLLN = 216;
  169. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  170. RCC_OscInitStruct.PLL.PLLQ = 9;
  171. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  172. {
  173. Error_Handler();
  174. }
  175. /** Activate the Over-Drive mode
  176. */
  177. if (HAL_PWREx_EnableOverDrive() != HAL_OK)
  178. {
  179. Error_Handler();
  180. }
  181. /** Initializes the CPU, AHB and APB buses clocks
  182. */
  183. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  184. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  185. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  186. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  187. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  188. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  189. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_7) != HAL_OK)
  190. {
  191. Error_Handler();
  192. }
  193. }
  194. /**
  195. * @brief RTC Initialization Function
  196. * @param None
  197. * @retval None
  198. */
  199. static void MX_RTC_Init(void)
  200. {
  201. /* USER CODE BEGIN RTC_Init 0 */
  202. /* USER CODE END RTC_Init 0 */
  203. /* USER CODE BEGIN RTC_Init 1 */
  204. /* USER CODE END RTC_Init 1 */
  205. /** Initialize RTC Only
  206. */
  207. hrtc.Instance = RTC;
  208. hrtc.Init.HourFormat = RTC_HOURFORMAT_24;
  209. hrtc.Init.AsynchPrediv = 127;
  210. hrtc.Init.SynchPrediv = 255;
  211. hrtc.Init.OutPut = RTC_OUTPUT_DISABLE;
  212. hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
  213. hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
  214. if (HAL_RTC_Init(&hrtc) != HAL_OK)
  215. {
  216. Error_Handler();
  217. }
  218. /* USER CODE BEGIN RTC_Init 2 */
  219. /* USER CODE END RTC_Init 2 */
  220. }
  221. /**
  222. * @brief USART2 Initialization Function
  223. * @param None
  224. * @retval None
  225. */
  226. static void MX_USART2_UART_Init(void)
  227. {
  228. /* USER CODE BEGIN USART2_Init 0 */
  229. /* USER CODE END USART2_Init 0 */
  230. /* USER CODE BEGIN USART2_Init 1 */
  231. /* USER CODE END USART2_Init 1 */
  232. huart2.Instance = USART2;
  233. huart2.Init.BaudRate = 115200;
  234. huart2.Init.WordLength = UART_WORDLENGTH_8B;
  235. huart2.Init.StopBits = UART_STOPBITS_1;
  236. huart2.Init.Parity = UART_PARITY_NONE;
  237. huart2.Init.Mode = UART_MODE_TX_RX;
  238. huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE;
  239. huart2.Init.OverSampling = UART_OVERSAMPLING_16;
  240. huart2.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
  241. huart2.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
  242. if (HAL_UART_Init(&huart2) != HAL_OK)
  243. {
  244. Error_Handler();
  245. }
  246. /* USER CODE BEGIN USART2_Init 2 */
  247. /* USER CODE END USART2_Init 2 */
  248. }
  249. /**
  250. * @brief USB_OTG_HS Initialization Function
  251. * @param None
  252. * @retval None
  253. */
  254. static void MX_USB_OTG_HS_PCD_Init(void)
  255. {
  256. /* USER CODE BEGIN USB_OTG_HS_Init 0 */
  257. /* USER CODE END USB_OTG_HS_Init 0 */
  258. /* USER CODE BEGIN USB_OTG_HS_Init 1 */
  259. /* USER CODE END USB_OTG_HS_Init 1 */
  260. hpcd_USB_OTG_HS.Instance = USB_OTG_HS;
  261. hpcd_USB_OTG_HS.Init.dev_endpoints = 9;
  262. hpcd_USB_OTG_HS.Init.dma_enable = DISABLE;
  263. hpcd_USB_OTG_HS.Init.phy_itface = USB_OTG_HS_EMBEDDED_PHY;
  264. hpcd_USB_OTG_HS.Init.Sof_enable = DISABLE;
  265. hpcd_USB_OTG_HS.Init.low_power_enable = DISABLE;
  266. hpcd_USB_OTG_HS.Init.lpm_enable = DISABLE;
  267. hpcd_USB_OTG_HS.Init.vbus_sensing_enable = DISABLE;
  268. hpcd_USB_OTG_HS.Init.use_dedicated_ep1 = DISABLE;
  269. hpcd_USB_OTG_HS.Init.use_external_vbus = DISABLE;
  270. __HAL_RCC_OTGPHYC_CLK_ENABLE();
  271. __HAL_RCC_USB_OTG_HS_CLK_ENABLE();
  272. __HAL_RCC_USB_OTG_HS_ULPI_CLK_ENABLE();
  273. if (HAL_PCD_Init(&hpcd_USB_OTG_HS) != HAL_OK)
  274. {
  275. Error_Handler();
  276. }
  277. /* USER CODE BEGIN USB_OTG_HS_Init 2 */
  278. /* USER CODE END USB_OTG_HS_Init 2 */
  279. }
  280. /**
  281. * @brief GPIO Initialization Function
  282. * @param None
  283. * @retval None
  284. */
  285. static void MX_GPIO_Init(void)
  286. {
  287. GPIO_InitTypeDef GPIO_InitStruct = {0};
  288. /* USER CODE BEGIN MX_GPIO_Init_1 */
  289. /* USER CODE END MX_GPIO_Init_1 */
  290. /* GPIO Ports Clock Enable */
  291. __HAL_RCC_GPIOE_CLK_ENABLE();
  292. __HAL_RCC_GPIOC_CLK_ENABLE();
  293. __HAL_RCC_GPIOH_CLK_ENABLE();
  294. __HAL_RCC_GPIOA_CLK_ENABLE();
  295. __HAL_RCC_GPIOB_CLK_ENABLE();
  296. __HAL_RCC_GPIOD_CLK_ENABLE();
  297. /*Configure GPIO pin Output Level */
  298. HAL_GPIO_WritePin(GPIOC, IDE_DIOR_Pin|IDE_CS0_Pin|IDE_CS1_Pin|IDE_DIOW_Pin, GPIO_PIN_RESET);
  299. /*Configure GPIO pin Output Level */
  300. HAL_GPIO_WritePin(GPIOB, LED_ORANGE_Pin|LED_RED_Pin|IDE_RESET_Pin|LED_GREEN_Pin
  301. |TXS0108E_OE_Pin|LED_BLUE_Pin, GPIO_PIN_RESET);
  302. /*Configure GPIO pin Output Level */
  303. HAL_GPIO_WritePin(GPIOD, IDE_DA0_Pin|IDE_DA1_Pin|IDE_DA2_Pin, GPIO_PIN_RESET);
  304. /*Configure GPIO pins : IDE_DD4_Pin IDE_DD5_Pin IDE_DD6_Pin IDE_DD7_Pin
  305. IDE_DD8_Pin IDE_DD9_Pin IDE_DD10_Pin IDE_DD11_Pin
  306. IDE_DD12_Pin IDE_DD13_Pin IDE_DD14_Pin IDE_DD15_Pin */
  307. GPIO_InitStruct.Pin = IDE_DD4_Pin|IDE_DD5_Pin|IDE_DD6_Pin|IDE_DD7_Pin
  308. |IDE_DD8_Pin|IDE_DD9_Pin|IDE_DD10_Pin|IDE_DD11_Pin
  309. |IDE_DD12_Pin|IDE_DD13_Pin|IDE_DD14_Pin|IDE_DD15_Pin;
  310. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  311. GPIO_InitStruct.Pull = GPIO_NOPULL;
  312. HAL_GPIO_Init(GPIOE, &GPIO_InitStruct);
  313. /*Configure GPIO pins : IDE_DIOR_Pin IDE_CS0_Pin IDE_CS1_Pin IDE_DIOW_Pin */
  314. GPIO_InitStruct.Pin = IDE_DIOR_Pin|IDE_CS0_Pin|IDE_CS1_Pin|IDE_DIOW_Pin;
  315. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  316. GPIO_InitStruct.Pull = GPIO_NOPULL;
  317. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  318. HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
  319. /*Configure GPIO pins : LED_ORANGE_Pin LED_RED_Pin LED_GREEN_Pin TXS0108E_OE_Pin
  320. LED_BLUE_Pin */
  321. GPIO_InitStruct.Pin = LED_ORANGE_Pin|LED_RED_Pin|LED_GREEN_Pin|TXS0108E_OE_Pin
  322. |LED_BLUE_Pin;
  323. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  324. GPIO_InitStruct.Pull = GPIO_NOPULL;
  325. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  326. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  327. /*Configure GPIO pin : IDE_RESET_Pin */
  328. GPIO_InitStruct.Pin = IDE_RESET_Pin;
  329. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  330. GPIO_InitStruct.Pull = GPIO_NOPULL;
  331. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
  332. HAL_GPIO_Init(IDE_RESET_GPIO_Port, &GPIO_InitStruct);
  333. /*Configure GPIO pins : IDE_DA0_Pin IDE_DA1_Pin IDE_DA2_Pin */
  334. GPIO_InitStruct.Pin = IDE_DA0_Pin|IDE_DA1_Pin|IDE_DA2_Pin;
  335. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  336. GPIO_InitStruct.Pull = GPIO_NOPULL;
  337. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  338. HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
  339. /*Configure GPIO pins : IDE_DD0_Pin IDE_DD1_Pin IDE_DD2_Pin IDE_DD3_Pin */
  340. GPIO_InitStruct.Pin = IDE_DD0_Pin|IDE_DD1_Pin|IDE_DD2_Pin|IDE_DD3_Pin;
  341. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  342. GPIO_InitStruct.Pull = GPIO_NOPULL;
  343. HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
  344. /* USER CODE BEGIN MX_GPIO_Init_2 */
  345. /* USER CODE END MX_GPIO_Init_2 */
  346. }
  347. /* USER CODE BEGIN 4 */
  348. /* USER CODE END 4 */
  349. /* USER CODE BEGIN Header_tinyusb_task */
  350. /**
  351. * @brief Function implementing the tinyusb thread.
  352. * @param argument: Not used
  353. * @retval None
  354. */
  355. /* USER CODE END Header_tinyusb_task */
  356. void tinyusb_task(void *argument)
  357. {
  358. /* USER CODE BEGIN 5 */
  359. tusb_init();
  360. /* Infinite loop */
  361. while(1) {
  362. tud_task();
  363. }
  364. /* USER CODE END 5 */
  365. }
  366. /* USER CODE BEGIN Header_ide_task */
  367. /**
  368. * @brief Function implementing the ide thread.
  369. * @param argument: Not used
  370. * @retval None
  371. */
  372. /* USER CODE END Header_ide_task */
  373. void ide_task(void *argument)
  374. {
  375. /* USER CODE BEGIN ide_task */
  376. ide_async_init();
  377. /* Infinite loop */
  378. while (1) {
  379. ide_async_main_loop_step();
  380. }
  381. /* USER CODE END ide_task */
  382. }
  383. /**
  384. * @brief This function is executed in case of error occurrence.
  385. * @retval None
  386. */
  387. void Error_Handler(void)
  388. {
  389. /* USER CODE BEGIN Error_Handler_Debug */
  390. /* User can add his own implementation to report the HAL error return state */
  391. __disable_irq();
  392. while (1)
  393. {
  394. }
  395. /* USER CODE END Error_Handler_Debug */
  396. }
  397. #ifdef USE_FULL_ASSERT
  398. /**
  399. * @brief Reports the name of the source file and the source line number
  400. * where the assert_param error has occurred.
  401. * @param file: pointer to the source file name
  402. * @param line: assert_param error line source number
  403. * @retval None
  404. */
  405. void assert_failed(uint8_t *file, uint32_t line)
  406. {
  407. /* USER CODE BEGIN 6 */
  408. /* User can add his own implementation to report the file name and line number,
  409. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  410. /* USER CODE END 6 */
  411. }
  412. #endif /* USE_FULL_ASSERT */