mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-14 21:59:00 +00:00
- 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
26 lines
464 B
C
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
|