File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change
1
+ WiFi101
2
+
3
+ * Increased compatibility with 3rd party boards and architectures.
4
+
1
5
WiFi101 0.9.0 - 2016.03.21
2
6
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
12
16
13
17
WiFi101 0.8.0 - 2016.02.15
14
18
Original file line number Diff line number Diff line change @@ -92,6 +92,9 @@ static void init_chip_pins(void)
92
92
pinMode (WINC1501_RESET_PIN , OUTPUT );
93
93
digitalWrite (WINC1501_RESET_PIN , HIGH );
94
94
95
+ /* Configure INTN D7 pins as pinput. */
96
+ pinMode (WINC1501_INTN_PIN , INPUT );
97
+
95
98
#if defined(WINC1501_CHIP_EN_PIN )
96
99
/* Configure CHIP_EN as pull-up */
97
100
pinMode (WINC1501_CHIP_EN_PIN , INPUT_PULLUP );
You can’t perform that action at this time.
0 commit comments