Skip to content
This repository was archived by the owner on Feb 14, 2021. It is now read-only.

Conversation

@AprilDeFeu
Copy link
Collaborator

Changed varible type of the second parameter in the function
HAL_StatusTypeDef HAL_DMA_PollTransfer(..., ..., ...) from uint32_t to HAL_DMA_LevelCompleteTypeDef inside the file "stm32f4xx_hal_dma.c", which removed the type error we had.
We also had errors stating the following values were undeclared:
HAL_DMA_STATE_BUSY_MEM0, HAL_DMA_STATE_BUSY_MEM1 HAL_DMA_STATE_READY_HALF_MEM0 HAL_DMA_STATE_READY_HALF_MEM1 HAL_DMA_STATE_READY_MEM0 HAL_DMA_STATE_READY_MEM1
we followed suit and declared them correspondingly to what was declared at the end of each variable name. This compiled 100 more files. Now, we are encountering 27 errors in the file 'stm32f4xx_hal_iwdg.c' and are working on handling them.

Changed varible type of the second parameter in the function 
`HAL_StatusTypeDef HAL_DMA_PollTransfer(..., ..., ...)` from `uint32_t` to `HAL_DMA_LevelCompleteTypeDef` inside the file "stm32f4xx_hal_dma.c", which removed the type error we had.
We also had errors stating the following values were undeclared:
`
HAL_DMA_STATE_BUSY_MEM0,
HAL_DMA_STATE_BUSY_MEM1
HAL_DMA_STATE_READY_HALF_MEM0
HAL_DMA_STATE_READY_HALF_MEM1
HAL_DMA_STATE_READY_MEM0
HAL_DMA_STATE_READY_MEM1`
 we followed suit and declared them correspondingly to what was declared at the end of each variable name. This compiled 100 more files. Now, we are encountering 27 errors in the file 'stm32f4xx_hal_iwdg.c' and are working on handling them.
@AprilDeFeu AprilDeFeu self-assigned this Jun 14, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants