Part Number:CC3220SF-LAUNCHXL
Tool/software: Code Composer Studio
Hi,
I've add the MQTT client into my working project, but I cannot build it (see build results details below).
My working project already includes libraries such as FreeRTOS, json, ota and works fine.
I've added the MQTT files into the project:
client_cbs.c
client_cbs.h
At this point, I can build all with no problem, but then, as I add the files with my code:
e_mqtt_client_app.c
e_mqtt_client_app.h
I got these build results:
On the 'Problems' tab:
gmake: *** [all] Error 2 CC3220SF_LAUNCHXL_freertos_gcc C/C++ Problem
gmake[1]: *** [CC3220SF_LAUNCHXL_freertos_gcc.out] Error 1 CC3220SF_LAUNCHXL_freertos_gcc C/C++ Problem
gmake[1]: Target 'secondary-outputs' not remade because of errors. CC3220SF_LAUNCHXL_freertos_gcc C/C++ Problem
recipe for target 'all' failed makefile /CC3220SF_LAUNCHXL_freertos_gcc/Debug line 235 C/C++ Problem
recipe for target 'CC3220SF_LAUNCHXL_freertos_gcc.out' failed makefile /CC3220SF_LAUNCHXL_freertos_gcc/Debug line 242 C/C++ Problem
In the 'Console' tab:
makefile:242: recipe for target 'CC3220SF_LAUNCHXL_freertos_gcc.out' failed
In the makefile:
233 # All Target
234 all: $(OBJS) $(LDS_SRCS) $(GEN_CMDS)
235 @$(MAKE) --no-print-directory -Onone "CC3220SF_LAUNCHXL_freertos_gcc.out" secondary-outputs
...
240 # Tool invocations
241 CC3220SF_LAUNCHXL_freertos_gcc.out: $(OBJS) $(LDS_SRCS) $(GEN_CMDS) C:/code/cc3220sf_ws/freertos_builds_CC3220SF_LAUNCHXL_release_gcc/Debug/libfreertos_builds_CC3220SF_LAUNCHXL_release_gcc.a
242 @echo 'Building target: "$@"'
...
Please advice,
Eitan