8. General-purpose I/Os (GPIO)

8.1 GPIO introduction

Each general-purpose I/O port has four 32-bit configuration registers (GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR and GPIOx_PUPDR), two 32-bit data registers (GPIOx_IDR and GPIOx_ODR) and one 32-bit set/reset register (GPIOx_BSRR).

All GPIOs have a 32-bit locking register (GPIOx_LCKR) and two 32-bit alternate function selection registers (GPIOx_AFRH and GPIOx_AFRL).

8.2 GPIO main features

8.3 GPIO functional description

Subject to the specific hardware characteristics of each I/O port listed in the datasheet, each port bit of GPIO ports can be individually configured by software in several modes listed below:

Each I/O port bit is freely programmable, however the I/O port registers must be accessed as 32-bit words, half-words or bytes.

GPIOx_BSRR and GPIOx_BRR registers allow atomic read/modify accesses to any of the GPIOx_ODR registers. In this way, there is no risk of an IRQ occurring between the read and the modify access.

Figure 30 and Figure 31 show the basic structure of a standard and a 5V-tolerant I/O port bit.

Table 59 gives the possible port bit configurations.

Figure 30. Basic structure of a standard I/O port bit

Schematic diagram of a standard I/O port bit showing internal components like registers, drivers, and MOSFETs connected to an I/O pin with protection diodes.

The diagram illustrates the internal architecture of a standard I/O port bit. It is divided into several functional blocks:

Schematic diagram of a standard I/O port bit showing internal components like registers, drivers, and MOSFETs connected to an I/O pin with protection diodes.

Figure 31. Basic structure of a 5V-tolerant I/O port bit

Figure 31. Basic structure of a 5V-tolerant I/O port bit. This block diagram illustrates the internal architecture of a GPIO pin. On the left, external connections include 'To on-chip peripheral' (Alternate function input), 'Read' (from Input data register), 'Write' (to Bit set/reset registers), 'Read/write' (to Output data register), and 'From on-chip peripheral' (Alternate function output). The internal components include an 'Input driver' with a 'TTL Schmitt trigger' and an 'Output driver' with 'Output control' and 'Push-pull, open-drain or disabled' settings. The output driver uses P-MOS and N-MOS transistors connected to VDDIOX and VSS. Protection diodes are connected to the I/O pin, with clamping to VDDIOX and VDD_FT (1) for overvoltage and to VSS for under-voltage. Pull-up and pull-down resistors are also shown. A note at the bottom left states: '1) VDD_FT is specific to 5V-tolerant I/Os and different from VDD.' The diagram is labeled 'ai15939e' in the bottom right.
Figure 31. Basic structure of a 5V-tolerant I/O port bit. This block diagram illustrates the internal architecture of a GPIO pin. On the left, external connections include 'To on-chip peripheral' (Alternate function input), 'Read' (from Input data register), 'Write' (to Bit set/reset registers), 'Read/write' (to Output data register), and 'From on-chip peripheral' (Alternate function output). The internal components include an 'Input driver' with a 'TTL Schmitt trigger' and an 'Output driver' with 'Output control' and 'Push-pull, open-drain or disabled' settings. The output driver uses P-MOS and N-MOS transistors connected to VDDIOX and VSS. Protection diodes are connected to the I/O pin, with clamping to VDDIOX and VDD_FT (1) for overvoltage and to VSS for under-voltage. Pull-up and pull-down resistors are also shown. A note at the bottom left states: '1) VDD_FT is specific to 5V-tolerant I/Os and different from VDD.' The diagram is labeled 'ai15939e' in the bottom right.

Table 59. Port bit configurations

MODE(i)[1:0]OTYPER(i)OSPEED(i)[1:0]PUPD(i)[1:0]I/O configuration (1)
010SPEED[1:0]00GP outputPP
001GP outputPP + PU
010GP outputPP + PD
011Reserved
100GP outputOD
101GP outputOD + PU
110GP outputOD + PD
111Reserved (GP output OD)
100SPEED[1:0]00AFPP
001AFPP + PU
010AFPP + PD
011Reserved
100AFOD
101AFOD + PU
110AFOD + PD
111Reserved

Table 59. Port bit configurations (continued)

MODE(i)[1:0]OTYPER(i)OSPEED(i)[1:0]PUPD(i)[1:0]I/O configuration (1)
InputOutput
00XXX00InputFloating
XXX01InputPU
XXX10InputPD
XXX11Reserved (input floating)
11XXX00Input/outputAnalog
XXX01Reserved
XXX10
XXX11

1. GP = general purpose, PP = push-pull, PU = pull-up, PD = pull-down, OD = open drain, AF = alternate function.

8.3.1 General purpose I/O (GPIO)

During and just after reset, the alternate functions are not active and most of the I/O ports are configured in analog mode.

The debug pins listed below are in AF pull-up/pull-down after reset:

PH3/BOOT0 is in input mode during the reset until at least the end of the option byte loading phase (see Section 8.3.15: Using PH3 as GPIO ).

When the I/O pin is configured as output, the value written to the output data register GPIOx_ODR is output on the I/O pin. It is possible to use the output driver in push-pull mode or open-drain mode (only the low level is driven, high level is HI-Z).

The input data register GPIOx_IDR captures the data present on the I/O pin at every AHB clock cycle.

All GPIO pins have weak internal pull-up and pull-down resistors, which can be activated or not depending on the value in the GPIOx_PUPDR register.

8.3.2 I/O pin alternate function multiplexer and mapping

The I/O pins are connected to on-board peripherals/modules through a multiplexer that allows only one AF peripheral connected to each I/O pin at a time. This avoids conflict between peripherals available on the same I/O pin.

Each I/O pin has a multiplexer with up to sixteen alternate function inputs (AF0 to AF15), that can be configured through the registers GPIOx_AFRL (for pin 0 to 7) and GPIOx_AFRH (for pin 8 to 15):

After reset, the multiplexer selection is alternate function 0 (AF0). I/Os are configured in alternate function mode through GPIOx_MODER register.

Specific alternate function assignments for each pin are detailed in the product datasheet.

In addition to this flexible I/O multiplexing architecture, each peripheral has alternate functions mapped on different I/O pins to optimize the number of peripherals available in smaller packages.

To use an I/O in a given configuration, the user must proceed as follows:

After each device reset, these pins are assigned as alternate function pins immediately usable by the debugger host.

Configure the desired I/O as output, input or analog in the GPIOx_MODER register.

Refer to the “Alternate function mapping” table in the product datasheet for the detailed mapping of the alternate function I/O pins.

8.3.3 I/O port control registers

Each of the GPIO ports has four 32-bit memory-mapped control registers (GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR and GPIOx_PUPDR) to configure up to sixteen I/Os.

GPIOx_MODER is used to select the I/O mode (input, output, AF or analog).

GPIOx_OTYPER and GPIOx_OSPEEDR are used to select the output type (push-pull or open-drain) and speed.

GPIOx_PUPDR is used to select the pull-up/pull-down whatever the I/O direction.

8.3.4 I/O port data registers

Each GPIO has two 16-bit memory-mapped input and output data registers: GPIOx_IDR and GPIOx_ODR.

