This repository was archived by the owner on Feb 14, 2021. It is now read-only.
Type and Definition errors #2
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changed varible type of the second parameter in the function
HAL_StatusTypeDef HAL_DMA_PollTransfer(..., ..., ...)fromuint32_ttoHAL_DMA_LevelCompleteTypeDefinside 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_MEM1we 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.