ESP32-S3 : How to access the registers ?

ThomasESP32
Posts: 193
Joined: Thu Jul 14, 2022 5:15 am

ESP32-S3 : How to access the registers ?

Postby ThomasESP32 » Sat Apr 01, 2023 11:16 am

Good afternoon,

I would like to set the bit IO_MUX_FILTER_EN of the IO_MUX_42_REG register but I don't know how to do it ...
How can I write the corresponding Software code line please ??

Something like IO_MUX_42_REG.IO_MUX_FILTER_EN = 1 ???

I have not understood how to access the bits of the registers.

Best regards,

Thomas TRUILHE

ThomasESP32
Posts: 193
Joined: Thu Jul 14, 2022 5:15 am

Re: ESP32-S3 : How to access the registers ?

Postby ThomasESP32 » Sat Apr 01, 2023 11:25 am

The same thing, I would like to set the GPIO_PIN42_SYNC1_BYPASS and GPIO_PIN42_SYNC2_BYPASS bit of the GPIO_PIN42_REG register.

This because I am following the paragraph "Peripheral Input via GPIO Matrix" => Functional Description
of the ESP32-S3 reference manual. I would like to set the Pin 42 to the SPI3 peripheral.

1) Configure register GPIO_FUNCy_IN_SEL_CFG_REG corresponding to peripheral signal Y in GPIO matrix:

• Set GPIO_SIGy_IN_SEL to enable peripheral signal input via GPIO matrix.
• Set GPIO_FUNCy_IN_SEL to the desired GPIO pin.

2) Optionally enable the filter for pin input signals by setting the register IO_MUX_FILTER_EN. Only the signals
with a valid width of more than two APB clock cycles can be sampled.

3) Synchronize GPIO input. To do so, please set GPIO_PINx_REG corresponding to GPIO pin X as follows:
• Set GPIO_PINx_SYNC1_BYPASS to enable input signal synchronized on rising edge or on falling edge
in the first clock.
• Set GPIO_PINx_SYNC2_BYPASS to enable input signal synchronized on rising edge or on falling edge
in the second clock.

4) Configure IO MUX register to enable pin input. For this end, please set IO_MUX_X_REG corresponding to
GPIO pin x as follows:
• Set IO_MUX_FUN_IE to enable input2

• Set or clear IO_MUX_FUN_WPU and IO_MUX_FUN_WPD, as desired, to enable or disable pull-up
and pull-down resistors.

Best regards,

MicroController
Posts: 1185
Joined: Mon Oct 17, 2022 7:38 pm
Location: Europe, Germany

Re: ESP32-S3 : How to access the registers ?

Postby MicroController » Sat Apr 01, 2023 1:05 pm

If neither the SPI nor the GPIO driver support what you want, you can go about it like this:

Code: Select all

#include "soc/io_mux_reg.h"

PIN_FILTER_EN(IO_MUX_GPIO42_REG, 1);
and

Code: Select all

#include "soc/gpio_reg.h"

REG_SET_FIELD(GPIO_PIN42_REG, GPIO_PIN42_SYNC1_BYPASS, my_value);
Both "SYNCx_BYPASS" fields seem to be two-bit values, so check which value (0...3) you need to set.

Who is online

Users browsing this forum: Bing [Bot], bnp117, EB Solution and 77 guests