summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Shmidt <dimitrysh@google.com>2022-01-27 22:11:16 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-01-27 22:11:16 +0000
commit80ef23782f6e0e9411c21800e203e6c082c84536 (patch)
tree696d1ec85dc835172e8f1c6fa249c1a8b5ad6646
parent39cf8775a70e1fdff2bca8b2bbf038eab5477aaf (diff)
parent77bbc5c2f2d3b538326286c030d08d0220573c08 (diff)
downloadcontexthub-80ef23782f6e0e9411c21800e203e6c082c84536.tar.gz
firmware: Fix compilation due to lack of assert.h am: 78c7d3a84e am: b7bea74b83 am: 77bbc5c2f2
Original change: https://android-review.googlesource.com/c/device/google/contexthub/+/1960337 Change-Id: Ib096918ecb806eee9a6be8ad2dbb66de07dd1e13
-rw-r--r--firmware/chre/platform/assert.h25
-rw-r--r--firmware/firmware.mk1
2 files changed, 26 insertions, 0 deletions
diff --git a/firmware/chre/platform/assert.h b/firmware/chre/platform/assert.h
new file mode 100644
index 00000000..a2bba24c
--- /dev/null
+++ b/firmware/chre/platform/assert.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2022 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef PLATFORM_ASSERT_H_
+#define PLATFORM_ASSERT_H_
+
+#include <util/nano_assert.h>
+
+#define CHRE_ASSERT ASSERT
+#define CHRE_ASSERT_NOT_NULL ASSERT_NOT_NULL
+
+#endif
diff --git a/firmware/firmware.mk b/firmware/firmware.mk
index 221ee0cb..c35756a4 100644
--- a/firmware/firmware.mk
+++ b/firmware/firmware.mk
@@ -57,6 +57,7 @@ FLAGS += -I$(VARIANT_PATH)/inc
FLAGS += -Iexternal/freebsd/inc
FLAGS += -I../lib/include
FLAGS += -I../../../../system/chre/chre_api/include/chre_api
+FLAGS += -I../../../../system/chre/util/include
FLAGS += -Wall -Werror
#help avoid commmon embedded C mistakes