GPIOx_ODR stores the data to be output, it is read/write accessible.

Data input through the I/O are stored into GPIOx_IDR, it is a read-only register.

8.3.5 I/O data bitwise handling

The bit set reset register (GPIOx_BSRR) is a 32-bit register that allows the application to set and reset each individual bit in the output data register (GPIOx_ODR). GPIOx_BSRR has twice the size of GPIOx_ODR.

To each bit in GPIOx_ODR correspond two control bits in GPIOx_BSRR, BS(i) and BR(i):

Writing any bit to 0 in GPIOx_BSRR does not have any effect on the corresponding bit in GPIOx_ODR. If there is an attempt to both set and reset a bit in GPIOx_BSRR, the set action takes priority.

Using GPIOx_BSRR to change the values of individual bits in GPIOx_ODR is a “one-shot” effect that does not lock the GPIOx_ODR bits. The GPIOx_ODR bits can always be accessed directly. GPIOx_BSRR provides a way of performing atomic bitwise handling.

There is no software need to disable interrupts when programming GPIOx_ODR at bit level: it is possible to modify one or more bits in a single atomic AHB write access.

8.3.6 GPIO locking mechanism

It is possible to freeze the GPIO control registers by applying a specific write sequence to the GPIOx_LCKR register. Frozen registers are GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, GPIOx_PUPDR, GPIOx_AFRL and GPIOx_AFRH.

To write GPIOx_LCKR, a specific write/read sequence must be applied. When the right LOCK sequence is applied to bit 16 in this register, the value of LCKR[15:0] is used to lock the I/Os configuration (during the write sequence, LCKR[15:0] value must be the same).

When the LOCK sequence is applied to a port bit, the value of the port bit can no longer be modified until the next MCU reset or peripheral reset.

Each GPIOx_LCKR bit freezes the corresponding bit in the control registers GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, GPIOx_PUPDR, GPIOx_AFRL and GPIOx_AFRH.

The LOCK sequence can only be performed using a word (32-bit long) access to GPIOx_LCKR due to the fact that GPIOx_LCKR bit 16 must be set at the same time as the [15:0] bits.

8.3.7 I/O alternate function input/output

Two registers are provided to select one of the alternate function inputs/outputs available for each I/O: GPIOx_AFRL and GPIOx_AFRH.

With these registers, the user can connect an alternate function to some other pin as required by the application. This means that a number of possible peripheral functions are multiplexed on each GPIO. The application can thus select any one of the possible functions for each I/O.

The AF selection signal being common to the alternate function input and alternate function output, a single channel is selected for the alternate function input/output of a given I/O.

To know which functions are multiplexed on each GPIO pin, refer to the product datasheet.

8.3.8 External interrupt/wake-up lines

All ports have external interrupt capability.

To use external interrupt lines, the port must be configured in input mode.

Refer to Section 14.4.1: EXTI configurable event input wake-up .

8.3.9 Input configuration

When the I/O port is programmed as input, the following occurs:

The figure below shows the input configuration of the I/O port bit.

Figure 32. Input floating/pull-up/pull-down configurations

Figure 32: Input floating/pull-up/pull-down configurations. This block diagram illustrates the internal architecture of a GPIO pin in input mode. On the left, external signals 'Read', 'Write', and 'Read/write' are shown. 'Write' goes to 'Bit set/reset registers', which in turn connect to an 'Output data register'. 'Read' comes from an 'Input data register'. Both registers are part of a 'Bit self/reset registers' block. The 'Input data register' connects to a 'TTL Schmitt trigger' (labeled 'on'). The 'Output data register' connects to an 'output driver' (labeled 'on/off'). A switch selects between the 'input driver' (connected to the Schmitt trigger) and the 'output driver'. The output of the driver connects to the 'I/O pin'. At the pin, there are 'pull up' and 'pull down' resistors (both labeled 'on/off') connected to VDDIOx and VSS respectively. Protection diodes are also shown between the pin and VDDIOx and VSS. The entire internal circuitry is enclosed in a dashed box. The identifier 'MS31477V1' is in the bottom right corner.
Figure 32: Input floating/pull-up/pull-down configurations. This block diagram illustrates the internal architecture of a GPIO pin in input mode. On the left, external signals 'Read', 'Write', and 'Read/write' are shown. 'Write' goes to 'Bit set/reset registers', which in turn connect to an 'Output data register'. 'Read' comes from an 'Input data register'. Both registers are part of a 'Bit self/reset registers' block. The 'Input data register' connects to a 'TTL Schmitt trigger' (labeled 'on'). The 'Output data register' connects to an 'output driver' (labeled 'on/off'). A switch selects between the 'input driver' (connected to the Schmitt trigger) and the 'output driver'. The output of the driver connects to the 'I/O pin'. At the pin, there are 'pull up' and 'pull down' resistors (both labeled 'on/off') connected to VDDIOx and VSS respectively. Protection diodes are also shown between the pin and VDDIOx and VSS. The entire internal circuitry is enclosed in a dashed box. The identifier 'MS31477V1' is in the bottom right corner.

8.3.10 Output configuration

When the I/O port is programmed as output, the following occurs:

The figure below shows the output configuration of the I/O port bit.

Figure 33. Output configuration

Figure 33: Output configuration diagram showing the internal circuitry of an I/O port bit in output mode. It includes an input data register, bit set/reset registers, an output data register, an input driver with a TTL Schmitt trigger, an output driver with P-MOS and N-MOS transistors, and an I/O pin with protection diodes and pull-up/pull-down resistors.

The diagram illustrates the internal architecture of an I/O port bit in output mode. On the left, external signals are shown: 'Read' for the input data register, 'Write' for the bit set/reset registers, and 'Read/write' for the output data register. The input data register is connected to an 'Input driver' containing a 'TTL Schmitt trigger'. The output data register is connected to an 'Output driver' containing 'P-MOS' and 'N-MOS' transistors, which can be configured for 'Push-pull or Open-drain' operation. The I/O pin is connected to the output driver and includes 'protection diode' and 'pull up' and 'pull down' resistors. The diagram is labeled 'MS31478V1'.

Figure 33: Output configuration diagram showing the internal circuitry of an I/O port bit in output mode. It includes an input data register, bit set/reset registers, an output data register, an input driver with a TTL Schmitt trigger, an output driver with P-MOS and N-MOS transistors, and an I/O pin with protection diodes and pull-up/pull-down resistors.

8.3.11 Alternate function configuration

When the I/O port is programmed as alternate function, the following occurs:

The figure below shows the alternate function configuration of the I/O port bit.

Figure 34. Alternate function configuration

Figure 34: Alternate function configuration diagram showing the internal circuitry of an I/O port bit in alternate function mode. It includes an input data register, bit set/reset registers, an output data register, an input driver with a TTL Schmitt trigger, an output driver with P-MOS and N-MOS transistors, and an I/O pin with protection diodes and pull-up/pull-down resistors. The output driver is driven by 'Alternate function output' from an on-chip peripheral.

