Type missing binary operator before token "("
Hello, I encountered such an error while working on my software and I cannot solve this error. Can you help me with this issue?

Hello, I encountered such an error while working on my software and I cannot solve this error. Can you help me with this issue?

Right. So it tells you where the actual error occurs:
../Core/Src/system_stm32f4xx.c:170:52: note: in expansion of macro 'SCB'
170 | #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */
| ^~~
In the notation "../Core/Src/system_stm32f4xx.c:170:52"
The message then quotes that line from the source file;
Note how the " ^~~" in the following line of the message points at the error position.
The error is that the SCB->CPACR cannot simply follow the (__FPU_USED == 1) as it does in that line:

It looks like you have "lost" a line break, and the code should be:
#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */
#HowToReadGccErrorMessage
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.