Search found 3 matches

by al3x-h
Tue Jul 11, 2017 5:48 am
Forum: General Discussion
Topic: getchar() or similar?
Replies: 1
Views: 4461

getchar() or similar?

Hi, I need to a function to block until the user hits the keyboard. From my brief search, it seems like getchar/fgets are good candidates. I've had little success with getchar and fgets even though the code compiles, it seems like they don't really work. I notice that stdin has been redirected, so i...
by al3x-h
Fri Jun 16, 2017 6:57 am
Forum: General Discussion
Topic: Where are esp_wifi_* functions defined?
Replies: 4
Views: 9535

Re: Where are esp_wifi_* functions defined?

So how exactly does GNU make know where to grab the esp_wifi_* API calls then? That code must be on the system somewhere perhaps in binary? Can someone point out the part of the make process that handles this? Just our of curiousity. Thanks!
by al3x-h
Thu Jun 15, 2017 10:46 pm
Forum: General Discussion
Topic: Where are esp_wifi_* functions defined?
Replies: 4
Views: 9535

Where are esp_wifi_* functions defined?

I tried searching all files that

Code: Select all

 #include "esp_wifi.h
but can't actually find where the functions are actually defined. I want to take a look at the implementation for

Code: Select all

esp_wifi_set_protocol
, which is why I'm asking.