| 
									
										
										
										
											2023-03-17 16:12:49 +07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |  * The MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2019 Ha Thach (tinyusb.org) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
					
						
							|  |  |  |  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of the TinyUSB stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-25 23:52:40 -04:00
										 |  |  | #include "stm32f2xx_hal.h"
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | #include "bsp/board_api.h"
 | 
					
						
							|  |  |  | #include "board.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:09 +07:00
										 |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Forward USB interrupt events to TinyUSB IRQ Handler
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | void OTG_FS_IRQHandler(void) { | 
					
						
							| 
									
										
										
										
											2020-04-17 12:27:53 +07:00
										 |  |  |   tud_int_handler(0); | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:09 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // MACRO TYPEDEF CONSTANT ENUM
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  | // enable all LED, Button, Uart, USB clock
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | static void all_rcc_clk_enable(void) { | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  |   __HAL_RCC_GPIOA_CLK_ENABLE();  // USB D+, D-
 | 
					
						
							|  |  |  |   __HAL_RCC_GPIOB_CLK_ENABLE();  // LED
 | 
					
						
							|  |  |  |   __HAL_RCC_GPIOC_CLK_ENABLE();  // Button
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | void board_init(void) { | 
					
						
							| 
									
										
										
										
											2020-03-25 23:52:40 -04:00
										 |  |  |   SystemClock_Config(); | 
					
						
							| 
									
										
										
										
											2023-03-17 16:12:49 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  |   #if CFG_TUSB_OS == OPT_OS_NONE
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   // 1ms tick timer
 | 
					
						
							|  |  |  |   SysTick_Config(SystemCoreClock / 1000); | 
					
						
							|  |  |  |   #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  |   all_rcc_clk_enable(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  |   GPIO_InitTypeDef GPIO_InitStruct; | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // LED
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   GPIO_InitStruct.Pin = LED_PIN; | 
					
						
							|  |  |  |   GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; | 
					
						
							|  |  |  |   GPIO_InitStruct.Pull = GPIO_PULLUP; | 
					
						
							|  |  |  |   GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; | 
					
						
							|  |  |  |   HAL_GPIO_Init(LED_PORT, &GPIO_InitStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  |   board_led_write(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   // Button
 | 
					
						
							|  |  |  |   GPIO_InitStruct.Pin = BUTTON_PIN; | 
					
						
							|  |  |  |   GPIO_InitStruct.Mode = GPIO_MODE_INPUT; | 
					
						
							|  |  |  |   GPIO_InitStruct.Pull = GPIO_PULLDOWN; | 
					
						
							|  |  |  |   GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; | 
					
						
							|  |  |  |   HAL_GPIO_Init(BUTTON_PORT, &GPIO_InitStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Configure DM DP Pins */ | 
					
						
							|  |  |  |   GPIO_InitStruct.Pin = (GPIO_PIN_11 | GPIO_PIN_12); | 
					
						
							|  |  |  |   GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; | 
					
						
							|  |  |  |   GPIO_InitStruct.Pull = GPIO_NOPULL; | 
					
						
							|  |  |  |   GPIO_InitStruct.Speed = GPIO_SPEED_HIGH; | 
					
						
							|  |  |  |   GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; | 
					
						
							|  |  |  |   HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Configure VBUS Pin */ | 
					
						
							|  |  |  |   GPIO_InitStruct.Pin = GPIO_PIN_9; | 
					
						
							|  |  |  |   GPIO_InitStruct.Mode = GPIO_MODE_INPUT; | 
					
						
							|  |  |  |   GPIO_InitStruct.Pull = GPIO_NOPULL; | 
					
						
							|  |  |  |   HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Configure ID pin */ | 
					
						
							|  |  |  |   GPIO_InitStruct.Pin = GPIO_PIN_10; | 
					
						
							|  |  |  |   GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; | 
					
						
							|  |  |  |   GPIO_InitStruct.Pull = GPIO_PULLUP; | 
					
						
							|  |  |  |   GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; | 
					
						
							|  |  |  |   HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Enable USB FS Clocks */ | 
					
						
							|  |  |  |   __HAL_RCC_USB_OTG_FS_CLK_ENABLE(); | 
					
						
							| 
									
										
										
										
											2019-12-11 14:03:36 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Enable VBUS sense (B device) via pin PA9
 | 
					
						
							|  |  |  |   USB_OTG_FS->GCCFG &= ~USB_OTG_GCCFG_NOVBUSSENS; | 
					
						
							|  |  |  |   USB_OTG_FS->GCCFG |= USB_OTG_GCCFG_VBUSBSEN; | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Board porting API
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | void board_led_write(bool state) { | 
					
						
							|  |  |  |   HAL_GPIO_WritePin(LED_PORT, LED_PIN, state ? LED_STATE_ON : (1 - LED_STATE_ON)); | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | uint32_t board_button_read(void) { | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   return BUTTON_STATE_ACTIVE == HAL_GPIO_ReadPin(BUTTON_PORT, BUTTON_PIN); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | int board_uart_read(uint8_t* buf, int len) { | 
					
						
							|  |  |  |   (void) buf; | 
					
						
							|  |  |  |   (void) len; | 
					
						
							| 
									
										
										
										
											2019-10-24 12:20:06 +07:00
										 |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | int board_uart_write(void const* buf, int len) { | 
					
						
							|  |  |  |   (void) buf; | 
					
						
							|  |  |  |   (void) len; | 
					
						
							| 
									
										
										
										
											2019-10-24 12:20:06 +07:00
										 |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | #if CFG_TUSB_OS == OPT_OS_NONE
 | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | volatile uint32_t system_ticks = 0; | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | void SysTick_Handler(void) { | 
					
						
							| 
									
										
										
										
											2023-03-16 08:28:19 +08:00
										 |  |  |   HAL_IncTick(); | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   system_ticks++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | uint32_t board_millis(void) { | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  |   return system_ticks; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | void HardFault_Handler(void) { | 
					
						
							| 
									
										
										
										
											2023-06-24 18:09:05 +07:00
										 |  |  |   __asm("BKPT #0\n"); | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Required by __libc_init_array in startup code if we are compiling using
 | 
					
						
							|  |  |  | // -nostdlib/-nostartfiles.
 | 
					
						
							| 
									
										
										
										
											2024-04-23 12:04:08 +07:00
										 |  |  | void _init(void) { | 
					
						
							| 
									
										
										
										
											2019-09-12 10:41:03 +07:00
										 |  |  | } |