I get this error message during compilation- ltc E106: unresolved external:

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Som
Level 1
Level 1
10 sign-ins First like given 5 sign-ins

ltc E106: unresolved external: safetyWatchdogLock - (IfxScuCcu.o)
Invoking: TASKING Linker
ltc F019: unrecoverable error: fatal link error

0 Likes
1 Solution
MoD
Employee
Employee
50 likes received 500 replies posted 100 solutions authored

In your project is the variable safetyWatchdogLock not defined. Add a global variable with this name to your project, e.g.:
uint32 safetyWatchdogLock;

View solution in original post

1 Reply
MoD
Employee
Employee
50 likes received 500 replies posted 100 solutions authored

In your project is the variable safetyWatchdogLock not defined. Add a global variable with this name to your project, e.g.:
uint32 safetyWatchdogLock;