Hi Greg,
I'm trying to do the same thing as you, use ceedling to write some tests for drivers/applications/... that use the KSDK.
Unfortunatelly, I also have issues with 'static inline' functions.
I don't know how you did it, but I just did a workaround by declaring my own mock-headers of the KSDK.
The API of the SDK won't change that quick/much so I guess it's safe to copy the original KSDK header and replace the 'static inline' functions with 'normal' function declarations (without static inline).
That way, CMock recognizes them as a regular function and makes mocks out of it.
And if the API of the SDK changes, I would have to change my code anyway, so I guess this is a 'safe' workaround.
If you found another tool that can better handle this, let me know.
Thanks,
Hope this helps,
KR,
Laurens