The diagram illustrates the internal architecture of an I/O port bit in alternate function mode. On the left, external signals are shown: 'To on-chip peripheral' for the alternate function input, 'Read' for the input data register, 'Write' for the bit set/reset registers, 'Read/write' for the output data register, and 'From on-chip peripheral' for the alternate function output. The input data register is connected to an 'Input driver' containing a 'TTL Schmitt trigger'. The output data register is connected to an 'Output driver' containing 'P-MOS' and 'N-MOS' transistors, which can be configured for 'push-pull or open-drain' operation. The I/O pin is connected to the output driver and includes 'protection diode' and 'Pull up' and 'Pull down' resistors. The diagram is labeled 'MSV34756V2'.

Figure 34: Alternate function configuration diagram showing the internal circuitry of an I/O port bit in alternate function mode. It includes an input data register, bit set/reset registers, an output data register, an input driver with a TTL Schmitt trigger, an output driver with P-MOS and N-MOS transistors, and an I/O pin with protection diodes and pull-up/pull-down resistors. The output driver is driven by 'Alternate function output' from an on-chip peripheral.

8.3.12 Analog configuration

When the I/O port is programmed as analog configuration, the following occurs:

The figure below shows the high-impedance, analog-input configuration of the I/O port bits.

Figure 35. High impedance analog configuration

Figure 35: High impedance analog configuration diagram. The diagram shows the internal circuitry of an I/O pin in analog mode. On the left, an 'Analog' signal from an on-chip peripheral is connected to the 'Input data register'. The 'Input data register' is connected to a 'TTL Schmitt trigger' which is forced to a constant value (0). The 'Output data register' is connected to the 'Bit set/reset registers' and is also connected to the 'Analog' signal from an on-chip peripheral. The 'I/O pin' is connected to the 'TTL Schmitt trigger' and has two protection diodes: one to VDDIOX and one to VSS. The diagram is labeled MS31480V1.
Figure 35: High impedance analog configuration diagram. The diagram shows the internal circuitry of an I/O pin in analog mode. On the left, an 'Analog' signal from an on-chip peripheral is connected to the 'Input data register'. The 'Input data register' is connected to a 'TTL Schmitt trigger' which is forced to a constant value (0). The 'Output data register' is connected to the 'Bit set/reset registers' and is also connected to the 'Analog' signal from an on-chip peripheral. The 'I/O pin' is connected to the 'TTL Schmitt trigger' and has two protection diodes: one to VDDIOX and one to VSS. The diagram is labeled MS31480V1.

8.3.13 Using the LSE oscillator pins as GPIOs

When the LSE oscillator is switched off (default state after reset), the related oscillator pins can be used as normal GPIOs.

When the LSE oscillator is switched on (by setting the LSEON bit in the RCC_CSR register), the oscillator takes the control of its associated pins and the GPIO configuration of these pins has no effect.

When the oscillator is configured in a user external clock mode, only the OSC32_IN pin is reserved for clock input and the OSC32_OUT pin can still be used as normal GPIO.

Note: The HSE32 OSC_IN and OSC_OUT pins are dedicated oscillator pins and cannot be used as GPIO.

8.3.14 Using the GPIO pins in the RTC supply domain

GPIO functionality of PC13, PC14 and PC15 is lost when the core supply domain is powered off (device enters Standby mode). In this case, if their GPIO configuration is not bypassed by the RTC configuration, these pins are set in an analog input mode.

For details about I/O control by the RTC, refer to Section 30: Real-time clock (RTC) .

8.3.15 Using PH3 as GPIO

PH3 may be used as boot pin (BOOT0) or as GPIO.

PH3 switches from the input mode to the analog input mode depending on the nSWBOOT0 bit in the user option byte as follows:

8.4 GPIO registers

This section gives a detailed description of the GPIO registers for GPIOx port, with x = A to C and x = H.

For a summary of register bits, register address offsets and reset values, refer to Table 60 to Table 63 .

The peripheral registers can be written in word, half word or byte mode.

8.4.1 GPIOx mode register (GPIOx_MODER) (x = A to B)

Address offset: Block A: 0x0000

Address offset: Block B: 0x0400

Reset value: Block A: 0xABFF FFFF

Reset value: Block B: 0xFFFF FEBF

