Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
ZEPHYR_SDK: [0.16.3]
BOARD: ["nrf9160dk/nrf9160/ns","aludel_elixir/nrf9160/ns"]
BOARD: ["nrf9160dk/nrf9160/ns","aludel_elixir/nrf9160/ns", "aludel_mini/nrf9160/ns"]

uses: ./.github/workflows/build_zephyr.yml
with:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.1.0] - 2025-05-12

### Changed

- Merge changes from [`golioth/reference-design-template@template_v2.1.0`](https://github.com/golioth/reference-design-template/tree/template_v2.1.0).
- Merge changes from [`golioth/reference-design-template@template_v2.7.1`](https://github.com/golioth/reference-design-template/tree/template_v2.7.1).
- Prevent sending excessive warning log messages on flaky connections.
- Only attempt to send sensor data when Golioth client is connected.

Expand Down
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ images](https://github.com/golioth/reference-design-modbus-vibration-monitor/rel

- Nordic nRF9160-DK
- Golioth Aludel Elixir
- Golioth Aludel Mini

### Additional Sensors/Components

Expand Down Expand Up @@ -102,21 +103,18 @@ the LightDB Stream service:
(in/sec)
- `sensor/x_axis/velocity/rms/mm_per_sec`: X-Axis RMS Velocity
(mm/sec)
- `sensor/x_axis/acceleration/crest_factor`: X-Axis Crest Factor
- `sensor/x_axis/acceleration/high_frequency_rms`: X-Axis
High-Frequency RMS Acceleration (G)
- `sensor/z_axis//acceleration/kurtosis`: X-Axis Kurtosis
- `sensor/z_axis//acceleration/peak`: Z-Axis Peak Acceleration (G)
- `sensor/z_axis//acceleration/rms`: Z-Axis RMS Acceleration (G)
- `sensor/z_axis//velocity/peak/frequency`: Z-Axis Peak Velocity
- `sensor/z_axis/acceleration/kurtosis`: X-Axis Kurtosis
- `sensor/z_axis/acceleration/peak`: Z-Axis Peak Acceleration (G)
- `sensor/z_axis/acceleration/rms`: Z-Axis RMS Acceleration (G)
- `sensor/z_axis/velocity/peak/frequency`: Z-Axis Peak Velocity
Component Frequency (Hz)
- `sensor/z_axis//velocity/peak/in_per_sec`: Z-Axis Peak Velocity
- `sensor/z_axis/velocity/peak/in_per_sec`: Z-Axis Peak Velocity
(in/sec)
- `sensor/z_axis//velocity/peak/mm_per_sec`: Z-Axis Peak Velocity
- `sensor/z_axis/velocity/peak/mm_per_sec`: Z-Axis Peak Velocity
(mm/sec)
- `sensor/z_axis//velocity/rms/in_per_sec`: Z-Axis RMS Velocity
- `sensor/z_axis/velocity/rms/in_per_sec`: Z-Axis RMS Velocity
(in/sec)
- `sensor/z_axis//velocity/rms/mm_per_sec`: Z-Axis RMS Velocity
- `sensor/z_axis/velocity/rms/mm_per_sec`: Z-Axis RMS Velocity
(mm/sec)

``` json
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_MINOR = 1
PATCHLEVEL = 0
VERSION_TWEAK = 0
EXTRAVERSION =
4 changes: 0 additions & 4 deletions prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ CONFIG_GOLIOTH_RPC=y
CONFIG_GOLIOTH_SETTINGS=y
CONFIG_GOLIOTH_STREAM=y

# Prevent a "loop of doom" issue on marginal/flaky LTE connections causing
# repeated "Resending request" warning log messages to be sent.
CONFIG_GOLIOTH_LOG_LEVEL_ERR=y

# Enable common sample library
CONFIG_GOLIOTH_SAMPLE_COMMON=y

Expand Down