Skip to content
Open
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
4 changes: 4 additions & 0 deletions openthread_border_router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.1.2

- Keep retrying unavailable network RCPs without crashing the app

## 3.1.1

- Bump beta to OTBR POSIX version d83ddc62 to test ePSKc / Thread 1.4 Credentials Sharing support ahead of the upstream `release-v2026.09.0` tag
Expand Down
2 changes: 1 addition & 1 deletion openthread_border_router/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 3.1.1
version: 3.1.2
breaking_versions: [3.0.0]
slug: openthread_border_router
name: OpenThread Border Router
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ declare network_device
network_device=$(bashio::config 'network_device')

bashio::log.info "Starting socat TCP client for OTBR daemon..."
exec s6-notifyoncheck -d -s 300 -w 300 \
"/usr/bin/socat" -d pty,raw,echo=0,link=/tmp/ttyOTBR,ignoreeof \
"tcp:${network_device}"
# Connect before creating the PTY so readiness is only reported when the
# network RCP is reachable. Keep both connection attempts and readiness checks
# running during an outage.
exec s6-notifyoncheck -d -s 300 -w 300 -n 0 \
"/usr/bin/socat" -d \
"tcp:${network_device},connect-timeout=10,forever,interval=10" \
pty,raw,echo=0,link=/tmp/ttyOTBR,ignoreeof