【BETA】esp_iot_sdk_v0.9.5_b1 released !

ESP_Faye
Posts: 1646
Joined: Mon Oct 27, 2014 11:08 am

【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby ESP_Faye » Thu Dec 25, 2014 2:03 pm

[NOTE]: esp_iot_sdk_v0.9.5_b1 is just a beta version without a full function test !

It revised:
1、API to get status of DHCP (wifi_softap_dhcps_status and wifi_station_dhcpc_status):
reported by pvvx @ http://www.esp8266.com/viewtopic.php?f=6&t=946#p5278

2、Fix API issues of wifi_station_ap_change and wifi_station_ap_get_info:
reported by jmg5150 @ viewtopic.php?f=7&t=84

3、Function ARP add re_quest:
reported by kingfisher @ http://www.esp8266.com/viewtopic.php?f=6&t=511

4、Fix API issues of wifi_station_get_connect_status with static ip:
reported by clinkme @ http://www.esp8266.com/viewtopic.php?f=6&t=957

PS. please fill out the reason when you register a new user account,and refer to http://bbs.espressif.com/viewtopic.php?f=7&t=4

Thanks for your interest in ESP8266! Merry Christmas! :P

v0.9.5(b1) 14_12_25 是beta版软件,不是正式release,未经过完整测试,解决部分论坛上搜集到的问题

1、修正获取dhcp状态接口API问题 (wifi_softap_dhcps_status and wifi_station_dhcpc_status);
reported by pvvx @ http://www.esp8266.com/viewtopic.php?f=6&t=946#p5278

2、修正wifi_station_ap_change在未设置AP信息时调用出现的问题,修改wifi_station_ap_get_info接口API,返回已 设置AP的个数;
reported by jmg5150 @ viewtopic.php?f=7&t=84

3、修改arp模块,增加re_quest功能;
reported by kingfisher @ http://www.esp8266.com/viewtopic.php?f=6&t=511

4、修正wifi_station_get_connect_status在某些情况下返回错误状态的问题;
reported by clinkme @ http://www.esp8266.com/viewtopic.php?f=6&t=957

另,请注册 BBS 用户时,填写理由,并参考帖子 http://bbs.espressif.com/viewtopic.php?f=7&t=4

感谢大家对 ESP8266 的关注!圣诞快乐!
:P
Attachments
esp_iot_sdk_v0.9.5_b1_14_12_25.zip
(703.32 KiB) Downloaded 1632 times

alonewolfx2
Posts: 12
Joined: Sun Oct 26, 2014 6:14 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby alonewolfx2 » Thu Dec 25, 2014 11:20 pm

Can you add example for arp function? And ping problem still continues. for first request 300-600ms and after first request proximate between 3ms and 10ms.

jmg5150
Posts: 14
Joined: Tue Nov 25, 2014 3:04 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby jmg5150 » Fri Dec 26, 2014 5:15 am

Is there an updated version of the document "Espressif IoT SDK: Programming Guide" available? ( I have signed the NDA) - The most recent version of this document I have found is for v0.9.2 / updated on 20 November. Please release an updated version soon if it's not available yet.

jackon
Posts: 28
Joined: Thu Oct 23, 2014 9:05 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby jackon » Fri Dec 26, 2014 2:17 pm

alonewolfx2 wrote:Can you add example for arp function? And ping problem still continues. for first request 300-600ms and after first request proximate between 3ms and 10ms.


here is example for sending arp, provided by kingfisher
http://www.esp8266.com/viewtopic.php?f=6&t=511#p2360

if you want to test arp response of ESP8266, you can use this command in linux.
example:

Code: Select all

arping -c 10000 -I wlan2 192.168.101.148 -b

jmg5150
Posts: 14
Joined: Tue Nov 25, 2014 3:04 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby jmg5150 » Sat Dec 27, 2014 10:04 am

While I was migrating my project from v0.9.3 to v0.9.5_b1 I noticed that the definition for the struct upgrade_server_info (used with the firmware update api commands) has moved from user_interface.h to upgrade.h. Adding #include "upgrade.h" was the only modification I needed to make the project compile on this beta sdk. Not sure if this was an intentional change or was introduced as bug in this beta, but seems that you'd want to keep breaking changes to a minimum.

ESP_Faye
Posts: 1646
Joined: Mon Oct 27, 2014 11:08 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby ESP_Faye » Mon Dec 29, 2014 1:59 pm

@jmg5150 Yes, it moves to upgrade.h
Thanks for your interest in ESP8266!

scargill
Posts: 70
Joined: Sun Nov 02, 2014 8:09 pm

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby scargill » Wed Jan 07, 2015 12:26 am

Is this still a beta? I would like to know if I should be using 0.9.4 for code - or 0.9.5

0xPIT
Posts: 9
Joined: Mon Jan 05, 2015 9:26 pm

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby 0xPIT » Wed Jan 07, 2015 8:40 pm

Hello,

what is the Plan with the API and Networking?
Do you have some sort of roadmap for the SDK?
What version do you suggest to develop against currenty?

The latest version on github seems to have the network abstraction (espconn) along side a lot of other stuff (e.g. most ETS* Macros) removed.
Shall we use lwip natively now or will you re-add the abstraction?

There are also general issues, like c_types.h defines uint8_t which is already defined in stdint.h and so on...

Thanks,

pit

jackon
Posts: 28
Joined: Thu Oct 23, 2014 9:05 am

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby jackon » Fri Jan 09, 2015 3:32 pm

The version on github is a RTOS version, you can use lwip's socket APIs.

0xPIT
Posts: 9
Joined: Mon Jan 05, 2015 9:26 pm

Re: 【BETA】esp_iot_sdk_v0.9.5_b1 released !

Postby 0xPIT » Thu Jan 15, 2015 10:38 pm

jackon wrote:The version on github is a RTOS version, you can use lwip's socket APIs.


I know that I _can_ use it, I wanted to find out what Espressif's plans are...

Who is online

Users browsing this forum: No registered users and 92 guests