tree: c5387e956086905cbda90176f1f9397c5d1cf714 [path history] [tgz]
  1. args.gni
  2. BLEManagerImpl.cpp
  3. BLEManagerImpl.h
  4. BlePlatformConfig.h
  5. BUILD.gn
  6. CHIPDevicePlatformConfig.h
  7. CHIPDevicePlatformEvent.h
  8. CHIPPlatformConfig.h
  9. ConfigurationManagerImpl.cpp
  10. ConfigurationManagerImpl.h
  11. ConnectivityManagerImpl.cpp
  12. ConnectivityManagerImpl.h
  13. DiagnosticDataProviderImpl.cpp
  14. DiagnosticDataProviderImpl.h
  15. DiagnosticDataProviderImplGetter.cpp
  16. InetPlatformConfig.h
  17. InetUtils.cpp
  18. InetUtils.h
  19. KeyValueStoreManagerImpl.cpp
  20. KeyValueStoreManagerImpl.h
  21. Logging.cpp
  22. NFCManagerImpl.cpp
  23. NFCManagerImpl.h
  24. PlatformManagerImpl.cpp
  25. PlatformManagerImpl.h
  26. README.md
  27. SysHeapMalloc.cpp
  28. SysHeapMalloc.h
  29. SystemPlatformConfig.h
  30. SystemTimeSupport.cpp
  31. ThreadStackManagerImpl.cpp
  32. ThreadStackManagerImpl.h
  33. ZephyrConfig.cpp
  34. ZephyrConfig.h
src/platform/Zephyr/README.md

Overview of Zephyr Adaption

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

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

include/platform/Zephyr/PlatformManagerImpl.h
Zephyr/PlatformManagerImpl.cpp

  • Concrete implementation of PlatformManager interface
  • Provides initialization of the CHIP stack and core event loop for the chip task
  • Relies on GenericPlatformManagerImpl_POSIX<> class to provide most of the implementation

include/platform/Zephyr/ConfigurationManagerImpl.h
Zephyr/ConfigurationManagerImpl.cpp

  • Concrete implementation of ConfigurationManager interface
  • Manages storage and retrieval of persistent configuration data
  • Relies on GenericConfigurationManagerImpl<> classes to implement most API functionality
  • Delegates low-level reading and writing of persistent values to ZephyrConfig class

include/platform/Zephyr/ThreadStackManagerImpl.h
Zephyr/ThreadStackManagerImpl.cpp

  • Concrete implementation of ThreadStackManager interface
  • Supports Thread stack initialization and core event loop processing
  • Relies on GenericThreadStackManagerImpl_OpenThread/POSIX<> classes to implement most API functionality

include/platform/Zephyr/BLEManagerImpl.h
Zephyr/BLEManagerImpl.cpp

  • Concrete implementation of the BLEManager interface
  • Maps CHIP‘s BLE interface abstractions (BleLayer, BlePlatformDelegate, BleApplicationDelegate) onto the platform’s native BLE services
  • Implements chip-compatible BLE advertising.

platform/Zephyr/Logging.cpp

  • Adaption of chip debug logging to platform logging facility.

platform/Zephyr/ZephyrConfig.cpp

  • Implements low-level read/write of persistent configuration values
  • Class API specifically designed to work in conjunction with the GenericConfigurationManagerImpl<> class.

platform/Zephyr/CHIPDevicePlatformEvent.h

  • Defines platform-specific event types and data for the chip Device Layer.