dd5d7c86d2
This can be enforced by pre-commit, but correct it separately to make it easier to review.
124 lines
5.4 KiB
C
124 lines
5.4 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2019 Lucian Copeland 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.
|
|
*/
|
|
|
|
#include "py/obj.h"
|
|
#include "py/mphal.h"
|
|
#include "peripherals/pins.h"
|
|
|
|
const mcu_pin_obj_t pin_PE02 = PIN(4, 2, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE03 = PIN(4, 3, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE04 = PIN(4, 4, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE05 = PIN(4, 5, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE06 = PIN(4, 6, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PC13 = PIN(2, 13, NO_ADC); //anti-tamp
|
|
const mcu_pin_obj_t pin_PC14 = PIN(2, 14, NO_ADC); //OSC32_IN
|
|
const mcu_pin_obj_t pin_PC15 = PIN(2, 15, NO_ADC); //OSC32_OUT
|
|
|
|
const mcu_pin_obj_t pin_PC00 = PIN(2, 0, ADC_INPUT(ADC_1,10));
|
|
const mcu_pin_obj_t pin_PC01 = PIN(2, 1, ADC_INPUT(ADC_1,11));
|
|
const mcu_pin_obj_t pin_PC02 = PIN(2, 2, ADC_INPUT(ADC_1,12));
|
|
const mcu_pin_obj_t pin_PC03 = PIN(2, 3, ADC_INPUT(ADC_1,13));
|
|
|
|
const mcu_pin_obj_t pin_PA00 = PIN(0, 0, ADC_INPUT(ADC_1,0));
|
|
const mcu_pin_obj_t pin_PA01 = PIN(0, 1, ADC_INPUT(ADC_1,1));
|
|
const mcu_pin_obj_t pin_PA02 = PIN(0, 2, ADC_INPUT(ADC_1,2));
|
|
const mcu_pin_obj_t pin_PA03 = PIN(0, 3, ADC_INPUT(ADC_1,3));
|
|
const mcu_pin_obj_t pin_PA04 = PIN(0, 4, ADC_INPUT(ADC_1,4));
|
|
const mcu_pin_obj_t pin_PA05 = PIN(0, 5, ADC_INPUT(ADC_1,5));
|
|
const mcu_pin_obj_t pin_PA06 = PIN(0, 6, ADC_INPUT(ADC_1,6));
|
|
const mcu_pin_obj_t pin_PA07 = PIN(0, 7, ADC_INPUT(ADC_1,7));
|
|
|
|
const mcu_pin_obj_t pin_PC04 = PIN(2, 4, ADC_INPUT(ADC_1,14));
|
|
const mcu_pin_obj_t pin_PC05 = PIN(2, 5, ADC_INPUT(ADC_1,15));
|
|
|
|
const mcu_pin_obj_t pin_PB00 = PIN(1, 0, ADC_INPUT(ADC_1,8));
|
|
const mcu_pin_obj_t pin_PB01 = PIN(1, 1, ADC_INPUT(ADC_1,9));
|
|
const mcu_pin_obj_t pin_PB02 = PIN(1, 2, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PE07 = PIN(4, 7, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE08 = PIN(4, 8, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE09 = PIN(4, 9, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE10 = PIN(4, 10, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE11 = PIN(4, 11, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE12 = PIN(4, 12, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE13 = PIN(4, 13, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE14 = PIN(4, 14, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE15 = PIN(4, 15, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PB10 = PIN(1, 10, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB12 = PIN(1, 12, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB13 = PIN(1, 13, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB14 = PIN(1, 14, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB15 = PIN(1, 15, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PD08 = PIN(3, 8, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD09 = PIN(3, 9, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD10 = PIN(3, 10, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD11 = PIN(3, 11, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD12 = PIN(3, 12, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD13 = PIN(3, 13, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD14 = PIN(3, 14, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD15 = PIN(3, 15, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PC06 = PIN(2, 6, NO_ADC);
|
|
const mcu_pin_obj_t pin_PC07 = PIN(2, 7, NO_ADC);
|
|
const mcu_pin_obj_t pin_PC08 = PIN(2, 8, NO_ADC);
|
|
const mcu_pin_obj_t pin_PC09 = PIN(2, 9, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PA08 = PIN(0, 8, NO_ADC);
|
|
const mcu_pin_obj_t pin_PA09 = PIN(0, 9, NO_ADC);
|
|
const mcu_pin_obj_t pin_PA10 = PIN(0, 10, NO_ADC);
|
|
const mcu_pin_obj_t pin_PA11 = PIN(0, 11, NO_ADC);
|
|
const mcu_pin_obj_t pin_PA12 = PIN(0, 12, NO_ADC);
|
|
const mcu_pin_obj_t pin_PA13 = PIN(0, 13, NO_ADC); //SWDIO
|
|
const mcu_pin_obj_t pin_PA14 = PIN(0, 14, NO_ADC); //SWCLK
|
|
const mcu_pin_obj_t pin_PA15 = PIN(0, 15, NO_ADC); //JTDI
|
|
|
|
const mcu_pin_obj_t pin_PC10 = PIN(2, 10, NO_ADC);
|
|
const mcu_pin_obj_t pin_PC11 = PIN(2, 11, NO_ADC);
|
|
const mcu_pin_obj_t pin_PC12 = PIN(2, 12, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PD00 = PIN(3, 0, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD01 = PIN(3, 1, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD02 = PIN(3, 2, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD03 = PIN(3, 3, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD04 = PIN(3, 4, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD05 = PIN(3, 5, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD06 = PIN(3, 6, NO_ADC);
|
|
const mcu_pin_obj_t pin_PD07 = PIN(3, 7, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PB03 = PIN(1, 3, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB04 = PIN(1, 4, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB05 = PIN(1, 5, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB06 = PIN(1, 6, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB07 = PIN(1, 7, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB08 = PIN(1, 8, NO_ADC);
|
|
const mcu_pin_obj_t pin_PB09 = PIN(1, 9, NO_ADC);
|
|
|
|
const mcu_pin_obj_t pin_PE00 = PIN(4, 0, NO_ADC);
|
|
const mcu_pin_obj_t pin_PE01 = PIN(4, 1, NO_ADC);
|