Change to wifi AP mode. SSID "GR-PEACH_1", PSK "12345"
Dependencies: DhcpServer EthernetInterface FATFileSystem GR-PEACH_WlanBP3595AP GR-PEACH_video GraphicsFramework HttpServer_snapshot R_BSP mbed-rpc mbed-rtos mbed
Fork of GR-Boards_WebCamera by
Revision 17:493d36f1febf, committed 2016-09-07
- Comitter:
- dkato
- Date:
- Wed Sep 07 08:28:18 2016 +0000
- Parent:
- 16:b5469a6226c7
- Commit message:
- Change to wifi AP mode.
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DhcpServer.lib Wed Sep 07 08:28:18 2016 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/users/dkato/code/DhcpServer/#14ee6da645a9
--- a/FATFileSystem.lib Thu Jun 02 05:39:35 2016 +0000 +++ b/FATFileSystem.lib Wed Sep 07 08:28:18 2016 +0000 @@ -1,1 +1,1 @@ -http://developer.mbed.org/teams/mbed-official/code/FATFileSystem/#094f84646b9f +http://developer.mbed.org/teams/mbed-official/code/FATFileSystem/#c4baca9a2c3d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GR-PEACH_WlanBP3595AP.lib Wed Sep 07 08:28:18 2016 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/teams/Rohm/code/GR-PEACH_WlanBP3595AP/#4110367a9949
--- a/GR-PEACH_WlanBP3595STA.lib Thu Jun 02 05:39:35 2016 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://developer.mbed.org/teams/Rohm/code/GR-PEACH_WlanBP3595STA/#14efbf8a07ea
--- a/GR-PEACH_video.lib Thu Jun 02 05:39:35 2016 +0000 +++ b/GR-PEACH_video.lib Wed Sep 07 08:28:18 2016 +0000 @@ -1,1 +1,1 @@ -http://developer.mbed.org/teams/Renesas/code/GR-PEACH_video/#e0e475089616 +http://developer.mbed.org/teams/Renesas/code/GR-PEACH_video/#aeefe5171463
--- a/main.cpp Thu Jun 02 05:39:35 2016 +0000 +++ b/main.cpp Wed Sep 07 08:28:18 2016 +0000 @@ -7,6 +7,7 @@ #include "RomRamFileSystem.h" #include "file_table.h" //Binary data of web pages #include "i2c_setting.h" +#include "DhcpServer.h" #define VIDEO_CVBS (0) /* Analog Video Signal */ #define VIDEO_CMOS_CAMERA (1) /* Digital Video Signal */ @@ -16,17 +17,17 @@ /**** User Selection *********/ /** Network setting **/ -#define USE_DHCP (1) /* Select 0(static configuration) or 1(use DHCP) */ +#define USE_DHCP (0) /* Select 0(static configuration) or 1(use DHCP) */ #if (USE_DHCP == 0) #define IP_ADDRESS ("192.168.0.2") /* IP address */ #define SUBNET_MASK ("255.255.255.0") /* Subnet mask */ #define DEFAULT_GATEWAY ("192.168.0.3") /* Default gateway */ #endif -#define NETWORK_TYPE (0) /* Select 0(EthernetInterface) or 1(GR_PEACH_WlanBP3595) */ +#define NETWORK_TYPE (1) /* Select 0(EthernetInterface) or 1(GR_PEACH_WlanBP3595) */ #if (NETWORK_TYPE == 1) - #define WLAN_SSID ("SSIDofYourAP") /* SSID */ - #define WLAN_PSK ("PSKofYourAP") /* PSK(Pre-Shared Key) */ - #define WLAN_SECURITY NSAPI_SECURITY_WPA2 /* NSAPI_SECURITY_NONE, NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA or NSAPI_SECURITY_WPA2 */ + #define WLAN_SSID ("GR-PEACH_1") /* SSID */ + #define WLAN_PSK ("12345") /* PSK(Pre-Shared Key) */ + #define WLAN_SECURITY NSAPI_SECURITY_WEP /* NSAPI_SECURITY_NONE, NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA or NSAPI_SECURITY_WPA2 */ #endif /** Camera setting **/ #define VIDEO_INPUT_METHOD (VIDEO_CMOS_CAMERA) /* Select VIDEO_CVBS or VIDEO_CMOS_CAMERA */ @@ -428,6 +429,7 @@ printf("NetMask is %s\r\n", network.getNetworkMask()); printf("Gateway Address is %s\r\n", network.getGateway()); printf("Network Setup OK\r\n"); + DhcpServer dhcp_server("GR-PEACH_1", network.getIPAddress()); SnapshotHandler::attach_req(&snapshot_req); HTTPServerAddHandler<SnapshotHandler>("/camera"); //Camera
--- a/mbed-rtos.lib Thu Jun 02 05:39:35 2016 +0000 +++ b/mbed-rtos.lib Wed Sep 07 08:28:18 2016 +0000 @@ -1,1 +1,1 @@ -http://developer.mbed.org/users/mbed_official/code/mbed-rtos/#4c105b8d7cae +http://developer.mbed.org/users/mbed_official/code/mbed-rtos/#3da5f554d8bf
--- a/mbed.bld Thu Jun 02 05:39:35 2016 +0000 +++ b/mbed.bld Wed Sep 07 08:28:18 2016 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/6c34061e7c34 \ No newline at end of file +http://mbed.org/users/mbed_official/code/mbed/builds/2e9cc70d1897 \ No newline at end of file