Search found 69 matches

by squonk11
Thu Sep 07, 2017 1:03 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19557

Re: mongoose challenge

Unfortunately now, I am running into another problem: mongoose pretty well serves a PNG file but when I want to serve a simple html-page it does not work: http://192.168.0.20/logo.png shows the logo but http://192.168.0.20/index.html shows "not found". When I invoke just http://192.168.0.20 the brow...
by squonk11
Thu Sep 07, 2017 11:39 am
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19557

Re: mongoose challenge

Hi linuxpaul, thank You for Your hint on the defines: -DESP_PLATFORM=1 -DMG_ENABLE_HTTP=1 -DMG_ENABLE_FILESYSTEM=1 and the longcalls switch -mlongcalls --> You diserve a beer! I make a Makefile.projbuild as You suggested. But it did not work - maybe because I am working with Eclipse? In Eclipse I mo...
by squonk11
Wed Sep 06, 2017 2:32 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19557

Re: mongoose challenge

Hi linuxpaul,

did You find a solution for Your problem? I am running into the same difficulties with:

Code: Select all

undefined reference to `mg_serve_http'
Does anybody else have a clue?
by squonk11
Thu May 25, 2017 6:42 am
Forum: Report Bugs
Topic: Unexpectedly low floating-point performance in C
Replies: 24
Views: 140510

Re: Unexpectedly low floating-point performance in C

There is the possibility to define functions to be located in IRAM by using the "IRAM_ATTR" attribute. In this case the code will not be fetched from slow serial FLASH.
Could You "Benchmark - Folks" test the execution speed again with using the IRAM_ATTR attribute?

Regards
by squonk11
Wed May 17, 2017 11:23 am
Forum: General Discussion
Topic: SPP profile in bluedroid missing?
Replies: 25
Views: 36452

Re: SPP profile in bluedroid missing?

Now there is a BT stack with SPP available: https://github.com/bluekitchen/btstack/ ... port/esp32. It seems to be free for private use only. Did anybody test it?
by squonk11
Sat Mar 04, 2017 6:17 pm
Forum: ESP-IDF
Topic: WIFI_MODE_APSTA Sample
Replies: 21
Views: 59787

Re: WIFI_MODE_APSTA Sample

I found a solution how to find the IP: wifi_sta_list_t stations; ESP_ERROR_CHECK(esp_wifi_ap_get_sta_list(&stations)); tcpip_adapter_sta_list_t infoList; ESP_ERROR_CHECK(tcpip_adapter_get_sta_list(&stations, &infoList)); int i = 0; while(i < infoList.num) { printf("mac: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x...
by squonk11
Sat Mar 04, 2017 8:52 am
Forum: ESP-IDF
Topic: WIFI_MODE_APSTA Sample
Replies: 21
Views: 59787

Re: WIFI_MODE_APSTA Sample

o.k. thank you. Now it's clear and it works. Thanks a lot. Now I am trying to obtain infos (e.g. ssid(s) or IPs) of the stations connected to my AP. I found an example on that using "esp_wifi_get_station_list". But this does not seem to work because this function does not seem to be available in ESP...
by squonk11
Thu Mar 02, 2017 3:28 pm
Forum: ESP-IDF
Topic: WIFI_MODE_APSTA Sample
Replies: 21
Views: 59787

Re: WIFI_MODE_APSTA Sample

Thank You for Your fast answer. But unfortunately the most importent thing for me is missing:
How do You populate the union "wifi_config_t"?
by squonk11
Wed Mar 01, 2017 6:57 pm
Forum: ESP-IDF
Topic: WIFI_MODE_APSTA Sample
Replies: 21
Views: 59787

Re: WIFI_MODE_APSTA Sample

@imtiaz:
nice that You found a solution for this problem!
Would You be so nice to share it so that also other people are delighted?

kind regards

Squonk