Search found 8 matches

by whateverever
Fri Jun 09, 2017 10:30 am
Forum: ESP-IDF
Topic: What exactly is the event_handler function?
Replies: 4
Views: 11373

Re: What exactly is the event_handler function?

Ah, i see. Now i understand, why i need to return ESP_OK;
Thanks to you, guys!
by whateverever
Fri Jun 09, 2017 7:49 am
Forum: ESP-IDF
Topic: What exactly is the event_handler function?
Replies: 4
Views: 11373

Re: What exactly is the event_handler function?

So i have to work with some kind of ESP_ERROR_CHECK? In example: ESP_ERROR_CHECK( esp_wifi_start() ); or wifi_init_config_t initconf = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK( esp_wifi_init(&initconf) ); ? Or is it more for functions like ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL)...
by whateverever
Fri Jun 09, 2017 5:49 am
Forum: ESP-IDF
Topic: What exactly is the event_handler function?
Replies: 4
Views: 11373

What exactly is the event_handler function?

Might be a stupid question, but i'm new i all this esp32 sdk programming. What exactly is the event_handler in this function:

Code: Select all

esp_err_t event_handler(void *ctx, system_event_t *event)
{
    return ESP_OK;
}
Why should i implement this function in the beginning of my script?
by whateverever
Mon May 22, 2017 7:27 pm
Forum: General Discussion
Topic: question about the oscillators
Replies: 9
Views: 17394

Re: question about the oscillators

Touché. That was stupid question.
by whateverever
Mon May 22, 2017 7:04 pm
Forum: General Discussion
Topic: question about the oscillators
Replies: 9
Views: 17394

Re: question about the oscillators

So the internal 8 MHz oscillator with calibration is supported.

.. and also included in the esp 32 wroom?
by whateverever
Mon May 22, 2017 8:25 am
Forum: General Discussion
Topic: question about the oscillators
Replies: 9
Views: 17394

question about the oscillators

In the esp32 datasheet (https://espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf) are 4 oscillators: Internal 8 MHz oscillator with calibration Internal RC oscillator with calibration External 2 MHz to 40 MHz crystal oscillator External 32 kHz crystal oscillator for RTC with ca...
by whateverever
Thu May 04, 2017 12:12 pm
Forum: ESP-IDF
Topic: esp32 overclocking
Replies: 3
Views: 12828

Re: esp32 overclocking

If this is not possible, is there a way to reduce the clocking speed?
by whateverever
Wed May 03, 2017 7:23 pm
Forum: ESP-IDF
Topic: esp32 overclocking
Replies: 3
Views: 12828

esp32 overclocking

Someone know, how its possible to overclock the esp32 dev board?