Hi,
I try to run a FreeeRTOS-Demo (exactely CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil from “FreeRTOSv202012.00”)
Everthing runs fine BUT…
One single File does not compile!
“RegTest_Keil.c” – This File contains some ASM-Functions
__asm void vRegTest1Implementation( void )
{
PRESERVE8
IMPORT ulRegTest1LoopCounter
/* Fill the core registers with known values. */
mov r0, #100
mov r1, #101
mov r2, #102
mov r3, #103
mov r4, #104
mov r5, #105
mov r6, #106
…
…
}
Error-Messages:
Error expected ‘(‘ before ‘void’ RTOSDemo..
Severity Description Project File Line
Error stray ‘#’ in program RTOSDemo..
Maybe the Syntax is wrong…
Maybe an Include is missed…
Need a little nudge 😉