Search found 24 matches
- Sat Feb 28, 2026 5:32 pm
- Forum: General Discussion
- Topic: ESP32-P4 CPU frequency 360MHZ
- Replies: 10
- Views: 2837
- Fri Feb 27, 2026 6:23 pm
- Forum: General Discussion
- Topic: ESP32-P4 CPU frequency 360MHZ
- Replies: 10
- Views: 2837
Re: ESP32-P4 CPU frequency 360MHZ
mine is is stuck at 400, and I can not set to 360
I tried
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=360
CONFIG_ESP32_P4_FORCE_400MHZ=n
in y defaults but its forced to 400
if I use menue config its not an option (red)
I need 630 as I get kernel panics at 400
ESP-ROM:esp32p4-eco2-20240710
Build:Jul 10 ...
I tried
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=360
CONFIG_ESP32_P4_FORCE_400MHZ=n
in y defaults but its forced to 400
if I use menue config its not an option (red)
I need 630 as I get kernel panics at 400
ESP-ROM:esp32p4-eco2-20240710
Build:Jul 10 ...
- Fri Feb 27, 2026 6:22 pm
- Forum: General Discussion
- Topic: ESP32-P4 CPU frequency 360MHZ
- Replies: 10
- Views: 2837
Re: ESP32-P4 CPU frequency 360MHZ
dup post
- Tue Nov 12, 2024 5:29 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
This does work, but the time form high to low is a minimum of 696 ns. that won't work unfortunately.
- Sat Nov 09, 2024 8:16 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
I can change the mode easy enough with I can change the mode easy enough with GPIO_MODE_INPUT_OUTPUT_OD
but I'm still not able to find the way to change directions when using bundles. Seems if I write low, the device can not talk ( good ) if I pull high the device cant talk ( good) but I can not ...
but I'm still not able to find the way to change directions when using bundles. Seems if I write low, the device can not talk ( good ) if I pull high the device cant talk ( good) but I can not ...
- Sat Nov 09, 2024 2:16 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
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 ...
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 ...
- Sat Nov 09, 2024 3:30 am
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
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.
- Sat Nov 09, 2024 12:23 am
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
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 ...
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 ...
- Fri Nov 08, 2024 7:03 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
Re: help with using registers to chagne pin dirrections and states.
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.
- Fri Nov 08, 2024 3:56 pm
- Forum: General Discussion
- Topic: help with using registers to chagne pin dirrections and states.
- Replies: 12
- Views: 5319
help with using registers to chagne pin dirrections and states.
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 ...
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 ...