Hello,
I am trying to understand the wireless sensor demo for the ez430 rf2500. I have added all the components and specified that I am using the CC2500 here:
I also added:
-f"$PROJ_DIR$\Configuration\smpl_config_AP.dat"
-f"$PROJ_DIR$\Configuration\smpl_config_ED.dat"
-f"$PROJ_DIR$\Configuration\smpl_nwk_config.dat"
to my extra options for proper configuration and unchecked the static overlay map option in the linker category. I have narrowed down the errors to just these two:
undefined first referenced
symbol in file
--------- ----------------
nwk_SendEmptyPollRspFrame ./nwk_mgmt.obj
nwk_getSandFFrame ./nwk_mgmt.obj
error: unresolved symbols remain
error: errors encountered during linking; "AccessPoint.out" not built
Both of these functions are defined in nwk_frame.h and the function bodies reside in nwk_frame.c, and both appear to be included in the build so I'm not sure how they're missed by the linker. Everything else seems to be in place. Any thoughts?