Skip to content

Commit

Permalink
Updates changelog, adds fan to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilherme F. de Freitas committed Dec 17, 2021
1 parent f4d3490 commit 64710ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.5.0] - 2021-12-17
### Added
- Adds fan RPM support
- Rsyncs to remote folder automatically on startup
- Version tagging

### Changed
- Only present modules are initialized (in conjunction with bbb-function)

## [1.4.0] - 2021-11-25
### Added
- Monitors power factor, voltage glitches and frequency fully
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OUT = bin

.PHONY: all directories clean install_common

build: directories $(OUT)/bme $(OUT)/volt $(OUT)/pru1.out
build: directories $(OUT)/fan $(OUT)/bme $(OUT)/volt $(OUT)/pru1.out

directories: $(OUT)
wireless: $(OUT)/wireless
Expand All @@ -28,6 +28,9 @@ $(OUT)/bme: /usr/local/lib/libhiredis.so $(PROGS)
$(OUT)/wireless: /usr/local/lib/libhiredis.so $(PROGS)
$(COMPILE.c) $^ wireless.c -o $@ -lpthread -lhiredis

$(OUT)/fan: /usr/local/lib/libhiredis.so $(PROGS)
$(COMPILE.c) $^ fan.c -o $@ -lpthread -lhiredis

$(OUT)/pru1.out:
$(MAKE) -C pru

Expand Down

0 comments on commit 64710ec

Please sign in to comment.