|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- /* Teensyduino Core Library
- * http://www.pjrc.com/teensy/
- * Copyright (c) 2018 PJRC.COM, LLC.
- *
- * 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:
- *
- * 1. The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * 2. If the Software is incorporated into a build system that allows
- * selection among a list of target devices, then similar target
- * devices manufactured by PJRC.COM must be included in the list of
- * target devices and selectable in the same manner.
- *
- * 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.
- */
-
- #pragma once
- #include "imxrt.h"
- #include "pins_arduino.h"
-
- #define HIGH 1
- #define LOW 0
- #define INPUT 0
- #define OUTPUT 1
- #define INPUT_PULLUP 2
- #define INPUT_PULLDOWN 3
- #define OUTPUT_OPENDRAIN 4
- #define INPUT_DISABLE 5
- #define LSBFIRST 0
- #define MSBFIRST 1
- #define _BV(n) (1<<(n))
- #define CHANGE 4
- #define FALLING 2
- #define RISING 3
-
- #define CORE_NUM_TOTAL_PINS 34
- #define CORE_NUM_DIGITAL 34
- #define CORE_NUM_INTERRUPT 34
- #define CORE_NUM_ANALOG 14
- #define CORE_NUM_PWM 27
-
- #define CORE_PIN0_BIT 3
- #define CORE_PIN1_BIT 2
- #define CORE_PIN2_BIT 4
- #define CORE_PIN3_BIT 5
- #define CORE_PIN4_BIT 6
- #define CORE_PIN5_BIT 7
- #define CORE_PIN6_BIT 17
- #define CORE_PIN7_BIT 16
- #define CORE_PIN8_BIT 10
- #define CORE_PIN9_BIT 11
- #define CORE_PIN10_BIT 0
- #define CORE_PIN11_BIT 2
- #define CORE_PIN12_BIT 1
- #define CORE_PIN13_BIT 3
- #define CORE_PIN14_BIT 18
- #define CORE_PIN15_BIT 19
- #define CORE_PIN16_BIT 23
- #define CORE_PIN17_BIT 22
- #define CORE_PIN18_BIT 17
- #define CORE_PIN19_BIT 16
- #define CORE_PIN20_BIT 26
- #define CORE_PIN21_BIT 27
- #define CORE_PIN22_BIT 24
- #define CORE_PIN23_BIT 25
- #define CORE_PIN24_BIT 12
- #define CORE_PIN25_BIT 13
- #define CORE_PIN26_BIT 30
- #define CORE_PIN27_BIT 31
- #define CORE_PIN28_BIT 18
- #define CORE_PIN29_BIT 31
- #define CORE_PIN30_BIT 24
- #define CORE_PIN31_BIT 23
- #define CORE_PIN32_BIT 12
- #define CORE_PIN33_BIT 8
-
- #define CORE_PIN0_BITMASK (1<<(CORE_PIN0_BIT))
- #define CORE_PIN1_BITMASK (1<<(CORE_PIN1_BIT))
- #define CORE_PIN2_BITMASK (1<<(CORE_PIN2_BIT))
- #define CORE_PIN3_BITMASK (1<<(CORE_PIN3_BIT))
- #define CORE_PIN4_BITMASK (1<<(CORE_PIN4_BIT))
- #define CORE_PIN5_BITMASK (1<<(CORE_PIN5_BIT))
- #define CORE_PIN6_BITMASK (1<<(CORE_PIN6_BIT))
- #define CORE_PIN7_BITMASK (1<<(CORE_PIN7_BIT))
- #define CORE_PIN8_BITMASK (1<<(CORE_PIN8_BIT))
- #define CORE_PIN9_BITMASK (1<<(CORE_PIN9_BIT))
- #define CORE_PIN10_BITMASK (1<<(CORE_PIN10_BIT))
- #define CORE_PIN11_BITMASK (1<<(CORE_PIN11_BIT))
- #define CORE_PIN12_BITMASK (1<<(CORE_PIN12_BIT))
- #define CORE_PIN13_BITMASK (1<<(CORE_PIN13_BIT))
- #define CORE_PIN14_BITMASK (1<<(CORE_PIN14_BIT))
- #define CORE_PIN15_BITMASK (1<<(CORE_PIN15_BIT))
- #define CORE_PIN16_BITMASK (1<<(CORE_PIN16_BIT))
- #define CORE_PIN17_BITMASK (1<<(CORE_PIN17_BIT))
- #define CORE_PIN18_BITMASK (1<<(CORE_PIN18_BIT))
- #define CORE_PIN19_BITMASK (1<<(CORE_PIN19_BIT))
- #define CORE_PIN20_BITMASK (1<<(CORE_PIN20_BIT))
- #define CORE_PIN21_BITMASK (1<<(CORE_PIN21_BIT))
- #define CORE_PIN22_BITMASK (1<<(CORE_PIN22_BIT))
- #define CORE_PIN23_BITMASK (1<<(CORE_PIN23_BIT))
- #define CORE_PIN24_BITMASK (1<<(CORE_PIN24_BIT))
- #define CORE_PIN25_BITMASK (1<<(CORE_PIN25_BIT))
- #define CORE_PIN26_BITMASK (1<<(CORE_PIN26_BIT))
- #define CORE_PIN27_BITMASK (1<<(CORE_PIN27_BIT))
- #define CORE_PIN28_BITMASK (1<<(CORE_PIN28_BIT))
- #define CORE_PIN29_BITMASK (1<<(CORE_PIN29_BIT))
- #define CORE_PIN30_BITMASK (1<<(CORE_PIN30_BIT))
- #define CORE_PIN31_BITMASK (1<<(CORE_PIN31_BIT))
- #define CORE_PIN32_BITMASK (1<<(CORE_PIN32_BIT))
- #define CORE_PIN33_BITMASK (1<<(CORE_PIN33_BIT))
-
- #define CORE_PIN0_PORTREG GPIO1_DR
- #define CORE_PIN1_PORTREG GPIO1_DR
- #define CORE_PIN2_PORTREG GPIO4_DR
- #define CORE_PIN3_PORTREG GPIO4_DR
- #define CORE_PIN4_PORTREG GPIO4_DR
- #define CORE_PIN5_PORTREG GPIO4_DR
- #define CORE_PIN6_PORTREG GPIO2_DR
- #define CORE_PIN7_PORTREG GPIO2_DR
- #define CORE_PIN8_PORTREG GPIO2_DR
- #define CORE_PIN9_PORTREG GPIO2_DR
- #define CORE_PIN10_PORTREG GPIO2_DR
- #define CORE_PIN11_PORTREG GPIO2_DR
- #define CORE_PIN12_PORTREG GPIO2_DR
- #define CORE_PIN13_PORTREG GPIO2_DR
- #define CORE_PIN14_PORTREG GPIO1_DR
- #define CORE_PIN15_PORTREG GPIO1_DR
- #define CORE_PIN16_PORTREG GPIO1_DR
- #define CORE_PIN17_PORTREG GPIO1_DR
- #define CORE_PIN18_PORTREG GPIO1_DR
- #define CORE_PIN19_PORTREG GPIO1_DR
- #define CORE_PIN20_PORTREG GPIO1_DR
- #define CORE_PIN21_PORTREG GPIO1_DR
- #define CORE_PIN22_PORTREG GPIO1_DR
- #define CORE_PIN23_PORTREG GPIO1_DR
- #define CORE_PIN24_PORTREG GPIO1_DR
- #define CORE_PIN25_PORTREG GPIO1_DR
- #define CORE_PIN26_PORTREG GPIO1_DR
- #define CORE_PIN27_PORTREG GPIO1_DR
- #define CORE_PIN28_PORTREG GPIO3_DR
- #define CORE_PIN29_PORTREG GPIO4_DR
- #define CORE_PIN30_PORTREG GPIO4_DR
- #define CORE_PIN31_PORTREG GPIO4_DR
- #define CORE_PIN32_PORTREG GPIO2_DR
- #define CORE_PIN33_PORTREG GPIO4_DR
-
- #define CORE_PIN0_PORTSET GPIO1_DR_SET
- #define CORE_PIN1_PORTSET GPIO1_DR_SET
- #define CORE_PIN2_PORTSET GPIO4_DR_SET
- #define CORE_PIN3_PORTSET GPIO4_DR_SET
- #define CORE_PIN4_PORTSET GPIO4_DR_SET
- #define CORE_PIN5_PORTSET GPIO4_DR_SET
- #define CORE_PIN6_PORTSET GPIO2_DR_SET
- #define CORE_PIN7_PORTSET GPIO2_DR_SET
- #define CORE_PIN8_PORTSET GPIO2_DR_SET
- #define CORE_PIN9_PORTSET GPIO2_DR_SET
- #define CORE_PIN10_PORTSET GPIO2_DR_SET
- #define CORE_PIN11_PORTSET GPIO2_DR_SET
- #define CORE_PIN12_PORTSET GPIO2_DR_SET
- #define CORE_PIN13_PORTSET GPIO2_DR_SET
- #define CORE_PIN14_PORTSET GPIO1_DR_SET
- #define CORE_PIN15_PORTSET GPIO1_DR_SET
- #define CORE_PIN16_PORTSET GPIO1_DR_SET
- #define CORE_PIN17_PORTSET GPIO1_DR_SET
- #define CORE_PIN18_PORTSET GPIO1_DR_SET
- #define CORE_PIN19_PORTSET GPIO1_DR_SET
- #define CORE_PIN20_PORTSET GPIO1_DR_SET
- #define CORE_PIN21_PORTSET GPIO1_DR_SET
- #define CORE_PIN22_PORTSET GPIO1_DR_SET
- #define CORE_PIN23_PORTSET GPIO1_DR_SET
- #define CORE_PIN24_PORTSET GPIO1_DR_SET
- #define CORE_PIN25_PORTSET GPIO1_DR_SET
- #define CORE_PIN26_PORTSET GPIO1_DR_SET
- #define CORE_PIN27_PORTSET GPIO1_DR_SET
- #define CORE_PIN28_PORTSET GPIO3_DR_SET
- #define CORE_PIN29_PORTSET GPIO4_DR_SET
- #define CORE_PIN30_PORTSET GPIO4_DR_SET
- #define CORE_PIN31_PORTSET GPIO4_DR_SET
- #define CORE_PIN32_PORTSET GPIO2_DR_SET
- #define CORE_PIN33_PORTSET GPIO4_DR_SET
-
- #define CORE_PIN0_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN1_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN2_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN3_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN4_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN5_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN6_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN7_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN8_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN9_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN10_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN11_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN12_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN13_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN14_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN15_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN16_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN17_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN18_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN19_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN20_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN21_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN22_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN23_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN24_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN25_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN26_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN27_PORTCLEAR GPIO1_DR_CLEAR
- #define CORE_PIN28_PORTCLEAR GPIO3_DR_CLEAR
- #define CORE_PIN29_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN30_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN31_PORTCLEAR GPIO4_DR_CLEAR
- #define CORE_PIN32_PORTCLEAR GPIO2_DR_CLEAR
- #define CORE_PIN33_PORTCLEAR GPIO4_DR_CLEAR
-
- #define CORE_PIN0_DDRREG GPIO1_GDIR
- #define CORE_PIN1_DDRREG GPIO1_GDIR
- #define CORE_PIN2_DDRREG GPIO4_GDIR
- #define CORE_PIN3_DDRREG GPIO4_GDIR
- #define CORE_PIN4_DDRREG GPIO4_GDIR
- #define CORE_PIN5_DDRREG GPIO4_GDIR
- #define CORE_PIN6_DDRREG GPIO2_GDIR
- #define CORE_PIN7_DDRREG GPIO2_GDIR
- #define CORE_PIN8_DDRREG GPIO2_GDIR
- #define CORE_PIN9_DDRREG GPIO2_GDIR
- #define CORE_PIN10_DDRREG GPIO2_GDIR
- #define CORE_PIN11_DDRREG GPIO2_GDIR
- #define CORE_PIN12_DDRREG GPIO2_GDIR
- #define CORE_PIN13_DDRREG GPIO2_GDIR
- #define CORE_PIN14_DDRREG GPIO1_GDIR
- #define CORE_PIN15_DDRREG GPIO1_GDIR
- #define CORE_PIN16_DDRREG GPIO1_GDIR
- #define CORE_PIN17_DDRREG GPIO1_GDIR
- #define CORE_PIN18_DDRREG GPIO1_GDIR
- #define CORE_PIN19_DDRREG GPIO1_GDIR
- #define CORE_PIN20_DDRREG GPIO1_GDIR
- #define CORE_PIN21_DDRREG GPIO1_GDIR
- #define CORE_PIN22_DDRREG GPIO1_GDIR
- #define CORE_PIN23_DDRREG GPIO1_GDIR
- #define CORE_PIN24_DDRREG GPIO1_GDIR
- #define CORE_PIN25_DDRREG GPIO1_GDIR
- #define CORE_PIN26_DDRREG GPIO1_GDIR
- #define CORE_PIN27_DDRREG GPIO1_GDIR
- #define CORE_PIN28_DDRREG GPIO3_GDIR
- #define CORE_PIN29_DDRREG GPIO4_GDIR
- #define CORE_PIN30_DDRREG GPIO4_GDIR
- #define CORE_PIN31_DDRREG GPIO4_GDIR
- #define CORE_PIN32_DDRREG GPIO2_GDIR
- #define CORE_PIN33_DDRREG GPIO4_GDIR
-
- #define CORE_PIN0_PINREG GPIO1_PSR
- #define CORE_PIN1_PINREG GPIO1_PSR
- #define CORE_PIN2_PINREG GPIO4_PSR
- #define CORE_PIN3_PINREG GPIO4_PSR
- #define CORE_PIN4_PINREG GPIO4_PSR
- #define CORE_PIN5_PINREG GPIO4_PSR
- #define CORE_PIN6_PINREG GPIO2_PSR
- #define CORE_PIN7_PINREG GPIO2_PSR
- #define CORE_PIN8_PINREG GPIO2_PSR
- #define CORE_PIN9_PINREG GPIO2_PSR
- #define CORE_PIN10_PINREG GPIO2_PSR
- #define CORE_PIN11_PINREG GPIO2_PSR
- #define CORE_PIN12_PINREG GPIO2_PSR
- #define CORE_PIN13_PINREG GPIO2_PSR
- #define CORE_PIN14_PINREG GPIO1_PSR
- #define CORE_PIN15_PINREG GPIO1_PSR
- #define CORE_PIN16_PINREG GPIO1_PSR
- #define CORE_PIN17_PINREG GPIO1_PSR
- #define CORE_PIN18_PINREG GPIO1_PSR
- #define CORE_PIN19_PINREG GPIO1_PSR
- #define CORE_PIN20_PINREG GPIO1_PSR
- #define CORE_PIN21_PINREG GPIO1_PSR
- #define CORE_PIN22_PINREG GPIO1_PSR
- #define CORE_PIN23_PINREG GPIO1_PSR
- #define CORE_PIN24_PINREG GPIO1_PSR
- #define CORE_PIN25_PINREG GPIO1_PSR
- #define CORE_PIN26_PINREG GPIO1_PSR
- #define CORE_PIN27_PINREG GPIO1_PSR
- #define CORE_PIN28_PINREG GPIO3_PSR
- #define CORE_PIN29_PINREG GPIO4_PSR
- #define CORE_PIN30_PINREG GPIO4_PSR
- #define CORE_PIN31_PINREG GPIO4_PSR
- #define CORE_PIN32_PINREG GPIO2_PSR
- #define CORE_PIN33_PINREG GPIO4_PSR
-
- // mux config registers control which peripheral uses the pin
- #define CORE_PIN0_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_02
- #define CORE_PIN1_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_03
- #define CORE_PIN2_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_04
- #define CORE_PIN3_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_05
- #define CORE_PIN4_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_06
- #define CORE_PIN5_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_07
- #define CORE_PIN6_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B1_01
- #define CORE_PIN7_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B1_00
- #define CORE_PIN8_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_10
- #define CORE_PIN9_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_11
- #define CORE_PIN10_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_00
- #define CORE_PIN11_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_02
- #define CORE_PIN12_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_01
- #define CORE_PIN13_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03
- #define CORE_PIN14_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_02
- #define CORE_PIN15_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_03
- #define CORE_PIN16_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_07
- #define CORE_PIN17_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_06
- #define CORE_PIN18_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_01
- #define CORE_PIN19_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_00
- #define CORE_PIN20_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_10
- #define CORE_PIN21_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_11
- #define CORE_PIN22_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_08
- #define CORE_PIN23_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_09
- #define CORE_PIN24_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_12
- #define CORE_PIN25_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_13
- #define CORE_PIN26_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_14
- #define CORE_PIN27_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_15
- #define CORE_PIN28_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_32
- #define CORE_PIN29_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_31
- #define CORE_PIN30_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_24
- #define CORE_PIN31_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_23
- #define CORE_PIN32_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_12
- #define CORE_PIN33_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_08
-
- // pad config registers control pullup/pulldown/keeper, drive strength, etc
- #define CORE_PIN0_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_02
- #define CORE_PIN1_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_03
- #define CORE_PIN2_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_04
- #define CORE_PIN3_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_05
- #define CORE_PIN4_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_06
- #define CORE_PIN5_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_07
- #define CORE_PIN6_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B1_01
- #define CORE_PIN7_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B1_00
- #define CORE_PIN8_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_10
- #define CORE_PIN9_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_11
- #define CORE_PIN10_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_00
- #define CORE_PIN11_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_02
- #define CORE_PIN12_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_01
- #define CORE_PIN13_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03
- #define CORE_PIN14_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_02
- #define CORE_PIN15_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_03
- #define CORE_PIN16_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_07
- #define CORE_PIN17_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_06
- #define CORE_PIN18_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_01
- #define CORE_PIN19_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_00
- #define CORE_PIN20_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_10
- #define CORE_PIN21_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_11
- #define CORE_PIN22_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_08
- #define CORE_PIN23_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_09
- #define CORE_PIN24_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_12
- #define CORE_PIN25_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_13
- #define CORE_PIN26_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_14
- #define CORE_PIN27_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_15
- #define CORE_PIN28_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_32
- #define CORE_PIN29_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_31
- #define CORE_PIN30_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_24
- #define CORE_PIN31_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_23
- #define CORE_PIN32_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_12
- #define CORE_PIN33_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_08
-
-
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void digitalWrite(uint8_t pin, uint8_t val);
- static inline void digitalWriteFast(uint8_t pin, uint8_t val) __attribute__((always_inline, unused));
- static inline void digitalWriteFast(uint8_t pin, uint8_t val)
- {
- if (__builtin_constant_p(pin)) {
- if (val) {
- if (pin == 0) {
- CORE_PIN0_PORTSET = CORE_PIN0_BITMASK;
- } else if (pin == 1) {
- CORE_PIN1_PORTSET = CORE_PIN1_BITMASK;
- } else if (pin == 2) {
- CORE_PIN2_PORTSET = CORE_PIN2_BITMASK;
- } else if (pin == 3) {
- CORE_PIN3_PORTSET = CORE_PIN3_BITMASK;
- } else if (pin == 4) {
- CORE_PIN4_PORTSET = CORE_PIN4_BITMASK;
- } else if (pin == 5) {
- CORE_PIN5_PORTSET = CORE_PIN5_BITMASK;
- } else if (pin == 6) {
- CORE_PIN6_PORTSET = CORE_PIN6_BITMASK;
- } else if (pin == 7) {
- CORE_PIN7_PORTSET = CORE_PIN7_BITMASK;
- } else if (pin == 8) {
- CORE_PIN8_PORTSET = CORE_PIN8_BITMASK;
- } else if (pin == 9) {
- CORE_PIN9_PORTSET = CORE_PIN9_BITMASK;
- } else if (pin == 10) {
- CORE_PIN10_PORTSET = CORE_PIN10_BITMASK;
- } else if (pin == 11) {
- CORE_PIN11_PORTSET = CORE_PIN11_BITMASK;
- } else if (pin == 12) {
- CORE_PIN12_PORTSET = CORE_PIN12_BITMASK;
- } else if (pin == 13) {
- CORE_PIN13_PORTSET = CORE_PIN13_BITMASK;
- } else if (pin == 14) {
- CORE_PIN14_PORTSET = CORE_PIN14_BITMASK;
- } else if (pin == 15) {
- CORE_PIN15_PORTSET = CORE_PIN15_BITMASK;
- } else if (pin == 16) {
- CORE_PIN16_PORTSET = CORE_PIN16_BITMASK;
- } else if (pin == 17) {
- CORE_PIN17_PORTSET = CORE_PIN17_BITMASK;
- } else if (pin == 18) {
- CORE_PIN18_PORTSET = CORE_PIN18_BITMASK;
- } else if (pin == 19) {
- CORE_PIN19_PORTSET = CORE_PIN19_BITMASK;
- } else if (pin == 20) {
- CORE_PIN20_PORTSET = CORE_PIN20_BITMASK;
- } else if (pin == 21) {
- CORE_PIN21_PORTSET = CORE_PIN21_BITMASK;
- } else if (pin == 22) {
- CORE_PIN22_PORTSET = CORE_PIN22_BITMASK;
- } else if (pin == 23) {
- CORE_PIN23_PORTSET = CORE_PIN23_BITMASK;
- } else if (pin == 24) {
- CORE_PIN24_PORTSET = CORE_PIN24_BITMASK;
- } else if (pin == 25) {
- CORE_PIN25_PORTSET = CORE_PIN25_BITMASK;
- } else if (pin == 26) {
- CORE_PIN26_PORTSET = CORE_PIN26_BITMASK;
- } else if (pin == 27) {
- CORE_PIN27_PORTSET = CORE_PIN27_BITMASK;
- } else if (pin == 28) {
- CORE_PIN28_PORTSET = CORE_PIN28_BITMASK;
- } else if (pin == 29) {
- CORE_PIN29_PORTSET = CORE_PIN29_BITMASK;
- } else if (pin == 30) {
- CORE_PIN30_PORTSET = CORE_PIN30_BITMASK;
- } else if (pin == 31) {
- CORE_PIN31_PORTSET = CORE_PIN31_BITMASK;
- } else if (pin == 32) {
- CORE_PIN32_PORTSET = CORE_PIN32_BITMASK;
- } else if (pin == 33) {
- CORE_PIN33_PORTSET = CORE_PIN33_BITMASK;
- }
- } else {
- if (pin == 0) {
- CORE_PIN0_PORTCLEAR = CORE_PIN0_BITMASK;
- } else if (pin == 1) {
- CORE_PIN1_PORTCLEAR = CORE_PIN1_BITMASK;
- } else if (pin == 2) {
- CORE_PIN2_PORTCLEAR = CORE_PIN2_BITMASK;
- } else if (pin == 3) {
- CORE_PIN3_PORTCLEAR = CORE_PIN3_BITMASK;
- } else if (pin == 4) {
- CORE_PIN4_PORTCLEAR = CORE_PIN4_BITMASK;
- } else if (pin == 5) {
- CORE_PIN5_PORTCLEAR = CORE_PIN5_BITMASK;
- } else if (pin == 6) {
- CORE_PIN6_PORTCLEAR = CORE_PIN6_BITMASK;
- } else if (pin == 7) {
- CORE_PIN7_PORTCLEAR = CORE_PIN7_BITMASK;
- } else if (pin == 8) {
- CORE_PIN8_PORTCLEAR = CORE_PIN8_BITMASK;
- } else if (pin == 9) {
- CORE_PIN9_PORTCLEAR = CORE_PIN9_BITMASK;
- } else if (pin == 10) {
- CORE_PIN10_PORTCLEAR = CORE_PIN10_BITMASK;
- } else if (pin == 11) {
- CORE_PIN11_PORTCLEAR = CORE_PIN11_BITMASK;
- } else if (pin == 12) {
- CORE_PIN12_PORTCLEAR = CORE_PIN12_BITMASK;
- } else if (pin == 13) {
- CORE_PIN13_PORTCLEAR = CORE_PIN13_BITMASK;
- } else if (pin == 14) {
- CORE_PIN14_PORTCLEAR = CORE_PIN14_BITMASK;
- } else if (pin == 15) {
- CORE_PIN15_PORTCLEAR = CORE_PIN15_BITMASK;
- } else if (pin == 16) {
- CORE_PIN16_PORTCLEAR = CORE_PIN16_BITMASK;
- } else if (pin == 17) {
- CORE_PIN17_PORTCLEAR = CORE_PIN17_BITMASK;
- } else if (pin == 18) {
- CORE_PIN18_PORTCLEAR = CORE_PIN18_BITMASK;
- } else if (pin == 19) {
- CORE_PIN19_PORTCLEAR = CORE_PIN19_BITMASK;
- } else if (pin == 20) {
- CORE_PIN20_PORTCLEAR = CORE_PIN20_BITMASK;
- } else if (pin == 21) {
- CORE_PIN21_PORTCLEAR = CORE_PIN21_BITMASK;
- } else if (pin == 22) {
- CORE_PIN22_PORTCLEAR = CORE_PIN22_BITMASK;
- } else if (pin == 23) {
- CORE_PIN23_PORTCLEAR = CORE_PIN23_BITMASK;
- } else if (pin == 24) {
- CORE_PIN24_PORTCLEAR = CORE_PIN24_BITMASK;
- } else if (pin == 25) {
- CORE_PIN25_PORTCLEAR = CORE_PIN25_BITMASK;
- } else if (pin == 26) {
- CORE_PIN26_PORTCLEAR = CORE_PIN26_BITMASK;
- } else if (pin == 27) {
- CORE_PIN27_PORTCLEAR = CORE_PIN27_BITMASK;
- } else if (pin == 28) {
- CORE_PIN28_PORTCLEAR = CORE_PIN28_BITMASK;
- } else if (pin == 29) {
- CORE_PIN29_PORTCLEAR = CORE_PIN29_BITMASK;
- } else if (pin == 30) {
- CORE_PIN30_PORTCLEAR = CORE_PIN30_BITMASK;
- } else if (pin == 31) {
- CORE_PIN31_PORTCLEAR = CORE_PIN31_BITMASK;
- } else if (pin == 32) {
- CORE_PIN32_PORTCLEAR = CORE_PIN32_BITMASK;
- } else if (pin == 33) {
- CORE_PIN33_PORTCLEAR = CORE_PIN33_BITMASK;
- }
- }
- } else {
- *portClearRegister(pin) = digitalPinToBitMask(pin);
- }
- }
-
- uint8_t digitalRead(uint8_t pin);
- static inline uint8_t digitalReadFast(uint8_t pin) __attribute__((always_inline, unused));
- static inline uint8_t digitalReadFast(uint8_t pin)
- {
- if (__builtin_constant_p(pin)) {
- if (pin == 0) {
- return (CORE_PIN0_PINREG & CORE_PIN0_BITMASK) ? 1 : 0;
- } else if (pin == 1) {
- return (CORE_PIN1_PINREG & CORE_PIN1_BITMASK) ? 1 : 0;
- } else if (pin == 2) {
- return (CORE_PIN2_PINREG & CORE_PIN2_BITMASK) ? 1 : 0;
- } else if (pin == 3) {
- return (CORE_PIN3_PINREG & CORE_PIN3_BITMASK) ? 1 : 0;
- } else if (pin == 4) {
- return (CORE_PIN4_PINREG & CORE_PIN4_BITMASK) ? 1 : 0;
- } else if (pin == 5) {
- return (CORE_PIN5_PINREG & CORE_PIN5_BITMASK) ? 1 : 0;
- } else if (pin == 6) {
- return (CORE_PIN6_PINREG & CORE_PIN6_BITMASK) ? 1 : 0;
- } else if (pin == 7) {
- return (CORE_PIN7_PINREG & CORE_PIN7_BITMASK) ? 1 : 0;
- } else if (pin == 8) {
- return (CORE_PIN8_PINREG & CORE_PIN8_BITMASK) ? 1 : 0;
- } else if (pin == 9) {
- return (CORE_PIN9_PINREG & CORE_PIN9_BITMASK) ? 1 : 0;
- } else if (pin == 10) {
- return (CORE_PIN10_PINREG & CORE_PIN10_BITMASK) ? 1 : 0;
- } else if (pin == 11) {
- return (CORE_PIN11_PINREG & CORE_PIN11_BITMASK) ? 1 : 0;
- } else if (pin == 12) {
- return (CORE_PIN12_PINREG & CORE_PIN12_BITMASK) ? 1 : 0;
- } else if (pin == 13) {
- return (CORE_PIN13_PINREG & CORE_PIN13_BITMASK) ? 1 : 0;
- } else if (pin == 14) {
- return (CORE_PIN14_PINREG & CORE_PIN14_BITMASK) ? 1 : 0;
- } else if (pin == 15) {
- return (CORE_PIN15_PINREG & CORE_PIN15_BITMASK) ? 1 : 0;
- } else if (pin == 16) {
- return (CORE_PIN16_PINREG & CORE_PIN16_BITMASK) ? 1 : 0;
- } else if (pin == 17) {
- return (CORE_PIN17_PINREG & CORE_PIN17_BITMASK) ? 1 : 0;
- } else if (pin == 18) {
- return (CORE_PIN18_PINREG & CORE_PIN18_BITMASK) ? 1 : 0;
- } else if (pin == 19) {
- return (CORE_PIN19_PINREG & CORE_PIN19_BITMASK) ? 1 : 0;
- } else if (pin == 20) {
- return (CORE_PIN20_PINREG & CORE_PIN20_BITMASK) ? 1 : 0;
- } else if (pin == 21) {
- return (CORE_PIN21_PINREG & CORE_PIN21_BITMASK) ? 1 : 0;
- } else if (pin == 22) {
- return (CORE_PIN22_PINREG & CORE_PIN22_BITMASK) ? 1 : 0;
- } else if (pin == 23) {
- return (CORE_PIN23_PINREG & CORE_PIN23_BITMASK) ? 1 : 0;
- } else if (pin == 24) {
- return (CORE_PIN24_PINREG & CORE_PIN24_BITMASK) ? 1 : 0;
- } else if (pin == 25) {
- return (CORE_PIN25_PINREG & CORE_PIN25_BITMASK) ? 1 : 0;
- } else if (pin == 26) {
- return (CORE_PIN26_PINREG & CORE_PIN26_BITMASK) ? 1 : 0;
- } else if (pin == 27) {
- return (CORE_PIN27_PINREG & CORE_PIN27_BITMASK) ? 1 : 0;
- } else if (pin == 28) {
- return (CORE_PIN28_PINREG & CORE_PIN28_BITMASK) ? 1 : 0;
- } else if (pin == 29) {
- return (CORE_PIN29_PINREG & CORE_PIN29_BITMASK) ? 1 : 0;
- } else if (pin == 30) {
- return (CORE_PIN30_PINREG & CORE_PIN30_BITMASK) ? 1 : 0;
- } else if (pin == 31) {
- return (CORE_PIN31_PINREG & CORE_PIN31_BITMASK) ? 1 : 0;
- } else if (pin == 32) {
- return (CORE_PIN32_PINREG & CORE_PIN32_BITMASK) ? 1 : 0;
- } else if (pin == 33) {
- return (CORE_PIN33_PINREG & CORE_PIN33_BITMASK) ? 1 : 0;
- } else {
- return 0;
- }
- } else {
- return (*portInputRegister(pin) & digitalPinToBitMask(pin)) ? 1 : 0;
- }
- }
-
-
- void pinMode(uint8_t pin, uint8_t mode);
- void init_pins(void);
- void analogWrite(uint8_t pin, int val);
- uint32_t analogWriteRes(uint32_t bits);
- static inline uint32_t analogWriteResolution(uint32_t bits) { return analogWriteRes(bits); }
- void analogWriteFrequency(uint8_t pin, float frequency);
- void attachInterrupt(uint8_t pin, void (*function)(void), int mode);
- void detachInterrupt(uint8_t pin);
- void _init_Teensyduino_internal_(void);
- int analogRead(uint8_t pin);
- void analogReference(uint8_t type);
- void analogReadRes(unsigned int bits);
- static inline void analogReadResolution(unsigned int bits) { analogReadRes(bits); }
- void analogReadAveraging(unsigned int num);
- void analog_init(void);
- int touchRead(uint8_t pin);
-
- static inline void shiftOut(uint8_t, uint8_t, uint8_t, uint8_t) __attribute__((always_inline, unused));
- extern void _shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value) __attribute__((noinline));
- extern void shiftOut_lsbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value) __attribute__((noinline));
- extern void shiftOut_msbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value) __attribute__((noinline));
-
- static inline void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value)
- {
- if (__builtin_constant_p(bitOrder)) {
- if (bitOrder == LSBFIRST) {
- shiftOut_lsbFirst(dataPin, clockPin, value);
- } else {
- shiftOut_msbFirst(dataPin, clockPin, value);
- }
- } else {
- _shiftOut(dataPin, clockPin, bitOrder, value);
- }
- }
-
- static inline uint8_t shiftIn(uint8_t, uint8_t, uint8_t) __attribute__((always_inline, unused));
- extern uint8_t _shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder) __attribute__((noinline));
- extern uint8_t shiftIn_lsbFirst(uint8_t dataPin, uint8_t clockPin) __attribute__((noinline));
- extern uint8_t shiftIn_msbFirst(uint8_t dataPin, uint8_t clockPin) __attribute__((noinline));
-
- static inline uint8_t shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder)
- {
- if (__builtin_constant_p(bitOrder)) {
- if (bitOrder == LSBFIRST) {
- return shiftIn_lsbFirst(dataPin, clockPin);
- } else {
- return shiftIn_msbFirst(dataPin, clockPin);
- }
- } else {
- return _shiftIn(dataPin, clockPin, bitOrder);
- }
- }
-
- void _reboot_Teensyduino_(void) __attribute__((noreturn));
- void _restart_Teensyduino_(void) __attribute__((noreturn));
-
- void yield(void);
-
- void delay(uint32_t msec);
-
- extern volatile uint32_t F_CPU_ACTUAL;
- extern volatile uint32_t F_BUS_ACTUAL;
- extern volatile uint32_t systick_millis_count;
-
- static inline uint32_t millis(void) __attribute__((always_inline, unused));
- static inline uint32_t millis(void)
- {
- return systick_millis_count;
- }
-
- uint32_t micros(void);
-
- static inline void delayMicroseconds(uint32_t) __attribute__((always_inline, unused));
- static inline void delayMicroseconds(uint32_t usec)
- {
- uint32_t begin = ARM_DWT_CYCCNT;
- uint32_t cycles = F_CPU_ACTUAL / 1000000 * usec;
- // TODO: check if cycles is large, do a wait with yield calls until it's smaller
- while (ARM_DWT_CYCCNT - begin < cycles) ; // wait
- }
-
-
-
- unsigned long rtc_get(void);
- void rtc_set(unsigned long t);
- void rtc_compensate(int adjust);
-
- #ifdef __cplusplus
- }
-
- class teensy3_clock_class
- {
- public:
- static unsigned long get(void) __attribute__((always_inline)) { return rtc_get(); }
- static void set(unsigned long t) __attribute__((always_inline)) { rtc_set(t); }
- static void compensate(int adj) __attribute__((always_inline)) { rtc_compensate(adj); }
- };
- extern teensy3_clock_class Teensy3Clock;
-
- #endif // __cplusplus
-
-
-
-
|