Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: NetworkSocketAPI X_NUCLEO_IDW01M1_AP mbed
Revision 0:e4560ccdaa13, committed 2016-06-22
- 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
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