Search found 3 matches

by dotatbg
Fri Feb 02, 2024 11:09 am
Forum: General Discussion
Topic: Guru Meditation Error: Core 1 panic'ed
Replies: 1
Views: 678

Re: Guru Meditation Error: Core 1 panic'ed

float read_av_acc() has no return statement. So function returns nothing and crashes.
by dotatbg
Fri Dec 29, 2023 1:12 pm
Forum: General Discussion
Topic: Can someone to explain me this behaviour?
Replies: 3
Views: 1744

Re: Can someone to explain me this behaviour?

For no reason... DC Bias for example. But you answer is not an explanation
by dotatbg
Fri Dec 29, 2023 10:23 am
Forum: General Discussion
Topic: Can someone to explain me this behaviour?
Replies: 3
Views: 1744

Can someone to explain me this behaviour?

The code gpio_config_t io_conf = {}; gpio_num_t gpio_test_pin = GPIO_NUM_5; io_conf.intr_type = GPIO_INTR_DISABLE; io_conf.mode = GPIO_MODE_INPUT_OUTPUT_OD; io_conf.pin_bit_mask = BIT64(gpio_test_pin); io_conf.pull_down_en = 1; io_conf.pull_up_en = 1; gpio_config(&io_conf); gpio_dump_io_configuratio...