Search found 2 matches

by Chucky101
Wed Nov 09, 2022 10:34 pm
Forum: General Discussion
Topic: How to use CMake with components in custom directory
Replies: 1
Views: 1366

How to use CMake with components in custom directory

Problem Statement: How does one, using the IDF SDk, create custom components that both require the use of the SDK components and cannot be in the a projects components directory . Personal context: -> I am extremely new to CMake and build systems -> I have a very basic understanding of build system...
by Chucky101
Sun Jun 19, 2022 12:57 am
Forum: ESP-IDF
Topic: Passing in additional parameters to Event Handler functions
Replies: 1
Views: 1468

Passing in additional parameters to Event Handler functions

I am trying to get access to a class member variable to expose whether the class is connected to Wifi or not. I am currently registering the handler as shown below with the assumption that "this" will get passed into the handler in place of "event_data". esp_event_handler_register(WIFI_EVENT, ESP_EV...