Lines Matching +full:alternate +full:- +full:port +full:- +full:control

6 The STM32F103_MINI board features an ARM Cortex-M3 based STM32F103RC MCU
22 - STM32 microcontroller in QFP64 package
24 - Flexible board power supply:
26 - USB VBUS or external source (3.3V, 5V, 7 - 12V)
27 - Power management access point
29 - Two LEDs:
31 - User LED (LD1), power LED (LD2)
33 - USB re-enumeration capability:
35 - Mass storage
39 - `STM32F103 reference manual`_
40 - `STM32F103 data sheet`_
47 +-----------+------------+-------------------------------------+
50 | NVIC | on-chip | nested vector interrupt controller |
51 +-----------+------------+-------------------------------------+
52 | UART | on-chip | serial port-polling; |
53 | | | serial port-interrupt |
54 +-----------+------------+-------------------------------------+
55 | PINMUX | on-chip | pinmux |
56 +-----------+------------+-------------------------------------+
57 | GPIO | on-chip | gpio |
58 +-----------+------------+-------------------------------------+
59 | CLOCK | on-chip | reset and clock control |
60 +-----------+------------+-------------------------------------+
61 | FLASH | on-chip | flash memory |
62 +-----------+------------+-------------------------------------+
63 | WATCHDOG | on-chip | independent watchdog |
64 +-----------+------------+-------------------------------------+
65 | ADC | on-chip | ADC Controller |
66 +-----------+------------+-------------------------------------+
67 | PWM | on-chip | pwm |
68 +-----------+------------+-------------------------------------+
69 | SPI | on-chip | spi |
70 +-----------+------------+-------------------------------------+
71 | USB | on-chip | USB device |
72 +-----------+------------+-------------------------------------+
73 | COUNTER | on-chip | rtc |
74 +-----------+------------+-------------------------------------+
76 Other hardware features are not yet supported in this Zephyr port.
84 Each of the GPIO pins can be configured by software as output (push-pull or open-drain), as
85 input (with or without pull-up or pull-down), or as peripheral alternate function. Most of the
86 GPIO pins are shared with digital or analog alternate functions. All GPIOs are high current
90 -----------------
96 ----------------------------------
98 - UART_1 TX/RX: PA9/PA10
99 - UART_2 TX/RX: PA2/PA3 (ST-Link Virtual COM Port)
100 - SPI1 NSS/SCK/MISO/MOSI: PA4/PA5/PA6/PA7
101 - SPI2 NSS/SCK/MISO/MOSI: PB12/PB13/PB14/PB15
102 - I2C1 SDA/SCL: PB9/PB8
103 - PWM1_CH1: PA8
104 - USER_PB: PC13
105 - LD1: PA5
106 - USB_DC DM/DP: PA11/PA12
109 ------------
111 The on-board 8MHz crystal is used to produce a 72MHz system clock with PLL.
124 bootloader, and another by using the SWD debug port (which requires additional
125 hardware such as ST-Link). Flashing using the ROM bootloader requires a special activation
129 -----------------------------------------
131 Here is an example for the :zephyr:code-sample:`blinky` application.
133 .. zephyr-app-commands::
134 :zephyr-app: samples/basic/blinky
144 :zephyr:code-sample:`blinky` application.
146 .. zephyr-app-commands::
147 :zephyr-app: samples/basic/blinky
149 :maybe-skip-config:
155 .. target-notes::