2018-05-15 13:15:24 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
#ifndef MICROPY_INCLUDED_SUPERVISOR_SHARED_BOARD_BUSSES_H
|
|
|
|
#define MICROPY_INCLUDED_SUPERVISOR_SHARED_BOARD_BUSSES_H
|
2018-05-15 13:15:24 -04:00
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
#include "py/obj.h"
|
|
|
|
|
2019-04-05 22:06:37 -04:00
|
|
|
mp_obj_t common_hal_board_get_spi(void);
|
|
|
|
mp_obj_t common_hal_board_create_spi(void);
|
2019-01-17 21:19:07 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_0(board_i2c_obj);
|
2018-05-15 13:15:24 -04:00
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
mp_obj_t board_spi(void);
|
2019-01-17 21:19:07 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_0(board_spi_obj);
|
2018-05-16 14:58:57 -04:00
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
mp_obj_t board_uart(void);
|
2019-01-17 21:19:07 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ_0(board_uart_obj);
|
2018-05-17 12:14:51 -04:00
|
|
|
|
2018-09-12 17:19:43 -04:00
|
|
|
void reset_board_busses(void);
|
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
#endif // MICROPY_INCLUDED_SUPERVISOR_SHARED_BOARD_BUSSES_H
|