2023-04-15 04:12 AM
Steps to reproduce:
The first set of errors is easy to fix, they are related to the following lines dissapearing from freertos.c
volatile uint8_t TouchINT_irq = 0;
extern volatile uint8_t TouchINT;
int32_t X_touch;
int32_t Y_touch;
these lines were not in the "user code" sections and got cleared after code was generated by IDE.
If I restore those lines, there is a bunch of other errors starting with
quadspi.c:53:33: error: 'QSPI_Flash_Transfer_Mode' undeclared
I can see (thanks to GIT client) that quadspi.c "suffered" a lot of changes and one of them was removal of that constant.
I am using Riverdi 70STM32H7
Solved! Go to Solution.
2023-04-17 08:32 AM
For an update, after I revert the quadspi.h and quadsp.c to their initial state the program compiles again so there are no further problems in other files.
2023-04-17 08:32 AM
For an update, after I revert the quadspi.h and quadsp.c to their initial state the program compiles again so there are no further problems in other files.