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 Renesas

Files at this revision

API Documentation at this revision

Comitter:
dkato
Date:
Tue Apr 19 02:22:08 2016 +0000
Parent:
13:eeabc568827a
Child:
15:eac4c3711aab
Commit message:
Supports IAR.

Changed in this revision

GraphicsFramework.lib Show annotated file Show diff for this revision Revisions of this file
HttpServer_snapshot.lib Show annotated file Show diff for this revision Revisions of this file
R_BSP.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-rpc.lib 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
--- a/GraphicsFramework.lib	Thu Mar 24 12:49:30 2016 +0000
+++ b/GraphicsFramework.lib	Tue Apr 19 02:22:08 2016 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/teams/Renesas/code/GraphicsFramework/#9f857750e4e9
+http://developer.mbed.org/teams/Renesas/code/GraphicsFramework/#9a05caaee29a
--- a/HttpServer_snapshot.lib	Thu Mar 24 12:49:30 2016 +0000
+++ b/HttpServer_snapshot.lib	Tue Apr 19 02:22:08 2016 +0000
@@ -1,1 +1,1 @@
-https://developer.mbed.org/teams/Renesas/code/HttpServer_snapshot/#d117d5f84994
+https://developer.mbed.org/teams/Renesas/code/HttpServer_snapshot/#4ab2f287d06d
--- a/R_BSP.lib	Thu Mar 24 12:49:30 2016 +0000
+++ b/R_BSP.lib	Tue Apr 19 02:22:08 2016 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/teams/Renesas/code/R_BSP/#37222d6ece56
+http://developer.mbed.org/teams/Renesas/code/R_BSP/#c5c630882b90
--- a/main.cpp	Thu Mar 24 12:49:30 2016 +0000
+++ b/main.cpp	Tue Apr 19 02:22:08 2016 +0000
@@ -55,10 +55,22 @@
 EthernetInterface network;
 RomRamFileSystem romramfs("romram");
 
+#if defined(__ICCARM__)
+#pragma data_alignment=16
+static uint8_t FrameBuffer_Video[VIDEO_BUFFER_STRIDE * VIDEO_BUFFER_HEIGHT]@ ".mirrorram";  //16 bytes aligned!;
+#pragma data_alignment=4
+#else
 static uint8_t FrameBuffer_Video[VIDEO_BUFFER_STRIDE * VIDEO_BUFFER_HEIGHT]__attribute((section("NC_BSS"),aligned(16)));  //16 bytes aligned!;
+#endif
 static volatile int32_t vsync_count = 0;
 static volatile int32_t vfield_count = 1;
+#if defined(__ICCARM__)
+#pragma data_alignment=8
+static uint8_t JpegBuffer[2][1024 * 50]@ ".mirrorram";  //8 bytes aligned!;
+#pragma data_alignment=4
+#else
 static uint8_t JpegBuffer[2][1024 * 50]__attribute((section("NC_BSS"),aligned(8)));  //8 bytes aligned!;
+#endif
 static size_t jcu_encode_size[2];
 static int image_change = 0;
 JPEG_Converter Jcu;
--- a/mbed-rpc.lib	Thu Mar 24 12:49:30 2016 +0000
+++ b/mbed-rpc.lib	Tue Apr 19 02:22:08 2016 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/teams/mbed/code/mbed-rpc/#3b049dde55d7
+http://developer.mbed.org/teams/mbed/code/mbed-rpc/#188b1505f827
--- a/mbed.bld	Thu Mar 24 12:49:30 2016 +0000
+++ b/mbed.bld	Tue Apr 19 02:22:08 2016 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/c0f6e94411f5
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/082adc85693f
\ No newline at end of file