Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mbed-os/features/nanostack/FEATURE_NANOSTACK/sal-stack-nanostack/docs/img/NanostackRfPhy.plantuml.txt
- Committer:
- demayer
- Date:
- 2020-03-28
- Revision:
- 0:6bf0743ece18
File content as of revision 0:6bf0743ece18:
@startuml package "mbed OS Socket abstraction" { abstract class MeshInterface -|> NetworkInterface interface NetworkInterface { +connect(); +disconnect(); +NetworkStack *get_stack(); } interface NetworkStack } package "Nanostack PHY driver interface" { interface NanostackPhy { +int8_t phy_register() +void get_mac_address(uint8_t *mac) +void set_mac_address(uint8_t *mac) } NanostackPhy <|-- abstract class NanostackRfPhy NanostackPhy <|-- abstract class NanostackEthernetPhy } package "mesh API internals" { class NanostackInterface { {static} +NanostackInterface *get_stack() #socket_open() #socket_close() #socket_bind() #socket_listen() #socket_connect() #socket_accept() #socket_send() #socket_recv() #socket_sendto() #socket_recvfrom() #socket_attach() #setsockopt() #getsockopt() } NetworkStack <|-- NanostackInterface abstract class MeshInterfaceNanostack { +initialize(NanostackPhy *phy) +connect() +disconnect() #NetworkStack *get_stack(void) } MeshInterface <|-- MeshInterfaceNanostack NanostackPhy --o MeshInterfaceNanostack MeshInterfaceNanostack -left-> NanostackInterface : get_stack() } package "mbed-mesh-api" { MeshInterfaceNanostack <|-- LoWPANNDInterface MeshInterfaceNanostack <|-- ThreadInterface MeshInterfaceNanostack <|-- NanostackEthernetInterface } hide empty members hide empty attributes hide empty fields @enduml