2022-12-06 11:57:43 +08:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2023-08-07 19:31:10 +08:00
|
|
|
#include <stdlib.h>
|
2022-12-06 11:57:43 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
|
#include "hal/parlio_hal.h"
|
|
|
|
|
#include "hal/parlio_ll.h"
|
|
|
|
|
|
|
|
|
|
void parlio_hal_init(parlio_hal_context_t *hal)
|
|
|
|
|
{
|
|
|
|
|
hal->regs = &PARL_IO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void parlio_hal_deinit(parlio_hal_context_t *hal)
|
|
|
|
|
{
|
|
|
|
|
hal->regs = NULL;
|
|
|
|
|
}
|