mirror of
https://github.com/micropython/micropython.git
synced 2025-12-13 08:20:13 +01:00
This is only a surface level refactor, some deeper refactoring would be possible with (for example) the SDIO interface in mimxrt and stm32, or the BTHCI interface which is is similar on supported ports. But sticking to cases where the macros are the same across all ports. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <angus@redyak.com.au>
92 lines
3.9 KiB
C
92 lines
3.9 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2024-2025 OpenMV LLC.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
#ifndef MICROPY_INCLUDED_ALIF_CYW43_CONFIGPORT_H
|
|
#define MICROPY_INCLUDED_ALIF_CYW43_CONFIGPORT_H
|
|
|
|
// The board-level config will be included here, so it can set some CYW43 values.
|
|
#include "extmod/mpbthci.h"
|
|
#include "extmod/cyw43_config_common.h"
|
|
|
|
#ifndef static_assert
|
|
#define static_assert(expr, msg) typedef int static_assert_##__LINE__[(expr) ? 1 : -1]
|
|
#endif
|
|
|
|
#define CYW43_USE_SPI (1)
|
|
#define CYW43_ENABLE_BLUETOOTH_OVER_UART (1)
|
|
#define CYW43_LWIP (1)
|
|
#define CYW43_USE_STATS (0)
|
|
#define CYW43_PRINTF(...) mp_printf(MP_PYTHON_PRINTER, __VA_ARGS__)
|
|
|
|
#if 0
|
|
#define CYW43_VERBOSE_DEBUG (1)
|
|
#define CYW43_VDEBUG(...) mp_printf(MP_PYTHON_PRINTER, __VA_ARGS__)
|
|
#define CYW43_DEBUG(...) mp_printf(MP_PYTHON_PRINTER, __VA_ARGS__)
|
|
#define CYW43_INFO(...) mp_printf(MP_PYTHON_PRINTER, __VA_ARGS__)
|
|
#define CYW43_WARN(...) mp_printf(MP_PYTHON_PRINTER, __VA_ARGS__)
|
|
#endif
|
|
|
|
#define CYW43_CLEAR_SDIO_INT (1)
|
|
|
|
#define CYW43_SDPCM_SEND_COMMON_WAIT __WFE()
|
|
#define CYW43_DO_IOCTL_WAIT // __WFE()
|
|
|
|
#define cyw43_hal_uart_set_baudrate mp_bluetooth_hci_uart_set_baudrate
|
|
#define cyw43_hal_uart_write mp_bluetooth_hci_uart_write
|
|
#define cyw43_hal_uart_readchar mp_bluetooth_hci_uart_readchar
|
|
|
|
#define CYW43_PIN_WL_REG_ON pin_WL_REG_ON
|
|
#define CYW43_PIN_WL_IRQ pin_WL_IRQ
|
|
|
|
#define CYW43_PIN_BT_REG_ON pin_BT_REG_ON
|
|
#define CYW43_PIN_BT_HOST_WAKE pin_BT_HOST_WAKE
|
|
#define CYW43_PIN_BT_DEV_WAKE pin_BT_DEV_WAKE
|
|
#define CYW43_PIN_BT_CTS pin_BT_UART_CTS
|
|
|
|
#define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func)
|
|
|
|
void cyw43_post_poll_hook(void);
|
|
|
|
#undef cyw43_hal_pin_config // mp_hal_pin_config on alif port is not API compatible
|
|
|
|
static inline void cyw43_hal_pin_config(mp_hal_pin_obj_t pin, uint32_t mode, uint32_t pull, uint32_t alt) {
|
|
if (mode == MP_HAL_PIN_MODE_INPUT) {
|
|
mp_hal_pin_input(pin);
|
|
} else {
|
|
mp_hal_pin_output(pin);
|
|
}
|
|
}
|
|
static inline void cyw43_hal_pin_config_irq_falling(mp_hal_pin_obj_t pin, bool enable) {
|
|
mp_hal_pin_config_irq_falling(pin, enable);
|
|
}
|
|
|
|
#define cyw43_bluetooth_controller_init mp_bluetooth_hci_controller_init
|
|
#define cyw43_bluetooth_controller_deinit mp_bluetooth_hci_controller_deinit
|
|
#define cyw43_bluetooth_controller_sleep_maybe mp_bluetooth_hci_controller_sleep_maybe
|
|
#define cyw43_bluetooth_controller_woken mp_bluetooth_hci_controller_woken
|
|
#define cyw43_bluetooth_controller_wakeup mp_bluetooth_hci_controller_wakeup
|
|
|
|
#endif // MICROPY_INCLUDED_ALIF_CYW43_CONFIGPORT_H
|