123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /*
- *******************************************************************************
- * Copyright (c) 2020-2021, STMicroelectronics
- * All rights reserved.
- *
- * This software component is licensed by ST under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- *******************************************************************************
- */
- #pragma once
- /*----------------------------------------------------------------------------
- * STM32 pins number
- *----------------------------------------------------------------------------*/
- #define PA0 PIN_A0
- #define PA1 PIN_A1
- #define PA2 PIN_A2
- #define PA3 PIN_A3
- #define PA4 PIN_A4
- #define PA5 PIN_A5
- #define PA6 PIN_A6
- #define PA7 PIN_A7
- #define PA8 8
- #define PA9 9
- #define PA10 10
- #define PA11 11
- #define PA12 12
- #define PA13 13
- #define PA14 14
- #define PA15 15
- #define PB0 PIN_A8
- #define PB1 PIN_A9
- #define PB2 18
- #define PB3 19
- #define PB4 20
- #define PB5 21
- #define PB6 22
- #define PB7 23
- #define PB8 24
- #define PB9 25
- #define PB10 26
- #define PB11 27
- #define PB12 28
- #define PB13 29
- #define PB14 30
- #define PB15 31
- #define PC0 PIN_A10
- #define PC1 PIN_A11
- #define PC4 PIN_A12
- #define PC5 PIN_A13
- #define PC6 36
- #define PC7 37
- #define PC8 38
- #define PC9 39
- #define PC10 40
- #define PC11 41
- #define PC12 42
- #define PC13 43
- #define PC14 44
- #define PC15 45
- #define PD0 46
- #define PD1 47
- #define PD2 48
- #define PD3 49
- #define PD4 50
- #define PD5 51
- #define PD6 52
- #define PD7 53
- #define PD8 54
- #define PD9 55
- #define PD10 56
- #define PD11 57
- #define PD12 58
- #define PD13 59
- #define PD14 60
- #define PD15 61
- #define PE0 62
- #define PE1 63
- #define PE2 64
- #define PE3 65
- #define PE4 66
- #define PE5 67
- #define PE6 68
- #define PE7 69
- #define PE8 70
- #define PE9 71
- #define PE10 72
- #define PE11 73
- #define PE12 74
- #define PE13 75
- #define PE14 76
- #define PE15 77
- #define PH0 78
- #define PH1 79
- #define PC2_C PIN_A14
- #define PC3_C PIN_A15
- #define PC2 PC2_C
- #define PC3 PC3_C
- // Alternate pins number
- #define PA0_ALT1 (PA0 | ALT1)
- #define PA1_ALT1 (PA1 | ALT1)
- #define PA1_ALT2 (PA1 | ALT2)
- #define PA2_ALT1 (PA2 | ALT1)
- #define PA2_ALT2 (PA2 | ALT2)
- #define PA3_ALT1 (PA3 | ALT1)
- #define PA3_ALT2 (PA3 | ALT2)
- #define PA4_ALT1 (PA4 | ALT1)
- #define PA4_ALT2 (PA4 | ALT2)
- #define PA5_ALT1 (PA5 | ALT1)
- #define PA6_ALT1 (PA6 | ALT1)
- #define PA7_ALT1 (PA7 | ALT1)
- #define PA7_ALT2 (PA7 | ALT2)
- #define PA7_ALT3 (PA7 | ALT3)
- #define PA9_ALT1 (PA9 | ALT1)
- #define PA10_ALT1 (PA10 | ALT1)
- #define PA11_ALT1 (PA11 | ALT1)
- #define PA12_ALT1 (PA12 | ALT1)
- #define PA15_ALT1 (PA15 | ALT1)
- #define PA15_ALT2 (PA15 | ALT2)
- #define PB0_ALT1 (PB0 | ALT1)
- #define PB0_ALT2 (PB0 | ALT2)
- #define PB1_ALT1 (PB1 | ALT1)
- #define PB1_ALT2 (PB1 | ALT2)
- #define PB3_ALT1 (PB3 | ALT1)
- #define PB3_ALT2 (PB3 | ALT2)
- #define PB4_ALT1 (PB4 | ALT1)
- #define PB4_ALT2 (PB4 | ALT2)
- #define PB5_ALT1 (PB5 | ALT1)
- #define PB5_ALT2 (PB5 | ALT2)
- #define PB6_ALT1 (PB6 | ALT1)
- #define PB6_ALT2 (PB6 | ALT2)
- #define PB7_ALT1 (PB7 | ALT1)
- #define PB8_ALT1 (PB8 | ALT1)
- #define PB8_ALT2 (PB8 | ALT2)
- #define PB9_ALT1 (PB9 | ALT1)
- #define PB9_ALT2 (PB9 | ALT2)
- #define PB14_ALT1 (PB14 | ALT1)
- #define PB14_ALT2 (PB14 | ALT2)
- #define PB15_ALT1 (PB15 | ALT1)
- #define PB15_ALT2 (PB15 | ALT2)
- #define PC0_ALT1 (PC0 | ALT1)
- #define PC0_ALT2 (PC0 | ALT2)
- #define PC1_ALT1 (PC1 | ALT1)
- #define PC1_ALT2 (PC1 | ALT2)
- #define PC4_ALT1 (PC4 | ALT1)
- #define PC5_ALT1 (PC5 | ALT1)
- #define PC6_ALT1 (PC6 | ALT1)
- #define PC6_ALT2 (PC6 | ALT2)
- #define PC7_ALT1 (PC7 | ALT1)
- #define PC7_ALT2 (PC7 | ALT2)
- #define PC8_ALT1 (PC8 | ALT1)
- #define PC9_ALT1 (PC9 | ALT1)
- #define PC10_ALT1 (PC10 | ALT1)
- #define PC11_ALT1 (PC11 | ALT1)
- #define NUM_DIGITAL_PINS 82
- #define NUM_DUALPAD_PINS 2
- #define NUM_ANALOG_INPUTS 16
- #define NUM_ANALOG_FIRST PA0
- // On-board LED pin number
- #ifndef LED_BUILTIN
- #define LED_BUILTIN PNUM_NOT_DEFINED
- #endif
- // On-board user button
- #ifndef USER_BTN
- #define USER_BTN PNUM_NOT_DEFINED
- #endif
- // SPI definitions
- #ifndef PIN_SPI_SS
- #define PIN_SPI_SS PA4
- #endif
- #ifndef PIN_SPI_SS1
- #define PIN_SPI_SS1 PA15
- #endif
- #ifndef PIN_SPI_SS2
- #define PIN_SPI_SS2 PNUM_NOT_DEFINED
- #endif
- #ifndef PIN_SPI_SS3
- #define PIN_SPI_SS3 PNUM_NOT_DEFINED
- #endif
- #ifndef PIN_SPI_MOSI
- #define PIN_SPI_MOSI PA7
- #endif
- #ifndef PIN_SPI_MISO
- #define PIN_SPI_MISO PA6
- #endif
- #ifndef PIN_SPI_SCK
- #define PIN_SPI_SCK PA5
- #endif
- // I2C definitions
- #ifndef PIN_WIRE_SDA
- #define PIN_WIRE_SDA PB7
- #endif
- #ifndef PIN_WIRE_SCL
- #define PIN_WIRE_SCL PB6
- #endif
- // Timer Definitions
- // Use TIM6/TIM7 when possible as servo and tone don't need GPIO output pin
- #ifndef TIMER_TONE
- #define TIMER_TONE TIM6
- #endif
- #ifndef TIMER_SERVO
- #define TIMER_SERVO TIM7
- #endif
- // UART Definitions
- #ifndef SERIAL_UART_INSTANCE
- #define SERIAL_UART_INSTANCE 4
- #endif
- // Default pin used for generic 'Serial' instance
- // Mandatory for Firmata
- #ifndef PIN_SERIAL_RX
- #define PIN_SERIAL_RX PA1
- #endif
- #ifndef PIN_SERIAL_TX
- #define PIN_SERIAL_TX PA0
- #endif
- // Extra HAL modules
- #ifndef HAL_DAC_MODULE_DISABLED
- #define HAL_DAC_MODULE_ENABLED
- #endif
- #ifndef HAL_ETH_MODULE_DISABLED
- #define HAL_ETH_MODULE_ENABLED
- #endif
- #ifndef HAL_QSPI_MODULE_DISABLED
- #define HAL_QSPI_MODULE_ENABLED
- #endif
- #ifndef HAL_SD_MODULE_DISABLED
- #define HAL_SD_MODULE_ENABLED
- #endif
- /*----------------------------------------------------------------------------
- * Arduino objects - C++ only
- *----------------------------------------------------------------------------*/
- #ifdef __cplusplus
- // These serial port names are intended to allow libraries and architecture-neutral
- // sketches to automatically default to the correct port name for a particular type
- // of use. For example, a GPS module would normally connect to SERIAL_PORT_HARDWARE_OPEN,
- // the first hardware serial port whose RX/TX pins are not dedicated to another use.
- //
- // SERIAL_PORT_MONITOR Port which normally prints to the Arduino Serial Monitor
- //
- // SERIAL_PORT_USBVIRTUAL Port which is USB virtual serial
- //
- // SERIAL_PORT_LINUXBRIDGE Port which connects to a Linux system via Bridge library
- //
- // SERIAL_PORT_HARDWARE Hardware serial port, physical RX & TX pins.
- //
- // SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
- // pins are NOT connected to anything by default.
- #ifndef SERIAL_PORT_MONITOR
- #define SERIAL_PORT_MONITOR Serial
- #endif
- #ifndef SERIAL_PORT_HARDWARE
- #define SERIAL_PORT_HARDWARE Serial
- #endif
- #endif
|