move pins and sdkconfig into soc specific directories
This commit is contained in:
parent
eb0738fb33
commit
dcfde14bf9
@ -7,6 +7,4 @@ CONFIG_ESP_CONSOLE_NONE=y
|
|||||||
CONFIG_ESP_CONSOLE_UART_NUM=-1
|
CONFIG_ESP_CONSOLE_UART_NUM=-1
|
||||||
CONFIG_CONSOLE_UART_NUM=-1
|
CONFIG_CONSOLE_UART_NUM=-1
|
||||||
# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set
|
# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set
|
||||||
CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT=y
|
CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT=y
|
||||||
# CONFIG_ESP32S2_PANIC_PRINT_HALT is not set
|
|
||||||
CONFIG_ESP32S2_PANIC_SILENT_REBOOT=y
|
|
@ -1,38 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the Micro Python project, http://micropython.org/
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2017 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_CONFIG_H
|
|
||||||
#define MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_CONFIG_H
|
|
||||||
|
|
||||||
#include "py/obj.h"
|
|
||||||
|
|
||||||
extern const mp_obj_type_t mcu_pin_type;
|
|
||||||
|
|
||||||
#define PIN_PREFIX_VALUES { &mcu_pin_type },
|
|
||||||
#define PIN_PREFIX_FIELDS mp_obj_base_t base;
|
|
||||||
|
|
||||||
|
|
||||||
#endif // MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_CONFIG_H
|
|
71
ports/espressif/peripherals/esp32s2/pins.c
Normal file
71
ports/espressif/peripherals/esp32s2/pins.c
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Micro Python project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "peripherals/pins.h"
|
||||||
|
|
||||||
|
const mcu_pin_obj_t pin_GPIO0 = PIN(0, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO1 = PIN(1, ADC_UNIT_1, ADC_CHANNEL_0, TOUCH_PAD_NUM1);
|
||||||
|
const mcu_pin_obj_t pin_GPIO2 = PIN(2, ADC_UNIT_1, ADC_CHANNEL_1, TOUCH_PAD_NUM2);
|
||||||
|
const mcu_pin_obj_t pin_GPIO3 = PIN(3, ADC_UNIT_1, ADC_CHANNEL_2, TOUCH_PAD_NUM3);
|
||||||
|
const mcu_pin_obj_t pin_GPIO4 = PIN(4, ADC_UNIT_1, ADC_CHANNEL_3, TOUCH_PAD_NUM4);
|
||||||
|
const mcu_pin_obj_t pin_GPIO5 = PIN(5, ADC_UNIT_1, ADC_CHANNEL_4, TOUCH_PAD_NUM5);
|
||||||
|
const mcu_pin_obj_t pin_GPIO6 = PIN(6, ADC_UNIT_1, ADC_CHANNEL_5, TOUCH_PAD_NUM6);
|
||||||
|
const mcu_pin_obj_t pin_GPIO7 = PIN(7, ADC_UNIT_1, ADC_CHANNEL_6, TOUCH_PAD_NUM7);
|
||||||
|
const mcu_pin_obj_t pin_GPIO8 = PIN(8, ADC_UNIT_1, ADC_CHANNEL_7, TOUCH_PAD_NUM8);
|
||||||
|
const mcu_pin_obj_t pin_GPIO9 = PIN(9, ADC_UNIT_1, ADC_CHANNEL_8, TOUCH_PAD_NUM9);
|
||||||
|
const mcu_pin_obj_t pin_GPIO10 = PIN(10, ADC_UNIT_1, ADC_CHANNEL_9, TOUCH_PAD_NUM10);
|
||||||
|
const mcu_pin_obj_t pin_GPIO11 = PIN(11, ADC_UNIT_2, ADC_CHANNEL_0, TOUCH_PAD_NUM11);
|
||||||
|
const mcu_pin_obj_t pin_GPIO12 = PIN(12, ADC_UNIT_2, ADC_CHANNEL_1, TOUCH_PAD_NUM12);
|
||||||
|
const mcu_pin_obj_t pin_GPIO13 = PIN(13, ADC_UNIT_2, ADC_CHANNEL_2, TOUCH_PAD_NUM13);
|
||||||
|
const mcu_pin_obj_t pin_GPIO14 = PIN(14, ADC_UNIT_2, ADC_CHANNEL_3, TOUCH_PAD_NUM14);
|
||||||
|
const mcu_pin_obj_t pin_GPIO15 = PIN(15, ADC_UNIT_2, ADC_CHANNEL_4, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO16 = PIN(16, ADC_UNIT_2, ADC_CHANNEL_5, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO17 = PIN(17, ADC_UNIT_2, ADC_CHANNEL_6, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO18 = PIN(18, ADC_UNIT_2, ADC_CHANNEL_7, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO19 = PIN(19, ADC_UNIT_2, ADC_CHANNEL_8, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO20 = PIN(20, ADC_UNIT_2, ADC_CHANNEL_9, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO21 = PIN(21, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO26 = PIN(26, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO27 = PIN(27, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO28 = PIN(28, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO29 = PIN(29, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO30 = PIN(30, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO31 = PIN(31, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO32 = PIN(32, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO33 = PIN(33, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO34 = PIN(34, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO35 = PIN(35, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO36 = PIN(36, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO37 = PIN(37, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO38 = PIN(38, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO39 = PIN(39, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO40 = PIN(40, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO41 = PIN(41, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO42 = PIN(42, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO43 = PIN(43, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO44 = PIN(44, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO45 = PIN(45, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
||||||
|
const mcu_pin_obj_t pin_GPIO46 = PIN(46, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
78
ports/espressif/peripherals/esp32s2/pins.h
Normal file
78
ports/espressif/peripherals/esp32s2/pins.h
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the Micro Python project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// DO NOT include this file directly.
|
||||||
|
// Use shared-bindings/microcontroller/Pin.h instead.
|
||||||
|
// This ensures that all necessary includes are already included.
|
||||||
|
|
||||||
|
#ifndef MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_ESP32S2_PINS_H
|
||||||
|
#define MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_ESP32S2_PINS_H
|
||||||
|
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO0;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO1;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO2;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO3;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO4;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO5;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO6;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO7;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO8;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO9;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO10;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO11;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO12;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO13;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO14;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO15;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO16;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO17;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO18;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO19;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO20;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO21;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO26;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO27;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO28;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO29;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO30;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO31;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO32;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO33;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO34;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO35;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO36;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO37;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO38;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO39;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO40;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO41;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO42;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO43;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO44;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO45;
|
||||||
|
extern const mcu_pin_obj_t pin_GPIO46;
|
||||||
|
|
||||||
|
#endif // MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_ESP32S2_PINS_H
|
@ -1,86 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the Micro Python project, http://micropython.org/
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2020 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "peripherals/pins.h"
|
|
||||||
|
|
||||||
#define NO_ADC 0
|
|
||||||
#define NO_ADC_CHANNEL ADC_CHANNEL_MAX
|
|
||||||
|
|
||||||
#define NO_TOUCH_CHANNEL TOUCH_PAD_MAX
|
|
||||||
|
|
||||||
// This macro is used to simplify pin definition in boards/<board>/pins.c
|
|
||||||
#define PIN(p_name, p_number, p_adc_index, p_adc_channel, p_touch_channel) \
|
|
||||||
const mcu_pin_obj_t pin_##p_name = { \
|
|
||||||
PIN_PREFIX_VALUES \
|
|
||||||
.number = p_number, \
|
|
||||||
.adc_index = p_adc_index, \
|
|
||||||
.adc_channel = p_adc_channel, \
|
|
||||||
.touch_channel = p_touch_channel, \
|
|
||||||
}
|
|
||||||
|
|
||||||
PIN(GPIO0, 0, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO1, 1, ADC_UNIT_1, ADC_CHANNEL_0, TOUCH_PAD_NUM1);
|
|
||||||
PIN(GPIO2, 2, ADC_UNIT_1, ADC_CHANNEL_1, TOUCH_PAD_NUM2);
|
|
||||||
PIN(GPIO3, 3, ADC_UNIT_1, ADC_CHANNEL_2, TOUCH_PAD_NUM3);
|
|
||||||
PIN(GPIO4, 4, ADC_UNIT_1, ADC_CHANNEL_3, TOUCH_PAD_NUM4);
|
|
||||||
PIN(GPIO5, 5, ADC_UNIT_1, ADC_CHANNEL_4, TOUCH_PAD_NUM5);
|
|
||||||
PIN(GPIO6, 6, ADC_UNIT_1, ADC_CHANNEL_5, TOUCH_PAD_NUM6);
|
|
||||||
PIN(GPIO7, 7, ADC_UNIT_1, ADC_CHANNEL_6, TOUCH_PAD_NUM7);
|
|
||||||
PIN(GPIO8, 8, ADC_UNIT_1, ADC_CHANNEL_7, TOUCH_PAD_NUM8);
|
|
||||||
PIN(GPIO9, 9, ADC_UNIT_1, ADC_CHANNEL_8, TOUCH_PAD_NUM9);
|
|
||||||
PIN(GPIO10, 10, ADC_UNIT_1, ADC_CHANNEL_9, TOUCH_PAD_NUM10);
|
|
||||||
PIN(GPIO11, 11, ADC_UNIT_2, ADC_CHANNEL_0, TOUCH_PAD_NUM11);
|
|
||||||
PIN(GPIO12, 12, ADC_UNIT_2, ADC_CHANNEL_1, TOUCH_PAD_NUM12);
|
|
||||||
PIN(GPIO13, 13, ADC_UNIT_2, ADC_CHANNEL_2, TOUCH_PAD_NUM13);
|
|
||||||
PIN(GPIO14, 14, ADC_UNIT_2, ADC_CHANNEL_3, TOUCH_PAD_NUM14);
|
|
||||||
PIN(GPIO15, 15, ADC_UNIT_2, ADC_CHANNEL_4, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO16, 16, ADC_UNIT_2, ADC_CHANNEL_5, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO17, 17, ADC_UNIT_2, ADC_CHANNEL_6, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO18, 18, ADC_UNIT_2, ADC_CHANNEL_7, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO19, 19, ADC_UNIT_2, ADC_CHANNEL_8, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO20, 20, ADC_UNIT_2, ADC_CHANNEL_9, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO21, 21, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO26, 26, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO27, 27, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO28, 28, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO29, 29, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO30, 30, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO31, 31, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO32, 32, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO33, 33, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO34, 34, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO35, 35, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO36, 36, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO37, 37, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO38, 38, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO39, 39, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO40, 40, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO41, 41, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO42, 42, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO43, 43, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO44, 44, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO45, 45, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
||||||
PIN(GPIO46, 46, NO_ADC, NO_ADC_CHANNEL, NO_TOUCH_CHANNEL);
|
|
@ -24,73 +24,49 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// DO NOT include this file directly. Use shared-bindings/microcontroller/Pin.h instead to ensure
|
// DO NOT include this file directly.
|
||||||
// that all necessary includes are already included.
|
// Use shared-bindings/microcontroller/Pin.h instead.
|
||||||
|
// This ensures that all necessary includes are already included.
|
||||||
|
|
||||||
#ifndef MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
#ifndef MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
||||||
#define MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
#define MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include "py/obj.h"
|
||||||
|
|
||||||
#include "esp32s2_peripherals_config.h"
|
|
||||||
#include "esp-idf/config/sdkconfig.h"
|
|
||||||
|
|
||||||
#include "components/hal/include/hal/gpio_types.h"
|
#include "components/hal/include/hal/gpio_types.h"
|
||||||
#include "components/hal/include/hal/adc_types.h"
|
#include "components/hal/include/hal/adc_types.h"
|
||||||
#include "components/hal/include/hal/touch_sensor_types.h"
|
#include "components/hal/include/hal/touch_sensor_types.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PIN_PREFIX_FIELDS
|
mp_obj_base_t base;
|
||||||
gpio_num_t number;
|
gpio_num_t number;
|
||||||
uint8_t adc_index : 2;
|
uint8_t adc_index : 2;
|
||||||
uint8_t adc_channel : 6;
|
uint8_t adc_channel : 6;
|
||||||
touch_pad_t touch_channel;
|
touch_pad_t touch_channel;
|
||||||
} mcu_pin_obj_t;
|
} mcu_pin_obj_t;
|
||||||
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO0;
|
extern const mp_obj_type_t mcu_pin_type;
|
||||||
extern const mcu_pin_obj_t pin_GPIO1;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO2;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO3;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO4;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO5;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO6;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO7;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO8;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO9;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO10;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO11;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO12;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO13;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO14;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO15;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO16;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO17;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO18;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO19;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO20;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO21;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO26;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO27;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO28;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO29;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO30;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO31;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO32;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO33;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO34;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO35;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO36;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO37;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO38;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO39;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO40;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO41;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO42;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO43;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO44;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO45;
|
|
||||||
extern const mcu_pin_obj_t pin_GPIO46;
|
|
||||||
|
|
||||||
#define NO_PIN (GPIO_NUM_NC)
|
#define NO_PIN (GPIO_NUM_NC)
|
||||||
|
|
||||||
|
#define NO_ADC 0
|
||||||
|
#define NO_ADC_CHANNEL ADC_CHANNEL_MAX
|
||||||
|
|
||||||
|
#define NO_TOUCH_CHANNEL TOUCH_PAD_MAX
|
||||||
|
|
||||||
|
// This macro is used to simplify pin definition in boards/<board>/pins.c
|
||||||
|
#define PIN(p_number, p_adc_index, p_adc_channel, p_touch_channel) \
|
||||||
|
{ \
|
||||||
|
{ &mcu_pin_type }, \
|
||||||
|
.number = p_number, \
|
||||||
|
.adc_index = p_adc_index, \
|
||||||
|
.adc_channel = p_adc_channel, \
|
||||||
|
.touch_channel = p_touch_channel, \
|
||||||
|
}
|
||||||
|
|
||||||
|
// Choose based on chip
|
||||||
|
#if CONFIG_IDF_TARGET_ESP32S2
|
||||||
|
#include "esp32s2/pins.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
#endif // MICROPY_INCLUDED_ESPRESSIF_PERIPHERALS_PINS_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user