We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The only definitions in "spi_host_structs.h" are currently:
#define spi_host_peri ((volatile spi_host *) SPI_HOST_START_ADDRESS)
It should be changed to something like (since all three peripherals are the same and therefore use the same HAL):
#define spi_host1_peri ((volatile spi_host *) SPI_HOST_START_ADDRESS) #define spi_host2_peri ((volatile spi_host *) SPI2_START_ADDRESS) #define spi_flash_peri ((volatile spi_host *) SPI_FLASH_START_ADDRESS)
The text was updated successfully, but these errors were encountered:
@StefanoAlbini96
Sorry, something went wrong.
No branches or pull requests
The only definitions in "spi_host_structs.h" are currently:
#define spi_host_peri ((volatile spi_host *) SPI_HOST_START_ADDRESS)
It should be changed to something like (since all three peripherals are the same and therefore use the same HAL):
The text was updated successfully, but these errors were encountered: