From c5e9e88eb8c6039cd2a4d2b3fdae0b1e3d8aea40 Mon Sep 17 00:00:00 2001
From: guowenxue <guowenxue@gmail.com>
Date: Tue, 12 Mar 2024 17:19:23 +0800
Subject: [PATCH] Update sht20 source code, add both ioctl and read/write API support
---
modules/makefile | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/modules/makefile b/modules/makefile
index dad362d..e1e04b5 100644
--- a/modules/makefile
+++ b/modules/makefile
@@ -12,6 +12,10 @@
#
#*******************************************************************************
+PWD=$(shell pwd)
+TOPDIR=${PWD}/../project/
+OPENLIBS_INCPATH=${TOPDIR}/openlibs/install/include
+OPENLIBS_LIBPATH=${TOPDIR}/openlibs/install/lib
BUILD_ARCH=$(shell uname -m)
ifneq ($(findstring $(BUILD_ARCH), "x86_64" "i386"),)
@@ -20,7 +24,8 @@
CC=${CROSS_COMPILE}gcc
-LDFLAGS+=-lm -lgpiod
+CFLAGS+=-I${OPENLIBS_INCPATH}
+LDFLAGS+=-L${OPENLIBS_LIBPATH} -lm -lgpiod
SRCFILES = $(wildcard *.c)
BINARIES=$(SRCFILES:%.c=%)
--
Gitblit v1.9.1