tree: e383b06f19fecb1fe6801b436c2c342722a61511 [path history] [tgz]
  1. wifi/
  2. args.gni
  3. BLEManagerImpl.h
  4. BlePlatformConfig.h
  5. BUILD.gn
  6. CHIPDevicePlatformConfig.h
  7. CHIPDevicePlatformEvent.h
  8. CHIPPlatformConfig.h
  9. ConfigurationManagerImpl.h
  10. ConnectivityManagerImpl.cpp
  11. ConnectivityManagerImpl.h
  12. DiagnosticDataProviderImplNrf.cpp
  13. DiagnosticDataProviderImplNrf.h
  14. ExternalFlashManager.h
  15. FactoryDataParser.c
  16. FactoryDataParser.h
  17. FactoryDataProvider.cpp
  18. FactoryDataProvider.h
  19. InetPlatformConfig.h
  20. KeyValueStoreManagerImpl.h
  21. NFCManagerImpl.h
  22. OTAImageProcessorImpl.cpp
  23. OTAImageProcessorImpl.h
  24. PlatformManagerImpl.h
  25. README.md
  26. Reboot.cpp
  27. Reboot.h
  28. SystemPlatformConfig.h
  29. ThreadStackManagerImpl.h
src/platform/nrfconnect/README.md

Overview of CHIP nRF Connect Adaption

The following is a quick overview of the nRF Connect adaptation of CHIP. Most of this code will have parallels in any new adaptation.

(All file names are relative to connectedhomeip/src/...).

include/platform/nrfconnect/PlatformManagerImpl.h

  • Uses Zephyr platform implementation of PlatformManager interface.

include/platform/nrfconnect/ConfigurationManagerImpl.h

  • Uses Zephyr platform implementation of ConfigurationManager interface.

include/platform/nrfconnect/ConnectivityManagerImpl.h
nrfconnect/ConnectivityManagerImpl.cpp

  • Concrete implementation of ConnectivityManager interface
  • Provides high-level APIs for managing device connectivity
  • Relies on various generic implementation classes to provide API functionality
  • Very much a work-in-progress in the nrfconnect branch

include/platform/nrfconnect/DeviceNetworkProvisioningDelegateImpl.h
nrfconnect/DeviceNetworkProvisioningDelegateImpl.cpp

  • Concrete implementation of DeviceNetworkProvisioningDelegate interface
  • Provides high-level APIs for managing network provisioning

include/platform/nrfconnect/ThreadStackManagerImpl.h

  • Uses Zephyr platform implementation of ThreadStackManager interface.

include/platform/nrfconnect/BLEManagerImpl.h

  • Uses Zephyr platform implementation of BLEManager interface.

include/platform/nrfconnect/CHIPDevicePlatformEvent.h

  • Uses Zephyr platform definitions of platform-specific event types and data for the chip Device Layer.