Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Having some problem linking with simplelink_lowpower_f3_sdk (8.10.01.02) using sysconfig.
My code compiles but does not link. It looks like the lib objects are not built or not referenced properly.
Thanks to sysconfig that is in charge of automating things. It is great when it works, but hard to solve when it goes wrong.
I understand the issue but I am lost at solving it. I guess the makefile has something wrong or that I am missing some environment variable. I can't tell...
Please note that I started a project from scratch in CCSv12. Something may not be set properly somewhere...
Code and errors below:
#include <stdint.h>
#include <stddef.h>
#include "ti_drivers_config.h"
#include <ti/drivers/Power.h>
/**
* main.c
*/
int main(void)
{
uint32_t key=0xAA55;
Power_init();
GPIO_init();
Power_shutdown(0,0); //Parameters unused for C2340R2
return 0;
}
Errors:
unresolved symbol GPIO_init, first referenced in ./syscfg/ti_drivers_config.o
unresolved symbol Power_init, first referenced in ./syscfg/ti_drivers_config.o
unresolved symbol Power_shutdown, first referenced in ./main.o
Thank you for your assistance