spi_master: fix spi cs_ena_posttrans issue

This commit is contained in:
Armando
2022-01-06 17:54:58 +08:00
parent 5d47efb72d
commit 56a707eef4
4 changed files with 14 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
@@ -738,7 +738,7 @@ static inline void spi_ll_set_dummy(spi_dev_t *hw, int dummy_n)
*/
static inline void spi_ll_master_set_cs_hold(spi_dev_t *hw, int hold)
{
hw->ctrl2.cs_hold_time = hold - 1;
hw->ctrl2.cs_hold_time = hold;
hw->user.cs_hold = hold ? 1 : 0;
}