Chat freely about anything...

User avatar
By pvvx
#5278 esp_iot_sdk_v0.9.4/include/user_interface.h bagfix:

// enum dhcp_status wifi_softap_dhcps_status(void);
// enum dhcp_status wifi_station_dhcpc_status(void);
extern uint8 dhcps_flag;
extern uint8 dhcpc_flag;
#define wifi_softap_dhcps_status() dhcps_flag
#define wifi_station_dhcpc_status() dhcpc_flag
Last edited by pvvx on Mon Dec 29, 2014 10:21 am, edited 1 time in total.
User avatar
By Baoshi
#5435 I found espconn_sent of this release has different behavior than 0.9.3.

In 0.9.3, I can call this function continuously and having all the strings delivered. But in this release if I call this function several times, all network sending seems stalled.

To verify, compile of "ESP8266 UART to TCP socket absolutely transparent bridge " in this topic viewtopic.php?f=6&t=864 sending data from UART to TCP will stall after some time.

I guess it is buffering problem but yet to verify.
User avatar
By pvvx
#5438 esp_iot_sdk_v094/include/spi_flash.h add:

extern SpiFlashChip * flashchip;

----------------- Sample:
if(flashchip != NULL) os_printf("FlashID: 0x%08x\nChip size: %d\nBlock size: %d\nSector size: %d\nPage size: %d\nStatus mask: 0x%08x\n",
flashchip->deviceId, flashchip->chip_size, flashchip->block_size, flashchip->sector_size, flashchip->page_size, flashchip->status_mask );
else os_printf("Unknown Flash type!\n");

FlashID: 0x001640ef
Chip size: 524288
Block size: 65536
Sector size: 4096
Page size: 256
Status mask: 0x0000ffff
User avatar
By Sprite_tm
#5449
Baoshi wrote:I found espconn_sent of this release has different behavior than 0.9.3.

In 0.9.3, I can call this function continuously and having all the strings delivered. But in this release if I call this function several times, all network sending seems stalled.

To verify, compile of "ESP8266 UART to TCP socket absolutely transparent bridge " in this topic viewtopic.php?f=6&t=864 sending data from UART to TCP will stall after some time.

I guess it is buffering problem but yet to verify.


It's not a bug, it's a feature: http://bbs.espressif.com/viewtopic.php?f=13&t=92