I'm getting this weird compiler warning whenever I use one of the UIA loggers:
Suggested parenthesis around expression 'Log_info0 ( "this is my debug message" )'
In fact, for each line of log code, the compiler is generating 3 of such warnings.
Here is what my includes look like:
#include <xdc/std.h> #include <xdc/cfg/global.h> /* BIOS Header files */ #include <ti/sysbios/BIOS.h> #include <xdc/runtime/Log.h> /* TI-RTOS Header files */ #include <ti/drivers/GPIO.h> #include <stdint.h> #include <stdbool.h> #include "inc/hw_types.h" #include "inc/hw_memmap.h" #include "driverlib/sysctl.h" #include "driverlib/gpio.h" #include "Board.h"