Skip to content
Draft
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ To build the **de facto standard for smart, wireless labeling** in embedded envi
- **Firmware**: Zephyr RTOS / nRF Connect SDK (Nordic)
- **MCU**: nRF52 and nRF54 Series (Build available for nRF54L15DK, nRF52840DK)
- **Communication**: BLE Peripheral + NFC Wake
- **BLE Profile**: Electronic Shelf Label (ESL) Profile - Bluetooth 5.4
- **Display Driver**: eInk (GoodDisplay/Waveshare) over SPI
- **Power**: Coin cell – optimized sleep/wake cycle
- **OTA Support**: BLE
Expand Down
18 changes: 18 additions & 0 deletions app/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,21 @@
# This file contains selected Kconfig options for the application.

CONFIG_SENSOR=y

# Bluetooth Stack Configuration
CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DEVICE_NAME="PSLabel"

# GATT Configuration
CONFIG_BT_GATT_CLIENT=y

# Bluetooth Controller - Extended Advertising (required for ESL)
CONFIG_BT_CTLR_ADV_EXT=y
CONFIG_BT_EXT_ADV=y

# Periodic Advertising Sync (for ESL peripheral/tag role)
CONFIG_BT_PER_ADV_SYNC=y

# ESL (Electronic Shelf Label) Profile
CONFIG_BT_ESL=y
6 changes: 6 additions & 0 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ manifest:
remotes:
- name: ncs
url-base: https://github.com/nrfconnect
- name: nordicplayground
url-base: https://github.com/NordicPlayground

projects:
- name: nrf
remote: ncs
repo-path: sdk-nrf
revision: v3.0.2
import: true
- name: nrf-esl-bluetooth
remote: nordicplayground
revision: v2.5.1-stable
path: modules/lib/nrf-esl-bluetooth