2024-05-09 10:36 AM
I recently create a project for a NUCLEO-WB15CC on STM32CubeMX where the output was the following:
Is there any solution for this warning?
Solved! Go to Solution.
2024-05-09 11:04 AM - edited 2024-05-09 11:28 AM
Hello,
In one of the files that defined that macro:
#ifndef PAUSE
#define PAUSE(t) ...
But need to check which PAUSE definition you need to adopt!
Seems that that warning is indicating PAUSE macro was defined differently in app_common.h and ble_common.h.
You need to check.
2024-05-09 10:40 AM
It's better to post the code & the messages as text - not images;
use this button:
@marcos_ramos wrote:Is there any solution for this warning?
Don't redefine it!
2024-05-09 11:04 AM - edited 2024-05-09 11:28 AM
Hello,
In one of the files that defined that macro:
#ifndef PAUSE
#define PAUSE(t) ...
But need to check which PAUSE definition you need to adopt!
Seems that that warning is indicating PAUSE macro was defined differently in app_common.h and ble_common.h.
You need to check.