Skip to content

Commit 8d17296

Browse files
committed
2 parents e4b30c5 + d365c52 commit 8d17296

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

CHANGELOG

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1+
WiFi101
2+
3+
* Increased compatibility with 3rd party boards and architectures.
4+
15
WiFi101 0.9.0 - 2016.03.21
26

3-
* Fixed WiFi.status() hanging when shield is not present
4-
* Fixed MAC address returning 00:00:00:00:00:00 with firmware version 19.3.0
5-
* Fixed SSL write functionality with firmware version 19.3.0
6-
* Fixed previous version of the library not working on the Uno and other boards that used PCINT's
7-
* Added beginAP(...) API's to create access point with WEP passwords
8-
* Fixed beginAP(...) channel off by one error
9-
* Fixed WiFi.status() always returning WL_CONNECTED once connected, even if access point is disconnected later
10-
* Added beginMulti API for Multicast UDP support
11-
* Added WiFiMDNSResponder class and MDNS Web server example
7+
* Fixed WiFi.status() hanging when shield is not present
8+
* Fixed MAC address returning 00:00:00:00:00:00 with firmware version 19.3.0
9+
* Fixed SSL write functionality with firmware version 19.3.0
10+
* Fixed previous version of the library not working on the Uno and other boards that used PCINT's
11+
* Added beginAP(...) API's to create access point with WEP passwords
12+
* Fixed beginAP(...) channel off by one error
13+
* Fixed WiFi.status() always returning WL_CONNECTED once connected, even if access point is disconnected later
14+
* Added beginMulti API for Multicast UDP support
15+
* Added WiFiMDNSResponder class and MDNS Web server example
1216

1317
WiFi101 0.8.0 - 2016.02.15
1418

src/bsp/source/nm_bsp_arduino.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ static void init_chip_pins(void)
9292
pinMode(WINC1501_RESET_PIN, OUTPUT);
9393
digitalWrite(WINC1501_RESET_PIN, HIGH);
9494

95+
/* Configure INTN D7 pins as pinput. */
96+
pinMode(WINC1501_INTN_PIN, INPUT);
97+
9598
#if defined(WINC1501_CHIP_EN_PIN)
9699
/* Configure CHIP_EN as pull-up */
97100
pinMode(WINC1501_CHIP_EN_PIN, INPUT_PULLUP);

0 commit comments

Comments
 (0)