help with using registers to chagne pin dirrections and states.

ulaoulao
Posts: 21
Joined: Thu Jun 13, 2024 6:25 pm

help with using registers to chagne pin dirrections and states.

Postby ulaoulao » Fri Nov 08, 2024 3:56 pm

I'm trying to follow the TRM and set my registers but I'm struggling.

I think I want maybe
REG_WRITE(GPIO_FUNC0_OUT_SEL_CFG_REG, SIG_GPIO_OUT_IDX);
or
GPIO_FUNC0_OUT_SEL_CFG_REG ( 256 )
Or maybe that is the same thing?

and then maybe
WRITE_PERI_REG( GPIO_OUT_REG[0], REG_READ(GPIO_OUT_REG[0] |= 0x01) );
WRITE_PERI_REG( GPIO_ENABLE_REG[0], REG_READ(GPIO_ENABLE_REG[0] |= 0x01) );

What I'm trying to do here is set GPIO1 to output and high or low. then I will need to bring the GPIO in and read its states without the peripheral holding it high or low so that I can read the external device.

I work with many device that require a transition in ttl around 50ns. so the API will not work for me, I did set up a GPIO bundle and was able to play with the ee.set_bit_gpio_out registers but I want to try the GPIO_FUNC0_OUT_SEL_CFG_REG .


ulaoulao
Posts: 21
Joined: Thu Jun 13, 2024 6:25 pm

Re: help with using registers to chagne pin dirrections and states.

Postby ulaoulao » Fri Nov 08, 2024 7:03 pm

This looks great, I think its what I want but its written in C++ and I can not use the header. So I'd have to take this all a part and rewrite it. Sadly way complicated and worse, not documented. I feel like its just putting my at another drawing board.

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

Re: help with using registers to chagne pin dirrections and states.

Postby MicroController » Fri Nov 08, 2024 10:37 pm


ulaoulao
Posts: 21
Joined: Thu Jun 13, 2024 6:25 pm

Re: help with using registers to chagne pin dirrections and states.

Postby ulaoulao » Sat Nov 09, 2024 12:23 am

yeah looks better, I do not see how to interface with it ( i.e. how to use the hw pointer and what not) but its a lot easier to follow. I may be able to use the functions anyways.

any idea what is meant by The LL layer? I do have the s3.

EDIT__________

So yes this is very good info, thx for this but my manipulation is still not working under its guidance

looking at this function.

static inline void gpio_ll_input_enable(gpio_dev_t *hw, uint32_t gpio_num)
{
PIN_INPUT_ENABLE(IO_MUX_GPIO0_REG + (gpio_num * 4));
}

When I do this my connected device can not change the condition of the lines. On my attached images the brown and white lines are my attached device to pins 1 and 2. As soon as I run the PIN_INPUT_ENABLE on those pins it stops. Red is just debug, to show when I did this.

Somehow the esp32 is holding low on my lines. Like the level is set to low, but how can that be if its in input mode?
Attachments
img.png
img.png (5.5 KiB) Viewed 780 times

ulaoulao
Posts: 21
Joined: Thu Jun 13, 2024 6:25 pm

Re: help with using registers to chagne pin dirrections and states.

Postby ulaoulao » Sat Nov 09, 2024 3:30 am

I see what was wrong, its my GPIO bundle code. I guess to get precise timing, you need to use the GPIO bundles. but need to disbale it to use inputs.

username
Posts: 530
Joined: Thu May 03, 2018 1:18 pm

Re: help with using registers to chagne pin dirrections and states.

Postby username » Sat Nov 09, 2024 5:27 am

You dont have to re-write it. just pull the parts out you need.

For example to set GPIO high and low

// Set GPIO1 high
GPIO.out_w1ts = ((uint32_t)1 << GPIO_NUM_1);

// Set GPIO1 Low
GPIO.out_w1tc = ((uint32_t)1 << GPIO_NUM_1);

just keep in mind if the GPIOs are >=32 you need to do it differently

// // Register GPIO.out_w1ts is for set bits 0-31
// // Register GPIO.out_w1tc is for clr bits 0-31
// //
// // Register GPIO.out1_w1ts.val is for set bits >=32
// // Register GPIO.out1_w1tc.val is for clr bits >=32

ulaoulao
Posts: 21
Joined: Thu Jun 13, 2024 6:25 pm

Re: help with using registers to chagne pin dirrections and states.

Postby ulaoulao » Sat Nov 09, 2024 2:16 pm

yes I saw that, as I said, but I found my underlying issue.

If I do as suggested it works, but its very sloppy and slow. The solution learned a ways back as to use GPIO bundle code. This makes the timing very fast and very smooth. But in in working with the info given in this thread, I now see things are not working if my bundles are set up. Once I disable them, then yes all works but horribly as noted.

So, going back to my bundle code I need to understand why I can not use the inputs. It would seem only the outputs work.


This is how I set them up

dedic_gpio_bundle_handle_t createBundle( const int arr[], int size, bool makeBundle)
{
gpio_config_t io_conf;

for (int i = 0; i <size; i++)
{
io_conf.intr_type = GPIO_INTR_DISABLE;
io_conf.mode = GPIO_MODE_INPUT_OUTPUT;
io_conf.pin_bit_mask = (1ULL<<i);
io_conf.pull_down_en = GPIO_PULLDOWN_DISABLE;
io_conf.pull_up_en = GPIO_PULLUP_DISABLE;
gpio_config(&io_conf);
}


// Create bundleA,
dedic_gpio_bundle_handle_t bundleA = NULL;
dedic_gpio_bundle_config_t bundleA_config =
{
.gpio_array = arr,
.array_size = size,
.flags = {
.out_en = 1,
.in_en = 1,
},
};
if (makeBundle) dedic_gpio_new_bundle(&bundleA_config, &bundleA);
return bundleA;

}

I thought that was both input and output? Or maybe I need to know how to change direction?

I use this to set my output pin states
asm volatile ("ee.set_bit_gpio_out %0" : : "I"(p) : );

I think this will read states
asm volatile ( "ee.get_gpio_in %[r]" : [r] "=r" (r));

but how to change from output to input?

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

Re: help with using registers to chagne pin dirrections and states.

Postby MicroController » Sat Nov 09, 2024 2:31 pm

ulaoulao wrote:
Sat Nov 09, 2024 12:23 am
any idea what is meant by The LL layer? I do have the s3.
For code compatibility between ESP32 variants, the higher-level IDF code/drivers use functions from the "Hardware Abstraction Layer" (HAL), which in turn uses chip-specific implementations of low-level functions located in the "Low Level" (LL) layer. App -> driver -> HAL -> LL -> hardware.
So the low-level functions are as close as you'll get to the hardware short of manipulating bits in registers yourself.

(Directly using the LL functions from application code is not officially supported by Espressif, so in theory the functions can change/be replaced by other functions from one IDF release to the next, potentially breaking your code which relies on them.)

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

Re: help with using registers to chagne pin dirrections and states.

Postby MicroController » Sat Nov 09, 2024 2:39 pm

ulaoulao wrote:
Sat Nov 09, 2024 2:16 pm
I use this to set my output pin states
asm volatile ("ee.set_bit_gpio_out %0" : : "I"(p) : );

I think this will read states
asm volatile ( "ee.get_gpio_in %[r]" : [r] "=r" (r));

but how to change from output to input?
Try open-drain mode: viewtopic.php?f=2&t=40502&start=10#p133907

Who is online

Users browsing this forum: Bing [Bot] and 117 guests