zephyr_groups.h 704 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_ZEPHYR_MCUMGR_GRP_H_
  7. #define ZEPHYR_INCLUDE_ZEPHYR_MCUMGR_GRP_H_
  8. #include <kernel.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* The file contains definitions of Zephyr specific mgmt commands. The group numbers decrease
  13. * from PERUSER to avoid collision with user defined groups.
  14. */
  15. #define ZEPHYR_MGMT_GRP_BASE (MGMT_GROUP_ID_PERUSER - 1)
  16. /* Basic group */
  17. #define ZEPHYR_MGMT_GRP_BASIC ZEPHYR_MGMT_GRP_BASE
  18. #define ZEPHYR_MGMT_GRP_BASIC_CMD_ERASE_STORAGE 0 /* Command to erase storage partition */
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif /* ZEPHYR_INCLUDE_ZEPHYR_MCUMGR_GRP_H_ */