Steve Sims / Mbed 2 deprecated X_NUCLEO_IDW01M1_AP_Test

Dependencies:   NetworkSocketAPI X_NUCLEO_IDW01M1_AP mbed

Files at this revision

API Documentation at this revision

Comitter:
scsims
Date:
Wed Jun 22 15:22:06 2016 +0000
Commit message:
Small test app to show the miniAP being enabled for the X_NUCLEO_IDW01M1 (relies on X_NUCLEO_IDW01M1_AP fork of X_NUCLEO_IDW01M1)

Changed in this revision

NetworkSocketAPI.lib Show annotated file Show diff for this revision Revisions of this file
X_NUCLEO_IDW01M1_AP.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r e4560ccdaa13 NetworkSocketAPI.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NetworkSocketAPI.lib	Wed Jun 22 15:22:06 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/teams/NetworkSocketAPI/code/NetworkSocketAPI/#ea3a618e0818
diff -r 000000000000 -r e4560ccdaa13 X_NUCLEO_IDW01M1_AP.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/X_NUCLEO_IDW01M1_AP.lib	Wed Jun 22 15:22:06 2016 +0000
@@ -0,0 +1,1 @@
+https://developer.mbed.org/users/scsims/code/X_NUCLEO_IDW01M1_AP/#9de5d3ab3615
diff -r 000000000000 -r e4560ccdaa13 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Jun 22 15:22:06 2016 +0000
@@ -0,0 +1,12 @@
+#include "SPWFInterface.h"
+#include <mbed.h>
+
+Serial pc(SERIAL_TX, SERIAL_RX);     //9600,8,n,1,none
+SpwfSAInterface spwf(PA_9, PA_10, PC_12, PC_8, PA_12, true);
+
+int main() {
+    printf("\r\nStarting mini Access Point (no security) with SSID 'mbedMiniAP'...");
+    spwf.start_access_point("mbedMiniAP", NULL, NSAPI_SECURITY_NONE, 6, 0x4041);    // slowest n data rate
+    printf("done\r\n");
+    while (1);
+}
\ No newline at end of file
diff -r 000000000000 -r e4560ccdaa13 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Jun 22 15:22:06 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/6c34061e7c34
\ No newline at end of file