1 /*
2  * Copyright (c) 2025 Arduino SA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDED_DRIVERS_ESP_HOSTED_HAL_H
8 #define ZEPHYR_INCLUDED_DRIVERS_ESP_HOSTED_HAL_H
9 int esp_hosted_hal_init(const struct device *dev);
10 bool esp_hosted_hal_data_ready(const struct device *dev);
11 int esp_hosted_hal_spi_transfer(const struct device *dev, void *tx, void *rx, uint32_t size);
12 #endif /* ZEPHYR_INCLUDED_DRIVERS_ESP_HOSTED_HAL_H */
13