Hello
I think the issue here is that the symbols defined in cfm_flash.s are not used anywhere in the source code. Per default the linker is performing dead stripping. It does not link symbols (functions, variables, constants), which are not used to the application.
You need to tell the linker you want to link those symbols to the application even though they are not used.
In this purpose just add the following in the EPPC Linker panel "Force Active Symbols" edit box
_CFM_CONF
That should do it. I hope this helps.
CrasyCat