2016-08-26 16:56:03 -07:00
|
|
|
/*
|
2016-11-03 15:50:59 -07:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-08-26 16:56:03 -07:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2016-11-03 15:50:59 -07:00
|
|
|
* Copyright (c) 2016 Scott Shawcroft
|
2016-08-26 16:56:03 -07:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-08-25 22:17:07 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER_PIN_H
|
|
|
|
#define MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER_PIN_H
|
2016-11-03 15:50:59 -07:00
|
|
|
|
2017-04-12 15:24:50 -07:00
|
|
|
#include "common-hal/microcontroller/Pin.h"
|
2016-11-03 15:50:59 -07:00
|
|
|
#include "py/obj.h"
|
|
|
|
|
|
|
|
// Type object used in Python. Should be shared between ports.
|
|
|
|
extern const mp_obj_type_t mcu_pin_type;
|
|
|
|
|
2021-08-05 01:27:54 +02:00
|
|
|
const mcu_pin_obj_t *validate_obj_is_pin(mp_obj_t obj);
|
|
|
|
const mcu_pin_obj_t *validate_obj_is_pin_or_none(mp_obj_t obj);
|
|
|
|
const mcu_pin_obj_t *validate_obj_is_free_pin(mp_obj_t obj);
|
|
|
|
const mcu_pin_obj_t *validate_obj_is_free_pin_or_none(mp_obj_t obj);
|
2021-08-17 17:55:26 -05:00
|
|
|
void validate_no_duplicate_pins(mp_obj_t seq, qstr arg_name);
|
|
|
|
void validate_no_duplicate_pins_2(mp_obj_t seq1, mp_obj_t seq2, qstr arg_name1, qstr arg_name2);
|
2021-08-05 01:27:54 +02:00
|
|
|
void validate_list_is_free_pins(qstr what, const mcu_pin_obj_t **pins_out, mp_int_t max_pins, mp_obj_t seq, uint8_t *count_out);
|
2021-06-09 12:15:31 -05:00
|
|
|
void validate_pins(qstr what, uint8_t *pin_nos, mp_int_t max_pins, mp_obj_t seq, uint8_t *count_out);
|
2020-02-28 23:32:24 -05:00
|
|
|
|
2021-03-15 19:27:36 +05:30
|
|
|
void assert_pin_free(const mcu_pin_obj_t *pin);
|
2016-12-06 10:31:38 -08:00
|
|
|
|
2021-03-15 19:27:36 +05:30
|
|
|
bool common_hal_mcu_pin_is_free(const mcu_pin_obj_t *pin);
|
|
|
|
void common_hal_never_reset_pin(const mcu_pin_obj_t *pin);
|
|
|
|
void common_hal_reset_pin(const mcu_pin_obj_t *pin);
|
|
|
|
uint8_t common_hal_mcu_pin_number(const mcu_pin_obj_t *pin);
|
|
|
|
void common_hal_mcu_pin_claim(const mcu_pin_obj_t *pin);
|
2020-03-10 13:12:01 -05:00
|
|
|
void common_hal_mcu_pin_claim_number(uint8_t pin_no);
|
|
|
|
void common_hal_mcu_pin_reset_number(uint8_t pin_no);
|
|
|
|
|
|
|
|
#define COMMON_HAL_MCU_NO_PIN ((uint8_t)0xff)
|
2016-11-29 15:49:50 -08:00
|
|
|
|
2017-08-25 22:17:07 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER_PIN_H
|