diff options
author | Wesley Ellis <tahnok@gmail.com> | 2021-09-14 18:52:15 -0400 |
---|---|---|
committer | Wesley Ellis <tahnok@gmail.com> | 2021-09-25 17:37:46 -0400 |
commit | b0703ec7778f8a7e4c9d6dd964b1773f3d59ce38 (patch) | |
tree | e382691373fb222cb894a9704eb972be804f4b5c /apps/beats-time/make | |
parent | 115c555c4c0eec6f8cef787335fcefddc4472d43 (diff) | |
download | Sensor-Watch-b0703ec7778f8a7e4c9d6dd964b1773f3d59ce38.tar.gz Sensor-Watch-b0703ec7778f8a7e4c9d6dd964b1773f3d59ce38.tar.bz2 Sensor-Watch-b0703ec7778f8a7e4c9d6dd964b1773f3d59ce38.zip |
Beats time app + watch
Use BMP280 code as a base, but stripped down to bare bones.
Then added a new 'mode' for the current Swatch Internet Time (aka beats)
Diffstat (limited to 'apps/beats-time/make')
-rwxr-xr-x | apps/beats-time/make/.gitignore | 1 | ||||
-rwxr-xr-x | apps/beats-time/make/Makefile | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/apps/beats-time/make/.gitignore b/apps/beats-time/make/.gitignore new file mode 100755 index 00000000..3722ac63 --- /dev/null +++ b/apps/beats-time/make/.gitignore @@ -0,0 +1 @@ +build/
diff --git a/apps/beats-time/make/Makefile b/apps/beats-time/make/Makefile new file mode 100755 index 00000000..112d8e50 --- /dev/null +++ b/apps/beats-time/make/Makefile @@ -0,0 +1,24 @@ +# Leave this line at the top of the file; it has all the watch library sources and includes. +TOP = ../../.. +include $(TOP)/make.mk + +# If you add any other subdirectories with header files you wish to include, add them after ../ +# Note that you will need to add a backslash at the end of any line you wish to continue, i.e. +# INCLUDES += \ +# -I../ \ +# -I../drivers/ \ +# -I../utils/ +INCLUDES += \ + -I../ \ + +# If you add any other source files you wish to compile, add them after ../app.c +# Note that you will need to add a backslash at the end of any line you wish to continue, i.e. +# SRCS += \ +# ../app.c \ +# ../drivers/bmp280.c \ +# ../utils/temperature.c +SRCS += \ + ../app.c \ + +# Leave this line at the bottom of the file; it has all the targets for making your project. +include $(TOP)/rules.mk |