2023-03-17 16:12:49 +07:00
|
|
|
/*
|
2019-03-22 22:06:48 +07:00
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-05-14 11:48:05 +07:00
|
|
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
2019-03-22 22:06:48 +07:00
|
|
|
*
|
|
|
|
* 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 "stm32f3xx_hal.h"
|
2024-04-23 12:04:08 +07:00
|
|
|
#include "bsp/board_api.h"
|
|
|
|
#include "board.h"
|
2019-03-22 23:57:14 +07:00
|
|
|
|
2020-04-08 16:26:14 +07:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// Forward USB interrupt events to TinyUSB IRQ Handler
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
2020-10-11 09:27:43 +02:00
|
|
|
// USB defaults to using interrupts 19, 20 and 42, however, this BSP sets the
|
|
|
|
// SYSCFG_CFGR1.USB_IT_RMP bit remapping interrupts to 74, 75 and 76.
|
|
|
|
|
2020-04-08 16:26:14 +07:00
|
|
|
// FIXME: Do all three need to be handled, or just the LP one?
|
2020-10-11 09:27:43 +02:00
|
|
|
// USB high-priority interrupt (Channel 74): Triggered only by a correct
|
2020-04-08 16:26:14 +07:00
|
|
|
// transfer event for isochronous and double-buffer bulk transfer to reach
|
|
|
|
// the highest possible transfer rate.
|
2024-04-23 12:04:08 +07:00
|
|
|
void USB_HP_IRQHandler(void) {
|
2020-04-17 12:27:53 +07:00
|
|
|
tud_int_handler(0);
|
2020-04-08 16:26:14 +07:00
|
|
|
}
|
|
|
|
|
2020-10-11 09:27:43 +02:00
|
|
|
// USB low-priority interrupt (Channel 75): Triggered by all USB events
|
2020-04-08 16:26:14 +07:00
|
|
|
// (Correct transfer, USB reset, etc.). The firmware has to check the
|
|
|
|
// interrupt source before serving the interrupt.
|
2024-04-23 12:04:08 +07:00
|
|
|
void USB_LP_IRQHandler(void) {
|
2020-04-17 12:27:53 +07:00
|
|
|
tud_int_handler(0);
|
2020-04-08 16:26:14 +07:00
|
|
|
}
|
|
|
|
|
2020-10-11 09:27:43 +02:00
|
|
|
// USB wakeup interrupt (Channel 76): Triggered by the wakeup event from the USB
|
2020-04-08 16:26:14 +07:00
|
|
|
// Suspend mode.
|
2024-04-23 12:04:08 +07:00
|
|
|
void USBWakeUp_RMP_IRQHandler(void) {
|
2020-04-17 12:27:53 +07:00
|
|
|
tud_int_handler(0);
|
2020-04-08 16:26:14 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// MACRO TYPEDEF CONSTANT ENUM
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
2019-09-11 16:56:26 +07:00
|
|
|
|
2024-04-23 12:04:08 +07:00
|
|
|
void board_init(void) {
|
2020-03-25 23:52:40 -04:00
|
|
|
SystemClock_Config();
|
|
|
|
|
2024-04-23 12:04:08 +07:00
|
|
|
#if CFG_TUSB_OS == OPT_OS_NONE
|
2019-09-11 16:56:26 +07:00
|
|
|
// 1ms tick timer
|
|
|
|
SysTick_Config(SystemCoreClock / 1000);
|
|
|
|
#endif
|
|
|
|
|
2020-10-11 09:27:43 +02:00
|
|
|
// Remap the USB interrupts
|
|
|
|
__HAL_RCC_SYSCFG_CLK_ENABLE();
|
|
|
|
__HAL_REMAPINTERRUPT_USB_ENABLE();
|
|
|
|
|
2019-09-05 22:41:58 +07:00
|
|
|
// LED
|
2019-03-22 23:57:14 +07:00
|
|
|
__HAL_RCC_GPIOE_CLK_ENABLE();
|
2024-04-23 12:04:08 +07:00
|
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
2019-07-20 22:41:45 +07:00
|
|
|
GPIO_InitStruct.Pin = LED_PIN;
|
2019-03-22 23:57:14 +07:00
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
|
2019-07-20 22:41:45 +07:00
|
|
|
HAL_GPIO_Init(LED_PORT, &GPIO_InitStruct);
|
|
|
|
|
2019-09-05 22:41:58 +07:00
|
|
|
// Button
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
|
|
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);
|
2019-03-22 23:57:14 +07:00
|
|
|
|
2019-09-11 16:56:26 +07:00
|
|
|
/* Configure USB DM and DP pins */
|
2019-09-11 17:37:23 +07:00
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
2019-09-11 16:56:26 +07:00
|
|
|
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_FREQ_HIGH;
|
|
|
|
GPIO_InitStruct.Alternate = GPIO_AF14_USB;
|
|
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
2019-09-09 19:20:26 -04:00
|
|
|
|
2019-09-11 16:56:26 +07:00
|
|
|
// Enable USB clock
|
2019-09-09 19:20:26 -04:00
|
|
|
__HAL_RCC_USB_CLK_ENABLE();
|
2019-03-22 22:06:48 +07:00
|
|
|
}
|
|
|
|
|
2019-05-15 17:14:15 +07:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// Board porting API
|
|
|
|
//--------------------------------------------------------------------+
|
2019-03-22 22:06:48 +07:00
|
|
|
|
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-03-22 22:06:48 +07:00
|
|
|
}
|
|
|
|
|
2024-04-23 12:04:08 +07:00
|
|
|
uint32_t board_button_read(void) {
|
2019-09-05 22:41:58 +07:00
|
|
|
return BUTTON_STATE_ACTIVE == HAL_GPIO_ReadPin(BUTTON_PORT, BUTTON_PIN);
|
2019-04-02 02:16:54 +07:00
|
|
|
}
|
|
|
|
|
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-03-22 22:06:48 +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-03-22 22:06:48 +07:00
|
|
|
system_ticks++;
|
|
|
|
}
|
|
|
|
|
2024-04-23 12:04:08 +07:00
|
|
|
uint32_t board_millis(void) {
|
2019-03-23 16:51:07 +07:00
|
|
|
return system_ticks;
|
|
|
|
}
|
2024-04-23 12:04:08 +07:00
|
|
|
|
2019-03-22 22:06:48 +07:00
|
|
|
#endif
|
|
|
|
|
2024-04-23 12:04:08 +07:00
|
|
|
void HardFault_Handler(void) {
|
2019-03-22 22:06:48 +07:00
|
|
|
asm("bkpt");
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-03-22 22:06:48 +07:00
|
|
|
|
|
|
|
}
|