Search found 48 matches

by Adham Aboud
Fri Aug 24, 2018 3:31 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 836059

Re: What would you like to see in The Next Chip?

- I think that having a ports that could drive 1A or more would be awesome
- Sleep power modes that have WOR (Wake On Radio) feature. (beside other waking functions)
by Adham Aboud
Fri Aug 24, 2018 6:58 am
Forum: General Discussion
Topic: ESP-IDF create custom library
Replies: 5
Views: 16153

Re: ESP-IDF create custom library

Hi Mr Kolban, What I found is that there are two ways to solve the unresolved inclusion: 1. As you suggested before that "the header files for a component should live in the same directory as your component" 2. Add the following declaration at the *.mk file of the component in my case : COMPONENT_AD...
by Adham Aboud
Thu Aug 23, 2018 7:04 am
Forum: General Discussion
Topic: ESP-IDF create custom library
Replies: 5
Views: 16153

Re: ESP-IDF create custom library

Thank you mr. Kolban for your answer, I added a new folder into my root project root folder called "components" . the project tree looks like: - myProject/ - Makefile - sdkconfig - components/ - component1/ - component.mk - src1.c - include/ - header1.h - main/ - src1.c - src2.c - component.mk - bui...
by Adham Aboud
Thu Aug 23, 2018 4:36 am
Forum: General Discussion
Topic: ESP32 STA configuration
Replies: 6
Views: 7028

Re: ESP32 STA configuration

ESP_Sprite,
Thank you for the hint, seems that when I declare

wifi_config_t wifi_config_sta;

the memory bloack that wifi_config_sta variable use is not 0 !!!
When I wrote:

wifi_config_t wifi_config_sta = {0};

everything work fine.


Regards,
by Adham Aboud
Thu Aug 23, 2018 4:14 am
Forum: General Discussion
Topic: ESP32 STA configuration
Replies: 6
Views: 7028

Re: ESP32 STA configuration

user_name,

This is what I did first and they are the same :?
by Adham Aboud
Thu Aug 23, 2018 4:04 am
Forum: General Discussion
Topic: ESP32 STA configuration
Replies: 6
Views: 7028

Re: ESP32 STA configuration

ESP_Sprite,


This is the declaration of the wifi_config_sta variable in the second example.

wifi_config_t wifi_config_sta;

strcpy ((char*)wifi_config_sta.sta.ssid, CONFIG_DEAFULT_AP_SSID);
strcpy ((char*)wifi_config_sta.sta.password, CONFIG_DEFAULT_AP_WIFI_PASSWORD);
by Adham Aboud
Wed Aug 22, 2018 7:35 pm
Forum: General Discussion
Topic: ESP32 STA configuration
Replies: 6
Views: 7028

ESP32 STA configuration

I'm trying to make ESP32 connect to AP, I''ve two different codes, one is working and the other isn't module connects to A P when i declare the following: wifi_config_t wifi_config_sta= { .sta = { .ssid = CONFIG_DEAFULT_AP_SSID,//ESP_STA_SSID, .password = CONFIG_DEFAULT_AP_WIFI_PASSWORD//ESP_STA_PAS...
by Adham Aboud
Wed Aug 22, 2018 7:00 pm
Forum: General Discussion
Topic: ESP32 WIFI mode STA+AP
Replies: 0
Views: 2054

ESP32 WIFI mode STA+AP

Hello all, I'm facing a weird problem using STA+ AP, the problem I'm facing is that when the module fails to connect to AP a station can't connect to the soft AP created by the module, at the other hand if the module can connect to the AP then every thing is OK and stations can connect to the soft A...
by Adham Aboud
Tue Aug 21, 2018 6:50 am
Forum: General Discussion
Topic: ESP-IDF create custom library
Replies: 5
Views: 16153

ESP-IDF create custom library

Hello all,

I've an esp-idf based C file and I want to build it as a custom library so I can use it in different projects.

Could you please tell me how do I make a library from C file using eclipse.


Thank you in advance
by Adham Aboud
Wed Aug 15, 2018 9:35 am
Forum: General Discussion
Topic: ESP32 DevKitC vs ESP32-PICO-KIT
Replies: 3
Views: 7125

ESP32 DevKitC vs ESP32-PICO-KIT

Hello All,

Can anyone tell me what is the differences between DevKitC and PICO-KIT ?

Thank you in advance,