Files
Vikram Dattu 21a7351e6c Added KVS WebRTC camera example
- Example uses `esp_rmaker_get_aws_security_token` internally to get the token
 - The credential callback is registered with webrtc SDK which it can call
 - webrtc SDK uses NVS to cache the signaling info internally
2025-12-10 19:50:39 +05:30

26 lines
464 B
C

/*
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Register sleep-related CLI commands
*
* This function registers CLI commands for power management, such as
* wake-up commands for split mode architectures.
*
* @return 0 on success, non-zero on failure
*/
int sleep_command_register_cli(void);
#ifdef __cplusplus
}
#endif