mirror of
https://github.com/espressif/esp-idf
synced 2025-03-20 22:49:08 -04:00
30 lines
815 B
C
30 lines
815 B
C
/*
|
|
* SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* Some of the baseband control registers.
|
|
* PU/PD fields defined here are used in sleep related functions.
|
|
*/
|
|
|
|
#define BBPD_CTRL (DR_REG_BB_BASE + 0x0054)
|
|
#define BB_FFT_FORCE_PU (BIT(3))
|
|
#define BB_FFT_FORCE_PU_M (BIT(3))
|
|
#define BB_FFT_FORCE_PU_V 1
|
|
#define BB_FFT_FORCE_PU_S 3
|
|
#define BB_FFT_FORCE_PD (BIT(2))
|
|
#define BB_FFT_FORCE_PD_M (BIT(2))
|
|
#define BB_FFT_FORCE_PD_V 1
|
|
#define BB_FFT_FORCE_PD_S 2
|
|
#define BB_DC_EST_FORCE_PU (BIT(1))
|
|
#define BB_DC_EST_FORCE_PU_M (BIT(1))
|
|
#define BB_DC_EST_FORCE_PU_V 1
|
|
#define BB_DC_EST_FORCE_PU_S 1
|
|
#define BB_DC_EST_FORCE_PD (BIT(0))
|
|
#define BB_DC_EST_FORCE_PD_M (BIT(0))
|
|
#define BB_DC_EST_FORCE_PD_V 1
|
|
#define BB_DC_EST_FORCE_PD_S 0
|