Search found 11 matches

by long585
Sat Apr 01, 2017 2:16 am
Forum: General Discussion
Topic: The udp socket how to achieve 135Mbps?
Replies: 0
Views: 2586

The udp socket how to achieve 135Mbps?

my test of udp socket transfer only 11Mbps?
by long585
Fri Mar 03, 2017 7:00 am
Forum: General Discussion
Topic: ESP32 soft AP ssid can`t set >6 bytes
Replies: 1
Views: 3953

ESP32 soft AP ssid can`t set >6 bytes

Code: Select all

ap_ssid:ZONCARE_041d1d
ap.ssid size:14
I (819) zq_wifi_test: Setting WiFi configuration AP SSID:ZONCARE_041d1d,STA SSID:My iPhone
I (1489) wifi: mode : sta (24:0a:c4:04:1d:1c) + softAP (24:0a:c4:04:1d:1d)
this is my setting,on my iphone i only see the ap ssid is ZONCAR.
by long585
Thu Mar 02, 2017 3:04 am
Forum: General Discussion
Topic: My phone doesn`t connect to ESP32 soft ap
Replies: 2
Views: 5215

My phone doesn`t connect to ESP32 soft ap

static void initialise_wifi(void) { tcpip_adapter_init(); wifi_event_group = xEventGroupCreate(); ESP_ERROR_CHECK( esp_event_loop_init(wifi_event_handler, NULL) ); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK( esp_wifi_init(&cfg) ); ESP_ERROR_CHECK( esp_wifi_set_storage(WIFI...
by long585
Thu Feb 23, 2017 8:02 am
Forum: General Discussion
Topic: spi trans bug
Replies: 3
Views: 5723

Re: spi trans bug

I have updated my SDK,but issue still exist, can you tell me what bug with "There was a bug with spi clock before"?
At the moment I found that DMA can not be sent and transmitted at the same time.
by long585
Wed Feb 22, 2017 7:46 am
Forum: General Discussion
Topic: spi trans bug
Replies: 3
Views: 5723

spi trans bug

when spi master clock is 10Mhz the recv data is right: Send vs recv: 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e <sent 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e <recv but spi master clock change to 20Mhz the recv data is wrong: Send vs ...
by long585
Tue Jan 10, 2017 7:53 am
Forum: General Discussion
Topic: Whether the wifi-lib contains wifi-p2p mode?
Replies: 14
Views: 22492

Re: Whether the wifi-lib contains wifi-p2p mode?

TiesBogy wrote:Lack of p2p mode implementation is what holding us form considering ESP32 modules as a replacement of our current Broadcomm solution. Plaese, make wifi-p2p mode ASAP.
i think so
by long585
Thu Jan 05, 2017 6:32 am
Forum: General Discussion
Topic: Whether the wifi-lib contains wifi-p2p mode?
Replies: 14
Views: 22492

Re: Whether the wifi-lib contains wifi-p2p mode?

ESP_igrr wrote:WiFi stack doesn't support P2P right now. We don't have this in near-term plan because we haven't got feature requests for this from customers. Long term, yes, it will be supported.
Thanks for your response,But I still hope that as soon as possible to provide wifi P2P mode.
by long585
Thu Jan 05, 2017 6:25 am
Forum: General Discussion
Topic: when to provide spi peripherals driver?
Replies: 5
Views: 7862

Re: when to provide spi peripherals driver?

ESP_Sprite wrote:The SPI driver will actually be fully capable of interrupt-driven DMA transfers. You basically feed it the transfers you want it to do using a queue and it will give you back the transfers it finished using another queue.
Thanks for your swift response
by long585
Thu Jan 05, 2017 12:40 am
Forum: General Discussion
Topic: when to provide spi peripherals driver?
Replies: 5
Views: 7862

Re: when to provide spi peripherals driver?

ESP_Angus wrote:The SPI master driver will be in esp-idf v2.0, due for release in the next two weeks.
At that time can provide spi DMA Interruption example ?
by long585
Wed Jan 04, 2017 2:06 am
Forum: General Discussion
Topic: Whether the wifi-lib contains wifi-p2p mode?
Replies: 14
Views: 22492

Whether the wifi-lib contains wifi-p2p mode?

At present this version wifi mode only have WIFI_MODE_STA, WIFI_MODE_AP, WIFI_MODE_APSTA.
Whether it can provide wifi-p2p mode?