From 6b93865cfc8ee78cb663eee2e3de219ec1530885 Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Fri, 20 Nov 2020 06:13:49 -0800 Subject: [PATCH] cubepilot_cubeorange: Use px4_platform_configure --- boards/cubepilot/cubeorange/src/init.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/boards/cubepilot/cubeorange/src/init.c b/boards/cubepilot/cubeorange/src/init.c index 7702d67463..af6b2189f8 100644 --- a/boards/cubepilot/cubeorange/src/init.c +++ b/boards/cubepilot/cubeorange/src/init.c @@ -189,5 +189,9 @@ __EXPORT int board_app_initialize(uintptr_t arg) sdio_mediachange(sdio_dev, true); #endif /* CONFIG_MMCSD */ + /* Configure the HW based on the manifest */ + + px4_platform_configure(); + return OK; }