mirror of https://github.com/Desuuuu/klipper.git
fix linker issues on STM32
This commit is contained in:
parent
a51242e8c5
commit
278b1c0210
|
@ -45,7 +45,7 @@
|
|||
| USART_CR1_RXNEIE)
|
||||
|
||||
void
|
||||
USARTx_IRQHandler(void)
|
||||
t5uid1_USARTx_IRQHandler(void)
|
||||
{
|
||||
uint32_t sr = USARTx->SR;
|
||||
if (sr & (USART_SR_RXNE | USART_SR_ORE))
|
||||
|
@ -76,7 +76,7 @@ t5uid1_init(uint32_t baud)
|
|||
USARTx->BRR = (((div / 16) << USART_BRR_DIV_Mantissa_Pos)
|
||||
| ((div % 16) << USART_BRR_DIV_Fraction_Pos));
|
||||
USARTx->CR1 = CR1_FLAGS;
|
||||
armcm_enable_irq(USARTx_IRQHandler, USARTx_IRQn, 0);
|
||||
armcm_enable_irq(t5uid1_USARTx_IRQHandler, USARTx_IRQn, 0);
|
||||
|
||||
gpio_peripheral(GPIO_Rx, GPIO_FUNCTION(7), 1);
|
||||
gpio_peripheral(GPIO_Tx, GPIO_FUNCTION(7), 0);
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
| USART_CR1_RXNEIE)
|
||||
|
||||
void
|
||||
USARTx_IRQHandler(void)
|
||||
t5uid1_USARTx_IRQHandler(void)
|
||||
{
|
||||
uint32_t sr = USARTx->ISR;
|
||||
if (sr & (USART_ISR_RXNE | USART_ISR_ORE))
|
||||
|
@ -70,7 +70,7 @@ t5uid1_init(uint32_t baud)
|
|||
USARTx->BRR = (((div / 16) << USART_BRR_DIV_MANTISSA_Pos)
|
||||
| ((div % 16) << USART_BRR_DIV_FRACTION_Pos));
|
||||
USARTx->CR1 = CR1_FLAGS;
|
||||
armcm_enable_irq(USARTx_IRQHandler, USARTx_IRQn, 0);
|
||||
armcm_enable_irq(t5uid1_USARTx_IRQHandler, USARTx_IRQn, 0);
|
||||
|
||||
gpio_peripheral(GPIO_Rx, GPIO_FUNCTION(1), 1);
|
||||
gpio_peripheral(GPIO_Tx, GPIO_FUNCTION(1), 0);
|
||||
|
|
Loading…
Reference in New Issue