31302928272625242322212019181716
MODE15[1:0]MODE14[1:0]MODE13[1:0]MODE12[1:0]MODE11[1:0]MODE10[1:0]MODE9[1:0]MODE8[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
MODE7[1:0]MODE6[1:0]MODE5[1:0]MODE4[1:0]MODE3[1:0]MODE2[1:0]MODE1[1:0]MODE0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 MODEy[1:0] : Port Pxy I/O type configuration (y = 15 to 0)

These bits are written by software to configure the I/O mode.

00: Input mode

01: General purpose output mode

10: Alternate function mode

11: Analog mode (reset state)

8.4.2 GPIOx output type register (GPIOx_OTYPER) (x = A to B)

Address offset: Block A: 0x0004

Address offset: Block B: 0x0404

Reset value: 0x0000 0000

31302928272625242322212019181716
ResResResResResResResResResResResResResResResRes
1514131211109876543210
OT15OT14OT13OT12OT11OT10OT9OT8OT7OT6OT5OT4OT3OT2OT1OT0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 OTy : Port Pxy output type configuration (y = 15 to 0)

These bits are written by software to configure the I/O output type.

0: Output push-pull (reset state)

1: Output open-drain

8.4.3 GPIOx output speed register (GPIOx_OSPEEDR) (x = A to B)

Address offset: Block A: 0x0008

Address offset: Block B: 0x0408

Reset value: Block A: 0x0C00 0000

Reset value: Block B: 0x0000 00C0

31302928272625242322212019181716
OSPEED15[1:0]OSPEED14[1:0]OSPEED13[1:0]OSPEED12[1:0]OSPEED11[1:0]OSPEED10[1:0]OSPEED9[1:0]OSPEED8[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
OSPEED7[1:0]OSPEED6[1:0]OSPEED5[1:0]OSPEED4[1:0]OSPEED3[1:0]OSPEED2[1:0]OSPEED1[1:0]OSPEED0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 OSPEEDy[1:0] : Port Pxy output speed configuration (y = 15 to 0)

These bits are written by software to configure the I/O output speed.

00: Low speed

01: Medium speed

10: Fast speed

11: High speed

Note: Refer to the device datasheet for the frequency specifications and the power supply and load conditions for each speed.

8.4.4 GPIOx pull-up/pull-down register (GPIOx_PUPDR) (x = A to B)

Address offset: Block A: 0x000C

Address offset: Block B: 0x040C

Reset value: Block A: 0x6400 0000

Reset value: Block B: 0x0000 0100

31302928272625242322212019181716
PUPD15[1:0]PUPD14[1:0]PUPD13[1:0]PUPD12[1:0]PUPD11[1:0]PUPD10[1:0]PUPD9[1:0]PUPD8[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
PUPD7[1:0]PUPD6[1:0]PUPD5[1:0]PUPD4[1:0]PUPD3[1:0]PUPD2[1:0]PUPD1[1:0]PUPD0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 PUPDy[1:0] : Port Pxy pull configuration (y = 15 to 0)

These bits are written by software to configure the I/O pull-up or pull-down

00: No pull-up, pull-down

01: Pull-up

10: Pull-down

11: Reserved

8.4.5 GPIOx input data register (GPIOx_IDR) (x = A to B)

Address offset: Block A: 0x0010

Address offset: Block B: 0x0410

Reset value: 0x0000 XXXX

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
ID15ID14ID13ID12ID11ID10ID9ID8ID7ID6ID5ID4ID3ID2ID1ID0
rrrrrrrrrrrrrrrr

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 IDy : Port Pxy input data bit (y = 15 to 0)

These bits are read-only. They contain the input value of the corresponding I/O port.

8.4.6 GPIOx output data register (GPIOx_ODR) (x = A to B)

Address offset: Block A: 0x0014

Address offset: Block B: 0x0414

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
OD15OD14OD13OD12OD11OD10OD9OD8OD7OD6OD5OD4OD3OD2OD1OD0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 ODy : Port Pxy output data (y = 15 to 0)

These bits can be read and written by software.

Note: For atomic bit set/reset, OD bits can be individually set and/or reset by writing to the GPIOx_BSRR and GPIOx_BRR registers.

8.4.7 GPIOx bit set/reset register (GPIOx_BSRR) (x = A to B)

Address offset: Block A: 0x0018

Address offset: Block B: 0x0418

Reset value: 0x0000 0000

31302928272625242322212019181716
BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1
1514131211109876543210
BS15BS14BS13BS12BS11BS10BS9BS8BS7BS6BS5BS4BS3BS2BS1BS0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1

Bits 31:16 BRy : Port Pxy reset output data bit [15:0] in GPIOx_ODR (y = 15 to 0)

These bits are read clear-write 1. A read to these bits returns the value 0x0000.

0: No action on the corresponding GPIOx_ODR.OD[y] bit

1: Resets the corresponding GPIOx_ODR.OD[y] bit.

Note: If both BSy and BRy are set, BSy has priority.

Bits 15:0 BSy : Port Pxy set output data bit [15:0] in GPIOx_ODR (y = 15 to 0)

These bits are read clear-write 1. A read to these bits returns the value 0x0000.

0: No action on the corresponding GPIOx_ODR.OD[y] bit

1: Sets the corresponding GPIOx_ODR.OD[y] bit.

8.4.8 GPIOx configuration lock register (GPIOx_LCKR) (x = A to B)

Address offset: Block A: 0x001C

Address offset: Block B: 0x041C

Reset value: 0x0000 0000

This register is used to lock the configuration of the port bits when a correct write sequence is applied to bit 16 (LCKK). The value of bits [15:0] is used to lock the configuration of the GPIO. During the write sequence, the value of LCKR[15:0] must not change. When the lock sequence has been applied on a port bit, the value of this port bit can no longer be modified until the next MCU reset or peripheral reset.

Note: A specific write sequence is used to write to GPIOx_LCKR. Only word access (32-bit long) is allowed during this locking sequence.

Each lock bit freezes a specific configuration register (control and alternate function registers).

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCKK
rw
1514131211109876543210
LCK15LCK14LCK13LCK12LCK11LCK10LCK9LCK8LCK7LCK6LCK5LCK4LCK3LCK2LCK1LCK0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:17 Reserved, must be kept at reset value.

Bit 16 LCKK : Lock key

This bit can be read any time. It can only be modified using the lock key write sequence.

0: Port configuration lock key not active

1: Port configuration lock key active. The GPIOx_LCKR register is locked until the next MCU reset or peripheral reset.

LOCK key write sequence:

WR \( LCKR[16] = 1 + LCKR[15:0] \)

WR \( LCKR[16] = 0 + LCKR[15:0] \)

WR \( LCKR[16] = 1 + LCKR[15:0] \)

RD LCKR

RD \( LCKR[16] = 1 \) (This read operation is optional but it confirms that the lock is active.)

Note: During the LOCK key write sequence, the value of LCK[15:0] must not change.

Any error in the lock sequence aborts the lock.

After the first lock sequence on any bit of the port, any read access on the LCKK bit returns 1 until the next MCU reset or peripheral reset.

Bits 15:0 LCKy : Port Px[15:0] lock configuration (y = 15 to 0)

These bits are read/write but can only be written when the LCKK bit is 0.

0: Port Pxy configuration not locked

1: Port Pxy configuration locked

8.4.9 GPIOx alternate function low register (GPIOx_AFRL) (x = A to B)

Address offset: Block A: 0x0020

Address offset: Block B: 0x0420

Reset value: 0x0000 0000

31302928272625242322212019181716
AFSEL7[3:0]AFSEL6[3:0]AFSEL5[3:0]AFSEL4[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
AFSEL3[3:0]AFSEL2[3:0]AFSEL1[3:0]AFSEL0[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 AFSELY[3:0] : Port Pxy alternate function selection (y = 7 to 0)

These bits are written by software to configure alternate function I/Os

0x0: AF0 selected

0x1: AF1 selected

0x2: AF2 selected

...

0xE: AF14 selected

0xF: AF15 selected

8.4.10 GPIOx alternate function high register (GPIOx_AFRH) (x = A to B)

Address offset: Block A: 0x0024

Address offset: Block B: 0x0424

Reset value: 0x0000 0000

31302928272625242322212019181716
AFSEL15[3:0]AFSEL14[3:0]AFSEL13[3:0]AFSEL12[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
AFSEL11[3:0]AFSEL10[3:0]AFSEL9[3:0]AFSEL8[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 AFSELY[3:0] : Port Pxy alternate function selection (y = 15 to 8)

These bits are written by software to configure alternate function I/Os

0x0: AF0 selected

0x1: AF1 selected

0x2: AF2 selected

...

0xE: AF14 selected

0xF: AF15 selected

8.4.11 GPIOx bit reset register (GPIOx_BRR) (x = A to B)

Address offset: Block A: 0x0028

Address offset: Block B: 0x0428

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 BRy : Port Pxy reset output data bit [15:0] in GPIOx_ODR (y = 15 to 0)

These bits are read clear-write 1. A read to these bits returns the value 0x0000.

0: No action on the corresponding GPIOx_ODR.OD[y] bit

1: Resets the corresponding GPIOx_ODR.OD[y] bit.

8.4.12 GPIOC mode register (GPIOC_MODER)

Address offset: 0x0800

Reset value: 0xFC00 3FFF

31302928272625242322212019181716
MODE15[1:0]MODE14[1:0]MODE13[1:0]Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
rwrwrwrwrwrw
1514131211109876543210
Res.MODE6[1:0]MODE5[1:0]MODE4[1:0]MODE3[1:0]MODE2[1:0]MODE1[1:0]MODE0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:30 MODE15[1:0] : Port PC15 IO type configuration

Bits 29:28 MODE14[1:0] : Port PC14 IO type configuration

Bits 27:26 MODE13[1:0] : Port PC13 IO type configuration

Bits 25:14 Reserved, must be kept at reset value.

Bits 13:12 MODE6[1:0] : Port PC6 IO type configuration

Bits 11:10 MODE5[1:0] : Port PC5 IO type configuration

Bits 9:8 MODE4[1:0] : Port PC4 IO type configuration

Bits 7:6 MODE3[1:0] : Port PC3 IO type configuration

Bits 5:4 MODE2[1:0] : Port PC2 IO type configuration

Bits 3:2 MODE1[1:0] : Port PC1 IO type configuration

Bits 1:0 MODE0[1:0] : Port PC0 IO type configuration

These bits are written by software to configure the I/O mode.

00: Input mode

01: General purpose output mode

10: Alternate function mode

11: Analog mode (reset state)

8.4.13 GPIOC output type register (GPIOC_OTYPER)

Address offset: 0x0804

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
OT15OT14OT13Res.Res.Res.Res.Res.Res.OT6OT5OT4OT3OT2OT1OT0
rwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:13 OTy : Port PCy output type configuration (y = 15 to 13)

These bits are written by software to configure the I/O output type.

0: Output push-pull (reset state)

1: Output open-drain

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 OTy : Port PCy output type configuration (y = 6 to 0)

8.4.14 GPIOC output speed register (GPIOC_OSPEEDR)

Address offset: 0x0808

Reset value: 0x0000 0000

31302928272625242322212019181716
OSPEED15[1:0]OSPEED14[1:0]OSPEED13[1:0]Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
rwrwrwrwrwrw
1514131211109876543210
Res.Res.OSPEED6[1:0]OSPEED5[1:0]OSPEED4[1:0]OSPEED3[1:0]OSPEED2[1:0]OSPEED1[1:0]OSPEED0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:30 OSPEED15[1:0] : Port PC15 output speed configuration

Bits 29:28 OSPEED14[1:0] : Port PC14 output speed configuration

Bits 27:26 OSPEED13[1:0] : Port PC13 output speed configuration

Bits 25:14 Reserved, must be kept at reset value.

Bits 13:12 OSPEED6[1:0] : Port PC6 output speed configuration

Bits 11:10 OSPEED5[1:0] : Port PC5 output speed configuration

Bits 9:8 OSPEED4[1:0] : Port PC4 output speed configuration

Bits 7:6 OSPEED3[1:0] : Port PC3 output speed configuration

Bits 5:4 OSPEED2[1:0] : Port PC2 output speed configuration

Bits 3:2 OSPEED1[1:0] : Port PC1 output speed configuration

Bits 1:0 OSPEED0[1:0] : Port PC0 output speed configuration

These bits are written by software to configure the I/O output speed.

00: Low speed

01: Medium speed

10: Fast speed

11: High speed

Note: Refer to the device datasheet for the frequency specifications and the power supply and load conditions for each speed.

8.4.15 GPIOC pull-up/pull-down register (GPIOC_PUPDR)

Address offset: 0x080C

Reset value: 0x0000 0000

31302928272625242322212019181716
PUPD15[1:0]PUPD14[1:0]PUPD13[1:0]Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
rwrwrwrwrwrw

1514131211109876543210
Res.PUPD6[1:0]PUPD5[1:0]PUPD4[1:0]PUPD3[1:0]PUPD2[1:0]PUPD1[1:0]PUPD0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:30 PUPD15[1:0] : Port PC15 pull configuration

Bits 29:28 PUPD14[1:0] : Port PC14 pull configuration

Bits 27:26 PUPD13[1:0] : Port PC13 pull configuration

Bits 25:14 Reserved, must be kept at reset value.

Bits 13:12 PUPD6[1:0] : Port PC6 pull configuration

Bits 11:10 PUPD5[1:0] : Port PC5 pull configuration

Bits 9:8 PUPD4[1:0] : Port PC4 pull configuration

Bits 7:6 PUPD3[1:0] : Port PC3 pull configuration

Bits 5:4 PUPD2[1:0] : Port PC2 pull configuration

Bits 3:2 PUPD1[1:0] : Port PC1 pull configuration

Bits 1:0 PUPD0[1:0] : Port PC0 pull configuration

These bits are written by software to configure the I/O pull-up or pull-down.

00: No pull-up, pull-down

01: Pull-up

10: Pull-down

11: Reserved

8.4.16 GPIOC input data register (GPIOC_IDR)

Address offset: 0x0810

Reset value: 0x0000 XXXX

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
ID15ID14ID13Res.Res.Res.Res.Res.Res.ID6ID5ID4ID3ID2ID1ID0
rrrrrrrrrr

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:13 IDy : Port PCy input data bit (y = 15 to 13)

These bits are read-only. They contain the input value of the corresponding I/O port.

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 IDy : Port PCy input data bit (y = 6 to 0)

8.4.17 GPIOC output data register (GPIOC_ODR)

Address offset: 0x0814

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
OD15OD14OD13Res.Res.Res.Res.Res.Res.OD6OD5OD4OD3OD2OD1OD0
rwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:13 ODy : Port PCy output data bit (y = 15 to 13)

These bits can be read and written by software.

Note: For atomic bit set/reset, OD bits can be individually set and/or reset by writing to the GPIOC_BSRR and GPIOC_BRR registers.

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 ODy : Port PCy output data bit (y = 6 to 0)

8.4.18 GPIOC bit set/reset register (GPIOC_BSRR)

Address offset: 0x0818

Reset value: 0x0000 0000

31302928272625242322212019181716
BR15BR14BR13Res.Res.Res.Res.Res.Res.BR6BR5BR4BR3BR2BR1BR0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1
1514131211109876543210
BS15BS14BS13Res.Res.Res.Res.Res.Res.BS6BS5BS4BS3BS2BS1BS0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1

Bits 31:29 BRy : Port PCy reset output data bit [y] in GPIOC_ODR (y = 15 to 13)

These bits are read clear-write 1. A read to these bits returns the value 0.

0: No action on the corresponding GPIOC_ODR.OD0

1: Resets the corresponding GPIOC_ODR.OD0.

Note: If both BS0 and BR0 are set, BS0 has priority.

Bits 28:23 Reserved, must be kept at reset value.

Bits 22:16 BRy : Port PCy reset output data bit [y] in GPIOC_ODR (y = 6 to 0)

Bits 15:13 BSy : Port PCy set output data bit [y] in GPIOC_ODR (y = 15 to 13)

These bits are read clear-write 1. A read to these bits returns the value 0.

0: No action on the corresponding GPIOC_ODR.OD0

1: Resets the corresponding GPIOC_ODR.OD0.

Note: If both BS0 and BR0 are set, BS0 has priority.

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 BSy : Port PCy set output data bit [y] in GPIOC_ODR (y = 6 to 0)

8.4.19 GPIOC configuration lock register (GPIOC_LCKR)

Address offset: 0x081C

Reset value: 0x0000 0000

This register is used to lock the configuration of the port bits when a correct write sequence is applied to bit 16 (LCKK). The value of bits [15:0] is used to lock the configuration of the GPIO. During the write sequence, the value of LCKR[15:0] must not change. When the lock sequence has been applied on a port bit, the value of this port bit can no longer be modified until the next MCU reset or peripheral reset.

Note: A specific write sequence is used to write to the GPIOC_LCKR register. Only word access (32-bit long) is allowed during this locking sequence.

Each lock bit freezes a specific configuration register (control and alternate function registers).

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCKK
rw
1514131211109876543210
LCK15LCK14LCK13Res.Res.Res.Res.Res.Res.LCK6LCK5LCK4LCK3LCK2LCK1LCK0
rwrwrwrwrwrwrwrwrwrw

Bits 31:17 Reserved, must be kept at reset value.

Bit 16 LCKK : Lock key

This bit can be read any time. It can only be modified using the lock key write sequence.

0: Port PC configuration lock key not active

1: Port PC configuration lock key active. GPIOC_LCKR is locked until the next MCU reset or peripheral reset.

LOCK key write sequence:

WR LCKR[16] = 1 + LCKR[15:0]

WR LCKR[16] = 0 + LCKR[15:0]

WR LCKR[16] = 1 + LCKR[15:0]

RD LCKR

RD LCKR[16] = 1 (This read operation is optional but it confirms that the lock is active.)

Note: During the LOCK key write sequence, the value of LCK[15:0] must not change.

Any error in the lock sequence aborts the lock.

After the first lock sequence on any bit of the port, any read access on the LCKK bit returns 1 until the next MCU reset or peripheral reset.

Bits 15:13 LCKy : Port PCy lock configuration (y = 15 to 13)

This bit is read/write but can only be written when the LCKK bit is 0.

0: Port PCy configuration not locked

1: Port PCy configuration locked

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 LCKy : Port PCy lock configuration (y = 6 to 0)

8.4.20 GPIOC alternate function low register (GPIOC_AFRL)

Address offset: 0x0820

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.AFSEL6[3:0]AFSEL5[3:0]AFSEL4[3:0]
rwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
AFSEL3[3:0]AFSEL2[3:0]AFSEL1[3:0]AFSEL0[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:28 Reserved, must be kept at reset value.

Bits 27:24 AFSEL6[3:0] : Port PC6 alternate function selection

Bits 23:20 AFSEL5[3:0] : Port PC5 alternate function selection

Bits 19:16 AFSEL4[3:0] : Port PC4 alternate function selection

Bits 15:12 AFSEL3[3:0] : Port PC3 alternate function selection

Bits 11:8 AFSEL2[3:0] : Port PC2 alternate function selection

Bits 7:4 AFSEL1[3:0] : Port PC1 alternate function selection

Bits 3:0 AFSEL0[3:0] : Port PC0 alternate function selection

These bits are written by software to configure alternate function I/Os.

0x0: AF0 selected

0x1: AF1 selected

0x2: AF2 selected

...

0xE: AF14 selected

0xF: AF15 selected

8.4.21 GPIOC alternate function high register (GPIOC_AFRH)

Address offset: 0x0824

Reset value: 0x0000 0000

31302928272625242322212019181716
AFSEL15[3:0]AFSEL14[3:0]AFSEL13[3:0]Res.Res.Res.Res.
rwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.

Bits 31:28 AFSEL15[3:0] : Port PC15 alternate function selection

Bits 27:24 AFSEL14[3:0] : Port PC14 alternate function selection

Bits 23:20 AFSEL13[3:0] : Port PC13 alternate function selection

These bits are written by software to configure alternate function I/Os.

0x0: AF0 selected

0x1: AF1 selected

0x2: AF2 selected

...

0xE: AF14 selected

0xF: AF15 selected

Bits 19:0 Reserved, must be kept at reset value.

8.4.22 GPIOC bit reset register (GPIOC_BRR)

Address offset: 0x0828

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
BR15BR14BR13Res.Res.Res.Res.Res.Res.BR6BR5BR4BR3BR2BR1BR0
rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1rc_w1

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:13 BRy : Port PCy reset output data bit [15] in GPIOC_ODR (y = 15 to 13)

These bits are read clear-write 1. A read to this bit returns the value 0.

0: No action on the corresponding GPIOC_ODR.OD0

1: Resets the corresponding GPIOC_ODR.OD0.

Bits 12:7 Reserved, must be kept at reset value.

Bits 6:0 BRy : Port PCy reset output data bit [6] in GPIOC_ODR (y = 6 to 0)

8.4.23 GPIOH mode register (GPIOH_MODER)

Address offset: 0x1C00

Reset value: 0x0000 00C0

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.MODE3[1:0]Res.Res.Res.Res.Res.Res.Res.
rwrw

Bits 31:8 Reserved, must be kept at reset value.

Bits 7:6 MODE3[1:0] : Port PH3 IO type configuration

These bits are written by software to configure the I/O mode.

00: Input mode

01: General purpose output mode

10: Alternate function mode

11: Analog mode (reset state)

Bits 5:0 Reserved, must be kept at reset value.

8.4.24 GPIO H output type register (GPIOH_OTYPER)

Address offset: 0x1C04

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OT3Res.Res.Res.
rw

Bits 31:4 Reserved, must be kept at reset value.

Bit 3 OT3 : Port PH3 output type configuration

These bits are written by software to configure the I/O output type.

0: Output push-pull (reset state)

1: Output open-drain

Bits 2:0 Reserved, must be kept at reset value.

8.4.25 GPIOH output speed register (GPIOH_OSPEEDR)

Address offset: 0x1C08

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.OSPEED3[1:0]Res.Res.Res.Res.Res.Res.Res.
rwrw

Bits 31:8 Reserved, must be kept at reset value.

Bits 7:6 OSPEED3[1:0] : Port PH3 output speed configuration

These bits are written by software to configure the I/O output speed.

00: Low speed

01: Medium speed

10: Fast speed

11: High speed

Note: Refer to the device datasheet for the frequency specifications and the power supply and load conditions for each speed.

Bits 5:0 Reserved, must be kept at reset value.

8.4.26 GPIOH pull-up/pull-down register (GPIOH_PUPDR)

Address offset: 0x1C0C

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.PUPD3[1:0]Res.Res.Res.Res.Res.Res.Res.
rwrw

Bits 31:8 Reserved, must be kept at reset value.

Bits 7:6 PUPD3[1:0] : Port PH3 pull configuration

These bits are written by software to configure the I/O pull-up or pull-down.

00: No pull-up, pull-down

01: Pull-up

10: Pull-down

11: Reserved

Bits 5:0 Reserved, must be kept at reset value.

8.4.27 GPIOH input data register (GPIOH_IDR)

Address offset: 0x1C10

Reset value: 0x0000 000X

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.ID3
r
Res.Res.Res.

Bits 31:4 Reserved, must be kept at reset value.

Bit 3 ID3 : Port PH3 input data bit

This bit is read-only. It contains the input value of the corresponding I/O port.

Bits 2:0 Reserved, must be kept at reset value.

8.4.28 GPIOH output data register (GPIOH_ODR)

Address offset: 0x1C14

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OD3
rw
Res.Res.Res.

Bits 31:4 Reserved, must be kept at reset value.

Bit 3 OD3 : Port PH3 output data

This bit can be read and written by software.

Note: For atomic bit set/reset, OD bits can be individually set and/or reset by writing to the GPIOH_BSRR and GPIOH_BRR registers.

Bits 2:0 Reserved, must be kept at reset value.

8.4.29 GPIO H bit set/reset register (GPIOH_BSRR)

Address offset: 0x1C18

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BR3
rc_w1
Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BS3
rc_w1
Res.Res.Res.

Bits 31:20 Reserved, must be kept at reset value.

Bit 19 BR3 : Port PH3 reset output data bit [3] in GPIOH_ODR

This bit is read clear-write 1. A read to this bit returns the value 0.

0: No action on the corresponding GPIOH_ODR.OD3

1: Resets the corresponding GPIOH_ODR.OD3.

Note: If both BS3 and BR3 are set, BS3 has priority.

Bits 18:4 Reserved, must be kept at reset value.

Bit 3 BS3 : Port PH3 set output data bit [3] in GPIOH_ODR

This bit is read clear-write 1. A read to this bit returns the value 0.

0: No action on the corresponding GPIOH_ODR.OD3

1: Sets the corresponding GPIOH_ODR.OD3.

Bits 2:0 Reserved, must be kept at reset value.

8.4.30 GPIOH configuration lock register (GPIOH_LCKR)

Address offset: 0x1C1C

Reset value: 0x0000 0000

This register is used to lock the configuration of the port bits when a correct write sequence is applied to bit 16 (LCKK). The value of bits [15:0] is used to lock the configuration of the GPIO. During the write sequence, the value of LCKR[15:0] must not change. When the lock sequence has been applied on a port bit, the value of this port bit can no longer be modified until the next MCU reset or peripheral reset.

Note: A specific write sequence is used to write to the GPIOH_LCKR register. Only word access (32-bit long) is allowed during this locking sequence.

Each lock bit freezes a specific configuration register (control and alternate function registers).

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCKK
rw
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCK3Res.Res.Res.
rw

Bits 31:17 Reserved, must be kept at reset value.

Bit 16 LCKK : Lock key

This bit can be read any time. It can only be modified using the lock key write sequence.

0: Port PH configuration lock key not active

1: Port PH configuration lock key active. GPIOH_LCKR is locked until the next MCU reset or peripheral reset.

LOCK key write sequence:

WR LCKR[16] = 1 + LCKR[15:0]

WR LCKR[16] = 0 + LCKR[15:0]

WR LCKR[16] = 1 + LCKR[15:0]

RD LCKR

RD LCKR[16] = 1 (This read operation is optional but it confirms that the lock is active.)

Note: During the LOCK key write sequence, the value of LCK[15:0] must not change.

Any error in the lock sequence aborts the lock.

After the first lock sequence on any bit of the port, any read access on the LCKK bit returns 1 until the next MCU reset or peripheral reset.

Bits 15:4 Reserved, must be kept at reset value.

Bit 3 LCK3 : Port PH3 lock configuration

This bit is read/write but can only be written when the LCKK bit is 0.

0: Port PH3 configuration not locked

1: Port PH3 configuration locked

Bits 2:0 Reserved, must be kept at reset value.

8.4.31 GPIOH alternate function low register (GPIOH_AFRL)

Address offset: 0x1C20

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
AFSEL3[3:0]Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
rwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:12 AFSEL3[3:0] : Port PH3 alternate function selection

These bits are written by software to configure alternate function I/Os.

0x0: AF0 selected

0x1: AF1 selected

0x2: AF2 selected

...

0xE: AF14 selected

0xF: AF15 selected

Bits 11:0 Reserved, must be kept at reset value.

8.4.32 GPIOH bit reset register (GPIOH_BRR)

Address offset: 0x1C28

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BR3Res.Res.Res.
rc_w1

Bits 31:4 Reserved, must be kept at reset value.

Bit 3 BR3 : Port PH3 reset output data bit [3] in GPIOH_ODR

This bit is read clear-write 1. A read to this bit returns the value 0.

0: No action on the corresponding GPIOH_ODR.OD3

1: Resets the corresponding GPIOH_ODR.OD3.

Bits 2:0 Reserved, must be kept at reset value.

8.4.33 GPIOA register map

Table 60. GPIOA register map and reset values

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0000GPIOA_MODERMODE15[1:0]MODE14[1:0]MODE13[1:0]MODE12[1:0]MODE11[1:0]MODE10[1:0]MODE9[1:0]MODE8[1:0]MODE7[1:0]MODE6[1:0]MODE5[1:0]MODE4[1:0]MODE3[1:0]MODE2[1:0]MODE1[1:0]MODE0[1:0]
Reset value10101011111111111111111111111111
0x0004GPIOA_OTYPERRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OT15OT14OT13OT12OT11OT10OT9OT8OT7OT6OT5OT4OT3OT2OT1OT0
Reset value0000000000000000
0x0008GPIOA_OSPEEDROSPEED15[1:0]OSPEED14[1:0]OSPEED13[1:0]OSPEED12[1:0]OSPEED11[1:0]OSPEED10[1:0]OSPEED9[1:0]OSPEED8[1:0]OSPEED7[1:0]OSPEED6[1:0]OSPEED5[1:0]OSPEED4[1:0]OSPEED3[1:0]OSPEED2[1:0]OSPEED1[1:0]OSPEED0[1:0]
Reset value00001100000000000000000000000000
0x000CGPIOA_PUPDRPUPD15[1:0]PUPD14[1:0]PUPD13[1:0]PUPD12[1:0]PUPD11[1:0]PUPD10[1:0]PUPD9[1:0]PUPD8[1:0]PUPD7[1:0]PUPD6[1:0]PUPD5[1:0]PUPD4[1:0]PUPD3[1:0]PUPD2[1:0]PUPD1[1:0]PUPD0[1:0]
Reset value01100100000000000000000000000000
0x0010GPIOA_IDRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.ID15ID14ID13ID12ID11ID10ID9ID8ID7ID6ID5ID4ID3ID2ID1ID0
Reset valuexxxxxxxxxxxxxxxx
0x0014GPIOA_ODRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OD15OD14OD13OD12OD11OD10OD9OD8OD7OD6OD5OD4OD3OD2OD1OD0
Reset value0000000000000000

Table 60. GPIOA register map and reset values (continued)

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0018GPIOA_BSRRBR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0BS15BS14BS13BS12BS11BS10BS9BS8BS7BS6BS5BS4BS3BS2BS1BS0
Reset value00000000000000000000000000000000
0x001CGPIOA_LCKRRes.LCKKLCK15LCK14LCK13LCK12LCK11LCK10LCK9LCK8LCK7LCK6LCK5LCK4LCK3LCK2LCK1LCK0
Reset value00000000000000000
0x0020GPIOA_AFRLAFSEL7[3:0]AFSEL6[3:0]AFSEL5[3:0]AFSEL4[3:0]AFSEL3[3:0]AFSEL2[3:0]AFSEL1[3:0]AFSEL0[3:0]
Reset value00000000000000000000000000000000
0x0024GPIOA_AFRHAFSEL15[3:0]AFSEL14[3:0]AFSEL13[3:0]AFSEL12[3:0]AFSEL11[3:0]AFSEL10[3:0]AFSEL9[3:0]AFSEL8[3:0]
Reset value00000000000000000000000000000000
0x0028GPIOA_BRRRes.BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0
Reset value0000000000000000

Refer to Section 2.4 for the register boundary addresses.

8.4.34 GPIOB register map

Table 61. GPIOB register map and reset values

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0400GPIOB_MODERMODE15[1:0]MODE14[1:0]MODE13[1:0]MODE12[1:0]MODE11[1:0]MODE10[1:0]MODE9[1:0]MODE8[1:0]MODE7[1:0]MODE6[1:0]MODE5[1:0]MODE4[1:0]MODE3[1:0]MODE2[1:0]MODE1[1:0]MODE0[1:0]
Reset value11111111111111111111111111111111
0x0404GPIOB_OTYPERRes.OT15OT14OT13OT12OT11OT10OT9OT8OT7OT6OT5OT4OT3OT2OT1OT0
Reset value0000000000000000
0x0408GPIOB_OSPEEDROSPEED15[1:0]OSPEED14[1:0]OSPEED13[1:0]OSPEED12[1:0]OSPEED11[1:0]OSPEED10[1:0]OSPEED9[1:0]OSPEED8[1:0]OSPEED7[1:0]OSPEED6[1:0]OSPEED5[1:0]OSPEED4[1:0]OSPEED3[1:0]OSPEED2[1:0]OSPEED1[1:0]OSPEED0[1:0]
Reset value00000000000000000000000000000000
0x040CGPIOB_PUPDRPUPD15[1:0]PUPD14[1:0]PUPD13[1:0]PUPD12[1:0]PUPD11[1:0]PUPD10[1:0]PUPD9[1:0]PUPD8[1:0]PUPD7[1:0]PUPD6[1:0]PUPD5[1:0]PUPD4[1:0]PUPD3[1:0]PUPD2[1:0]PUPD1[1:0]PUPD0[1:0]
Reset value00000000000000000000000001000000
0x0410GPIOB_IDRRes.ID15ID14ID13ID12ID11ID10ID9ID8ID7ID6ID5ID4ID3ID2ID1ID0
Reset valuexxxxxxxxxxxxxxxx
0x0414GPIOB_ODRRes.OD15OD14OD13OD12OD11OD10OD9OD8OD7OD6OD5OD4OD3OD2OD1OD0
Reset value0000000000000000
0x0418GPIOB_BSRRBR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0BS15BS14BS13BS12BS11BS10BS9BS8BS7BS6BS5BS4BS3BS2BS1BS0
Reset value00000000000000000000000000000000

Table 61. GPIOB register map and reset values (continued)

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x041CGPIOB_LCKRRes.LCKKLCK15LCK14LCK13LCK12LCK11LCK10LCK9LCK8LCK7LCK6LCK5LCK4LCK3LCK2LCK1LCK0
Reset value00000000000000000
0x0420GPIOB_AFRLAFSEL7[3:0]AFSEL6[3:0]AFSEL5[3:0]AFSEL4[3:0]AFSEL3[3:0]AFSEL2[3:0]AFSEL1[3:0]AFSEL0[3:0]
Reset value00000000000000000000000000000000
0x0424GPIOB_AFRHAFSEL15[3:0]AFSEL14[3:0]AFSEL13[3:0]AFSEL12[3:0]AFSEL11[3:0]AFSEL10[3:0]AFSEL9[3:0]AFSEL8[3:0]
Reset value00000000000000000000000000000000
0x0428GPIOB_BRRRes.BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0
Reset value0000000000000000

Refer to Section 2.4 for the register boundary addresses.

8.4.35 GPIOC register map

Table 62. GPIOC register map and reset values

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0800GPIOC_MODERMODE15[1:0]MODE14[1:0]MODE13[1:0]Res.MODE6[1:0]MODE5[1:0]MODE4[1:0]MODE3[1:0]MODE2[1:0]MODE1[1:0]MODE0[1:0]
Reset value11111111111111111111
0x0804GPIOC_OTYPERRes.OT15OT14OT13Res.OT6OT5OT4OT3OT2OT1OT0
Reset value0000000000
0x0808GPIOC_OSPEEDROSPEED15[1:0]OSPEED14[1:0]OSPEED13[1:0]Res.OSPEED6[1:0]OSPEED5[1:0]OSPEED4[1:0]OSPEED3[1:0]OSPEED2[1:0]OSPEED1[1:0]OSPEED0[1:0]
Reset value00000000000000000000
0x080CGPIOC_PUPDRPUPD15[1:0]PUPD14[1:0]PUPD13[1:0]Res.PUPD6[1:0]PUPD5[1:0]PUPD4[1:0]PUPD3[1:0]PUPD2[1:0]PUPD1[1:0]PUPD0[1:0]
Reset value00000000000000000000
0x0810GPIOC_IDRRes.ID15ID14ID13Res.ID6ID5ID4ID3ID2ID1ID0
Reset valuexxxxxxxxxx
0x0814GPIOC_ODRRes.OD15OD14OD13Res.OD6OD5OD4OD3OD2OD1OD0
Reset value0000000000
0x0818GPIOC_BSRRBR15BR14BR13Res.BR6BR5BR4BR3BR2BR1BR0BS15BS14BS13Res.BS6BS5BS4BS3BS2BS1BS0
Reset value00000000000000000000
0x081CGPIOC_LCKRRes.LCKKLCK15LCK14LCK13Res.LCK6LCK5LCK4LCK3LCK2LCK1LCK0
Reset value00000000000
0x0820GPIOC_AFRLRes.AFSEL6[3:0]AFSEL5[3:0]AFSEL4[3:0]AFSEL3[3:0]AFSEL2[3:0]AFSEL1[3:0]AFSEL0[3:0]
Reset value0000000000000000000000000000

Table 62. GPIOC register map and reset values (continued)

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0824GPIOC_AFRHAFSEL15[3:0]AFSEL14[3:0]AFSEL13[3:0]
Reset value00000000000000000000000000000000
0x0828GPIOC_BRRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BR15BR14BR13Res.Res.Res.Res.Res.Res.BR6BR5BR4BR3BR2BR1BR0
Reset value0000000000

Refer to Section 2.4 for the register boundary addresses.

8.4.36 GPIOH register map

Table 63. GPIOH register map and reset values

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x1C00GPIOH_MODERRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.MODE3[1:0]
Reset value11
0x1C04GPIOH_OTYPERRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OT3Res.Res.
Reset value0
0x1C08GPIOH_OSPEEDRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OSPEED3[1:0]
Reset value00
0x1C0CGPIOH_PUPDRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.PUPD3[1:0]
Reset value00
0x1C10GPIOH_IDRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.ID3Res.Res.
Reset valuex
0x1C14GPIOH_ODRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OD3Res.Res.
Reset value0
0x1C18GPIOH_BSRRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BS3Res.Res.
Reset value0
0x1C1CGPIOH_LCKRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCK3Res.Res.
Reset value0
0x1C20GPIOH_AFRLRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
Reset value
0x1C24ReservedReserved.
0x1C28GPIOH_BRRRes.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.BR3Res.Res.
Reset value0

Refer to Section 2.4 for the register boundary addresses.