From 7b8fa5e739e91671c926e9e7c887579d82728513 Mon Sep 17 00:00:00 2001 From: Kristofer Jonsson Date: Thu, 16 Dec 2021 14:02:56 +0100 Subject: Timing adapter fix, init constructor priority The timing adapters are attached to the Ethos-U AXI ports and should only be initialized if the platform has been built with NPU support. Add priority to init the constructor, insuring it will run before any other constructor. This is important because the init constructor sets up UART. Change-Id: I189687437b95b11f6503c7631720e7883c24ada6 --- targets/common/src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'targets/common/src/init.cpp') diff --git a/targets/common/src/init.cpp b/targets/common/src/init.cpp index 54e4590..0876070 100644 --- a/targets/common/src/init.cpp +++ b/targets/common/src/init.cpp @@ -18,6 +18,6 @@ #include -__attribute__((constructor)) void init() { +__attribute__((constructor(500))) void init() { EthosU::targetSetup(); } -- cgit v1.2.1