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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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).

## [1.1.0] - Unreleased
## [1.1.0] - 2025-10-14

### Added

Expand All @@ -18,10 +18,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Merge changes from
[`golioth/reference-design-template@template_v2.4.1`](https://github.com/golioth/reference-design-template/tree/template_v2.4.1).
[`golioth/reference-design-template@template_v2.8.0`](https://github.com/golioth/reference-design-template/tree/template_v2.8.0).
- Update board names for Zephyr hardware model v2
- Use `VERSION` file instead of `prj.conf` to set firmware version

### Removed

- Aludel Mini is EOL and no longer supported

## [1.0.0] - 2023-09-05

### Added
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@ version number than what is currently running on the device.
2. Upload the `build/app/zephyr/zephyr.signed.bin` file as a Package for
your Golioth project.

- Use `main` as the package name.
- Use either `nrf9160dk` or `aludel_elixir` as the package name,
depending on which board the update file was built for. (These
package names were configured in this repository's board `.conf`
files.) Use `main` as the package name.
- Use the same version number from step 1.

3. Create a Cohort and add your device to it.
Expand Down
6 changes: 3 additions & 3 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_MAJOR = 0
VERSION_MINOR = 0
PATCHLEVEL = 1
VERSION_MAJOR = 1
VERSION_MINOR = 1
PATCHLEVEL = 0
VERSION_TWEAK = 0
EXTRAVERSION =
6 changes: 6 additions & 0 deletions boards/aludel_elixir_ns.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ CONFIG_ALUDEL_BATTERY_MONITOR=y

# Turn on regulator to power click headers
CONFIG_REGULATOR=y

# Use Sensor without a GPIO INT line
CONFIG_APDS9960_FETCH_MODE_POLL=y

# Use a unique package name to use with Packages/Cohorts/Deployments
CONFIG_GOLIOTH_FW_UPDATE_PACKAGE_NAME="aludel_elixir"
2 changes: 1 addition & 1 deletion boards/aludel_elixir_ns.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
apds9960: apds9960@39 {
compatible = "avago,apds9960";
reg = <0x39>;
int-gpios = <&gpio0 2 (GPIO_ACTIVE_LOW)>;
int-gpios = <&gpio0 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
};
};
5 changes: 5 additions & 0 deletions boards/nrf9160dk_nrf9160_ns.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Use Sensor without a GPIO INT line
CONFIG_APDS9960_FETCH_MODE_POLL=y

# Use a unique package name to use with Packages/Cohorts/Deployments
CONFIG_GOLIOTH_FW_UPDATE_PACKAGE_NAME="nrf9160dk"
2 changes: 1 addition & 1 deletion boards/nrf9160dk_nrf9160_ns.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
apds9960: apds9960@39 {
compatible = "avago,apds9960";
reg = <0x39>;
int-gpios = <&gpio0 3 (GPIO_ACTIVE_LOW)>;
int-gpios = <&gpio0 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
};

lis2dh: lis2dh@18 {
Expand Down