2016-09-01 05:07:20 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Damien P. George
|
|
|
|
*
|
|
|
|
* 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_EXTMOD_MACHINE_SPI_H
|
|
|
|
#define MICROPY_INCLUDED_EXTMOD_MACHINE_SPI_H
|
|
|
|
|
|
|
|
#include "py/obj.h"
|
2016-10-03 05:43:44 +00:00
|
|
|
#include "py/mphal.h"
|
2018-03-09 06:25:58 +00:00
|
|
|
#include "drivers/bus/spi.h"
|
2016-09-01 05:07:20 +00:00
|
|
|
|
2020-09-25 04:47:34 +00:00
|
|
|
// Temporary support for legacy construction of SoftSPI via SPI type.
|
|
|
|
#define MP_MACHINE_SPI_CHECK_FOR_LEGACY_SOFTSPI_CONSTRUCTION(n_args, n_kw, all_args) \
|
|
|
|
do { \
|
|
|
|
if (n_args == 0 || all_args[0] == MP_OBJ_NEW_SMALL_INT(-1)) { \
|
|
|
|
mp_print_str(MICROPY_ERROR_PRINTER, "Warning: SPI(-1, ...) is deprecated, use SoftSPI(...) instead\n"); \
|
|
|
|
if (n_args != 0) { \
|
|
|
|
--n_args; \
|
|
|
|
++all_args; \
|
|
|
|
} \
|
|
|
|
return mp_machine_soft_spi_type.make_new(&mp_machine_soft_spi_type, n_args, n_kw, all_args); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2016-09-01 05:07:20 +00:00
|
|
|
// SPI protocol
|
|
|
|
typedef struct _mp_machine_spi_p_t {
|
2016-12-08 02:47:01 +00:00
|
|
|
void (*init)(mp_obj_base_t *obj, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args);
|
|
|
|
void (*deinit)(mp_obj_base_t *obj); // can be NULL
|
2016-10-03 01:39:31 +00:00
|
|
|
void (*transfer)(mp_obj_base_t *obj, size_t len, const uint8_t *src, uint8_t *dest);
|
2016-09-01 05:07:20 +00:00
|
|
|
} mp_machine_spi_p_t;
|
|
|
|
|
2016-10-03 05:43:44 +00:00
|
|
|
typedef struct _mp_machine_soft_spi_obj_t {
|
|
|
|
mp_obj_base_t base;
|
2018-03-09 06:25:58 +00:00
|
|
|
mp_soft_spi_obj_t spi;
|
2016-10-03 05:43:44 +00:00
|
|
|
} mp_machine_soft_spi_obj_t;
|
|
|
|
|
2018-03-02 08:12:52 +00:00
|
|
|
extern const mp_machine_spi_p_t mp_machine_soft_spi_p;
|
2016-12-08 02:47:01 +00:00
|
|
|
extern const mp_obj_type_t mp_machine_soft_spi_type;
|
|
|
|
extern const mp_obj_dict_t mp_machine_spi_locals_dict;
|
|
|
|
|
|
|
|
mp_obj_t mp_machine_spi_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args);
|
|
|
|
|
2016-10-18 00:06:20 +00:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_machine_spi_read_obj);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_machine_spi_readinto_obj);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ_2(mp_machine_spi_write_obj);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ_3(mp_machine_spi_write_readinto_obj);
|
2016-09-01 05:07:20 +00:00
|
|
|
|
|
|
|
#endif // MICROPY_INCLUDED_EXTMOD_MACHINE_SPI_H
|