mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
458 B
C
17 lines
458 B
C
/*
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// #include "hal/dac_hal.h"
|
|
|
|
// void dac_hal_cw_generator_config(dac_cw_config_t *cw)
|
|
// {
|
|
// dac_ll_cw_set_freq(cw->freq);
|
|
// dac_ll_cw_set_scale(cw->en_ch, cw->scale);
|
|
// dac_ll_cw_set_phase(cw->en_ch, cw->phase);
|
|
// dac_ll_cw_set_dc_offset(cw->en_ch, cw->offset);
|
|
// dac_ll_cw_set_channel(cw->en_ch, true);
|
|
// }
|