Skip to content

Commit b275c1b

Browse files
committed
Fix CY8CPROTO_062_4343W baremetal build
Compile in Cypress WiFi and RTOS modules only if the library are included in the build
1 parent c4a0808 commit b275c1b

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "cy_psoc6_whd",
3+
"config": {
4+
"present": 1
5+
}
6+
}

targets/TARGET_Cypress/TARGET_PSOC6/common/cy_network_buffer.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* limitations under the License.
2424
*******************************************************************************/
2525

26-
#if defined(CYBSP_WIFI_CAPABLE)
26+
#if MBED_CONF_CY_PSOC6_WHD_PRESENT
2727

2828
#include <stdlib.h>
2929
#include "cy_network_buffer.h"
@@ -109,4 +109,4 @@ whd_result_t cy_buffer_add_remove_at_front(whd_buffer_t *buffer, int32_t add_rem
109109
return WHD_SUCCESS;
110110
}
111111

112-
#endif /* defined(CYBSP_WIFI_CAPABLE) */
112+
#endif /* MBED_CONF_CY_PSOC6_WHD_PRESENT */

targets/TARGET_Cypress/TARGET_PSOC6/common/cybsp_wifi.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* See the License for the specific language governing permissions and
2222
* limitations under the License.
2323
*******************************************************************************/
24-
#if defined(CYBSP_WIFI_CAPABLE)
24+
#if MBED_CONF_CY_PSOC6_WHD_PRESENT
2525

2626
#include "cybsp.h"
2727
#include "cybsp_wifi.h"
@@ -248,4 +248,4 @@ whd_driver_t cybsp_get_wifi_driver(void)
248248
}
249249
#endif
250250

251-
#endif /* defined(CYBSP_WIFI_CAPABLE) */
251+
#endif /* MBED_CONF_CY_PSOC6_WHD_PRESENT */

targets/TARGET_Cypress/TARGET_PSOC6/mbed_overrides.c

+2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
#include "cyhal_hwmgr.h"
2222
#include "cybsp.h"
2323
#include "mbed_power_mgmt.h"
24+
#if MBED_CONF_RTOS_PRESENT
2425
#include "rtos_idle.h"
26+
#endif // MBED_CONF_RTOS_PRESENT
2527
#include "us_ticker_api.h"
2628

2729
#if defined(CY_ENABLE_XIP_PROGRAM)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "cy_psoc6csp_rtos",
3+
"config": {
4+
"present": 1
5+
}
6+
}

0 commit comments

Comments
 (0)