Part Number: CC2564
Hi,
is there any way to make Bluetopia 4.0.2.2 run with STM32CubeMx? How can i do using HAL Drivers instead of STD_PERIPHERALS DRIVERS?
I have searched older posts but i did't find any recent good news
Thanks in Advance
Paolo
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: CC2564
Hi,
is there any way to make Bluetopia 4.0.2.2 run with STM32CubeMx? How can i do using HAL Drivers instead of STD_PERIPHERALS DRIVERS?
I have searched older posts but i did't find any recent good news
Thanks in Advance
Paolo
Some edited files for porting. Note: UART ports are hardcoded, but easy to change.
BTPS has own SysTick_Handler() implementation, if you want use own in stm32f4xx_it.c rename it:
void SysTick_Handler(void)
{
/* USER CODE BEGIN SysTick_IRQn 0 */
BTPS_SysTick_Handler();
/* USER CODE END SysTick_IRQn 0 */
HAL_IncTick();
HAL_SYSTICK_IRQHandler();
/* USER CODE BEGIN SysTick_IRQn 1 */
/* USER CODE END SysTick_IRQn 1 */
}