nxp_ucans32k146: Use px4_platform_configure

This commit is contained in:
David Sidrane
2020-11-20 06:13:53 -08:00
committed by Daniel Agar
parent ad1c603af4
commit 74a0693040
+7 -1
View File
@@ -94,7 +94,13 @@ int board_app_initialize(uintptr_t arg)
/* Perform board-specific initialization */
return s32k1xx_bringup();
int rv = s32k1xx_bringup();
/* Configure the HW based on the manifest */
px4_platform_configure();
return rv;
#endif
}