Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Telink] Fix simulatedIndex max number & disable NET_MGMT #26293

Merged
merged 12 commits into from
May 5, 2023
7 changes: 3 additions & 4 deletions config/telink/app/zephyr.conf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ CONFIG_LOG_MAX_LEVEL=3

# Generic networking options
CONFIG_NETWORKING=y
CONFIG_NET_CONFIG_SETTINGS=y
CONFIG_NET_SOCKETS=y
CONFIG_NET_SOCKETS_POSIX_NAMES=n
CONFIG_NET_CONFIG_INIT_TIMEOUT=0
Expand Down Expand Up @@ -94,9 +93,6 @@ CONFIG_NET_L2_OPENTHREAD=y
CONFIG_OPENTHREAD_DEBUG=y
CONFIG_OPENTHREAD_L2_DEBUG=y

CONFIG_NET_CONFIG_MY_IPV6_ADDR="fdde:ad00:beef::1"
CONFIG_NET_CONFIG_PEER_IPV6_ADDR="fdde:ad00:beef::2"

# OpenThread configs
CONFIG_OPENTHREAD_SLAAC=y
CONFIG_OPENTHREAD_RADIO_WORKQUEUE_STACK_SIZE=608
Expand All @@ -122,6 +118,9 @@ CONFIG_SETTINGS_NVS_SECTOR_SIZE_MULT=8
# Enable NVS lookup cache
CONFIG_NVS_LOOKUP_CACHE=y

# Enable extended discovery
CONFIG_CHIP_EXTENDED_DISCOVERY=y
s07641069 marked this conversation as resolved.
Show resolved Hide resolved

# Reboot system when fault happened
CONFIG_TELINK_B91_REBOOT_ON_FAULT=y

Expand Down
2 changes: 1 addition & 1 deletion src/platform/telink/ConnectivityManagerImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ inline ConnectivityManager & ConnectivityMgr(void)
* Returns the platform-specific implementation of the ConnectivityManager singleton object.
*
* chip applications can use this to gain access to features of the ConnectivityManager
* that are specific to the ESP32 platform.
* that are specific to the Telink platform.
*/
inline ConnectivityManagerImpl & ConnectivityMgrImpl(void)
{
Expand Down