Web Camera for mbed-os. This sample works on GR-LYCHEE besides GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Dependencies:   HttpServer_snapshot_mbed-os

License

When you use this program, we judge you have agreed to the following contents.
本プログラムを使用する際は、以下の内容に合意した事になります。

https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Information

Japanese version is available in lower part of this page.
このページの後半に日本語版が用意されています.

Video Links on how to setup and run WebCamera Application:

Your video will be live at:

Overview

This is a sample program that works on GR-PEACH or GR-LYCHEE.
This is a web camera sample program. When accessing from the Web browser, the following will be displayed.

  • Camera input picture
  • Control screen of devices connected to the I2C bus
  • LED control screen

Requirements

For GR-PEACH (via Wi-Fi):

  • GR-PEACH
  • GR-PEACH Wireless CAMERA Shield : OV7725

For GR-PEACH (via Ether):

  • GR-PEACH
  • One of the following
    • GR-PEACH Wireless CAMERA Shield : OV7725
    • NTSC analog camera
    • MT9V111 and GR-PEACH AUDIO CAMERA Shield
    • OV5642 and GR-PEACH AUDIO CAMERA Shield

For GR-LYCHEE (via Wi-Fi):

  • GR-LYCHEE

How to use

Turn on the power to the GR-Board and start the terminal software.
The default value of the bow rate with mbed is 9600, and in this sample we use the baud rate 9600.

When you press the reset button of GR-Board, the scan result of Wifi will be output on Terminal. Please refer to the following link for usage of Terminal.

********* PROGRAM START ***********
Network Setting up...
Scan:
No.0 Network: SSID_1 secured:WPA/WPA2 BSSID: xx:xx:xx:xx:xx:xx RSSI: -52 Ch: 1
No.1 Network: SSID_2 secured: Unknown BSSID: xx:xx:xx:xx:xx:xx RSSI: -67 Ch: 2
2 networks available.

Please enter the number of the network you want to connect.
Enter key:[0]-[1], (If inputting the other key, it's scanned again.)

Enter the number of the network you want to connect from the keyboard. To select SSID_1, press "0" on the keyboard.

[SSID_1] is selected.
please enter the PSK.

Finally, enter the password to connect to the network.

If the connection is successful, the IP address is output on Terminal.

connecting...
MAC Address is xx:xx:xx:xx:xx:xx
IP Address is 192.168.0.2
NetMask is 255.255.255.240
Gateway Address is 192.168.0.1
Network Setup OK

When you open IP Address ("192.168.0.2" in the above example) by a Web browser, top screen is indicated. The configuration of the top screen is a menu screen on the left side, a description screen of the sample program on the right side. If you click on each menu on the left side of the screen, the screen along the menu is indicated on the right screen.

Page Top

/media/uploads/1050186/web_top2.jpg

Web Camera

/media/uploads/1050186/camera3.jpg
When you click the "Web camera" in the menu screen, the pictures of a camera is indicated. It can be changed at a slider bar in "Wait time" at the timing of a renewal of a camera picture. (Defaults are 500ms.)

Setting by I2C

/media/uploads/1050186/setting_i2c3.jpg
When you click the "Setting by I2C" of the menu screen, the control screen of the device connected to the I2C bus is indicated. By sending a command of a format listed below("Format of the device set by I2C") in Direct input or File reference, data transmission and reception is possible with respect to devices connected to I2C_SDA and I2C_SCL terminals of I2C. The communication log of transmission and reception by "Format of the device set by I2C" is displayed in the log window. When you press the "Clear" button, the log is cleared. When you press the "Save" button, the log is saved.

Format of the device set by I2C

Method:I2C addr,data length,data1,data2,data3,...

The details of each parameter is shown below.
For specific settings, check on the specifications of the connected device, you must create a command along the format.

MethodPlease specify one of the following:
"Wr" ・・・ Write functions in I2C
"Rd" ・・・ Read functions in I2C
"WrNoP" ・・・ Write functions in I2C(No STOP condition)
"RdNoP" ・・・ Read functions in I2C(No STOP condition)
I2C addrSet the I2C address of device in hexadecimal.
Ex: If the address is 0x90, set the "90"
data lengthIf Method is "Wr" or "WrNoP", set write size(the size of the data portion) in hexadecimal.
Ex: If the write size is 2 byte(data1, data2), set the "02".
If Method is "Rd" or "RdNoP", set read size in hexadecimal.
Ex: If the read size is 10 byte, set the "0A".
dataIf Method is "Wr" or "WrNoP", set write data in 1 byte unit in hexadecimal.
Ex: If the write data is 0x01 0x02, set "01" in the data1 and "02" in the data2.
If Method is "Rd" or "RdNoP", this parameter is omitted.

An example of the format is shown below.

Wr:90,03,25,45,14

To the device of the I2C address 0x90, the data write of 3Byte(0x25 0x45 0x14)

Rd:90,02

To the device of the I2C address 0x90, the data read of 2Byte

LED On/Off

/media/uploads/1050186/led2.jpg
When you click the "LED On/Off" of the menu screen, the LED control screen is indicated. Each switch switches of GR-Boards to ON or OFF. Each switch indicates the current LED state. When the LED is On, the color of switch will change the LED color.

Switch to web page in SD card

Web pages displayed on the Web browser are located in the built-in ROM. file_table_peach.h is saved as table information for GR-PEACH and file_table_lychee.h is saved as table information for GR-LYCHEE. The contents of the saved file are as follows.

When connecting the SD card, SDBlockDevice will be displayed on the terminal and the web page displayed in the web browser will switch from the built-in ROM to the SD card. The top page is index.htm.

Change network connection

You can change the network connection by changing the following macro in main.cpp.

/**** User Selection *********/
#define NETWORK_TYPE           (2)                 /* Select  0(Ethernet), 1(BP3595), 2(ESP32 STA) ,3(ESP32 AP) */
#if (NETWORK_TYPE >= 1)
  #define SCAN_NETWORK         (1)                 /* Select  0(Use WLAN_SSID, WLAN_PSK, WLAN_SECURITY) or 1(To select a network using the terminal.) */
  #define WLAN_SSID            ("SSIDofYourAP")    /* SSID */
  #define WLAN_PSK             ("PSKofYourAP")     /* PSK(Pre-Shared Key) */
  #define WLAN_SECURITY        NSAPI_SECURITY_WPA_WPA2 /* NSAPI_SECURITY_NONE, NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA, NSAPI_SECURITY_WPA2 or NSAPI_SECURITY_WPA_WPA2 */
#endif

Depending on the value set for NETWORK_TYPE, the connection method changes as follows.

NumberConnectionDescription
0EthernetGR-PEACH only
1reservedIt can not be selected.
2ESP32 STAUse ESP32 in STA mode.
3ESP32 APUse ESP32 in AP mode.

When using GR-LYCHEE, NETWORK_TYPE 2 and 3 can be selected.
GR-PEACH Wireless CAMERA Shield is required separately when using ESP32 with GR-PEACH.

When using Ethernet, the user must provide the MAC address.
To specify MAC address, add fllowing function to main.cpp.

Specify MAC address

// set mac address
void mbed_mac_address(char *mac) {
    mac[0] = 0x00;
    mac[1] = 0x02;
    mac[2] = 0xF7;
    mac[3] = 0xF0;
    mac[4] = 0x00;
    mac[5] = 0x00;
}

Camera selection

To select the Camera, add camera-type to mbed_app.json.
See here for details.

mbed_app.json

{
    "config": {
        "camera":{
            "help": "0:disable 1:enable",
            "value": "1"
        },
        "camera-type":{
            "help": "Please see EasyAttach_CameraAndLCD/README.md",
            "value": null
        },
        "lcd":{
            "help": "0:disable 1:enable",
            "value": "0"
        },
        "lcd-type":{
            "help": "Please see EasyAttach_CameraAndLCD/README.md",
            "value": null
        }
    },
    "target_overrides": {
        "RZ_A1H": {
            "camera-type" : "CAMERA_WIRELESS_CAMERA"
        }
    }
}

Appendix


概要

GR-PEACH、および、GR-LYCHEEで動作するサンプルプログラムです。
Webカメラのサンプルです。Webブラウザからアクセスすると以下が表示されます。

  • Camera入力画像
  • I2Cバスに繋がっているデバイスの制御画面
  • LED操作画面

構成

GR-PEACH (Wi-Fi経由)の場合:

  • GR-PEACH
  • GR-PEACH Wireless CAMERA Shield : OV7725

GR-PEACH (Ether経由)の場合:

  • GR-PEACH
  • 以下のいずれか
    • GR-PEACH Wireless CAMERA Shield : OV7725
    • NTSCアナログカメラ
    • MT9V111 and GR-PEACH AUDIO CAMERA Shield
    • OV5642 and GR-PEACH AUDIO CAMERA Shield

GR-LYCHEE(Wi-Fi経由)の場合:

  • GR-LYCHEE

使い方

GR-Boardに電源を入れ、Terminalソフトを立ち上げます。
Mbedでのボーレートのデフォルト値は9600で、このサンプルではボーレート9600を使います。

GR-Boardのリセットボタンを押すと、Terminal上にWifiのスキャン結果が出力されます。

********* PROGRAM START ***********
Network Setting up...
Scan:
No.0 Network: SSID_1 secured:WPA/WPA2 BSSID: xx:xx:xx:xx:xx:xx RSSI: -52 Ch: 1
No.1 Network: SSID_2 secured: Unknown BSSID: xx:xx:xx:xx:xx:xx RSSI: -67 Ch: 2
2 networks available.

Please enter the number of the network you want to connect.
Enter key:[0]-[1], (If inputting the other key, it's scanned again.)

接続したいネットワークの番号をキーボードから入力します。0番のSSID_1を選択する場合はキーボードの "0" を押します。

[SSID_1] is selected.
please enter the PSK.

最後にネットワークに接続するためのパスワードを入力します。

接続に成功すると、Terminal上にIPアドレスが出力されます。

connecting...
MAC Address is xx:xx:xx:xx:xx:xx
IP Address is 192.168.0.2
NetMask is 255.255.255.240
Gateway Address is 192.168.0.1
Network Setup OK

PCのWebブラウザで Terminalに表示された IP Address (上記例では 192.168.0.2)を開くと、トップ画面が表示されます。トップ画面は、左側にメニュー画面、右側にサンプルプログラムの説明画面という構成になっており、左画面の各メニューをクリックすると、メニューに沿った画面が右画面に表示されます。

Page Top 画面

/media/uploads/1050186/web_top2.jpg

Web Camera 画面

/media/uploads/1050186/camera3.jpg
メニュー画面の”Web Camera”をクリックすると、Camera画像が表示されます。
"Wait time"のスライダーバーでCamera画像の更新タイミングが変更できます。(初期値は500msです)

Setting by I2C 画面

/media/uploads/1050186/setting_i2c3.jpg

メニュー画面の"Setting by I2C"をクリックすると、I2Cバスに繋がっているデバイスの制御画面が表示されます。直接入力(Direct input)欄又はファイル参照(File reference)欄にて、下記("I2Cによるデバイス設定のフォーマット")に記載されているフォーマットのコマンドを送信する事で、I2CのI2C_SDA,I2C_SCL端子に繋がっているデバイスに対して、データの送受信が可能です。"I2Cによるデバイス設定のフォーマット"による送受信の通信ログは、ログウィンドウに表示されます。"Clear"ボタンを押すとログのクリア、"Save"ボタンを押すとログの保存ができます。

I2Cによるデバイス設定のフォーマット

Method:I2C addr,data length,data1,data2,data3,...

各パラメータの詳細を以下に示します。
具体的な設定値については、接続先のデバイスの仕様をご確認のうえ、フォーマットに沿ってコマンドを作成して下さい。

Method以下のいづれかを指定して下さい
"Wr" ・・・ I2Cでの書き込み
"Rd" ・・・ I2Cでの読み出し
"WrNoP" ・・・ I2Cでの書き込み(STOPコンディション省略)
"RdNoP" ・・・ I2Cでの読み出し(STOPコンディション省略)
I2C addr接続先デバイスのI2Cアドレスを16進数で設定して下さい。
(例) アドレスが0x90の場合、"90"を設定
data lengthMethodが"Wr"又は"WrNoP"の場合、書き込むサイズ(data部分のサイズ)を16進数で設定して下さい。
(例) 書き込むサイズが2Byte(data1,data2)の場合、"02"を設定
Methodが"Rd"又は"RdNoP"の場合は読み取るサイズを16進数で設定して下さい。
(例) 読み取りサイズが10Byteの場合、"0A"を設定
dataMethodが"Wr"又は"WrNoP"の場合、書き込むデータを16進数で1Byte単位で設定して下さい。
(例) 書き込みデータが0x01,0x02の場合、data1に"01"、data2に"02"を設定
"Rd"又は"RdNoP"の場合は省略して下さい。

フォーマットの例を以下に示します。

Wr:90,03,25,45,14

I2Cアドレス0x90のデバイスに対して0x25 0x45 0x14の計3Byteのデータ書き込み

Rd:90,02

I2Cアドレス0x90のデバイスに対して2Byteのデータ読み出し

LED On/Off 画面

/media/uploads/1050186/led2.jpg
メニュー画面の"LED On/Off"をクリックすると、LED操作画面が表示されます。各スイッチはGR-BoardのLED ON/OFFを切り替えます。スイッチはそれぞれGR-BoardのLEDの現在の状態を表しており、ONにすると対応するLEDの色になります。

SDカード内のWebページに切り替える

Webブラウザで表示されるWebページは内蔵ROMに配置されています。file_table_peach.h はGR-PEACH用、 file_table_lychee.h はGR-LYCHEE用のWebページがテーブル情報として保存されています。保存されているファイルの内容は下記の通りです。

SDカードを接続するとTerminal上に SDBlockDevice と表示され、Webブラウザで表示されるWebページが内蔵ROMからSDカードに切り替わります。トップページは index.htm となります。

ネットワークの接続方法を変更する

main.cppの下記マクロを変更することでネットワークの接続方法を変更できます。

/**** User Selection *********/
#define NETWORK_TYPE           (2)                 /* Select  0(Ethernet), 1(BP3595), 2(ESP32 STA) ,3(ESP32 AP) */
#if (NETWORK_TYPE >= 1)
  #define SCAN_NETWORK         (1)                 /* Select  0(Use WLAN_SSID, WLAN_PSK, WLAN_SECURITY) or 1(To select a network using the terminal.) */
  #define WLAN_SSID            ("SSIDofYourAP")    /* SSID */
  #define WLAN_PSK             ("PSKofYourAP")     /* PSK(Pre-Shared Key) */
  #define WLAN_SECURITY        NSAPI_SECURITY_WPA_WPA2 /* NSAPI_SECURITY_NONE, NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA, NSAPI_SECURITY_WPA2 or NSAPI_SECURITY_WPA_WPA2 */
#endif

NETWORK_TYPE に設定する値により、以下の接続方法に切り替わります。

番号接続方法説明
0EthernetGR-PEACHのみ。
1reserved選択できません。
2ESP32 STAESP32をSTAモードで使用します。
3ESP32 APESP32をAPモードで使用します。

GR-LYCHEEを使用する場合はNETWORK_TYPE 2と3が選択できます。
GR-PEACHでNETWORK_TYPE 2と3を使用する場合は別途GR-PEACH Wireless/Cameraシールドが必要です。

NETWORK_TYPE 1のEthernetを使う場合はMACアドレスをユーザが用意する必要があります。
"main.cpp"の最後にの下記のように関数を追加し、用意したMACアドレスを設定してください。

Specify MAC address

// set mac address
void mbed_mac_address(char *mac) {
    mac[0] = 0x00;
    mac[1] = 0x02;
    mac[2] = 0xF7;
    mac[3] = 0xF0;
    mac[4] = 0x00;
    mac[5] = 0x00;
}

カメラの設定

カメラの指定を行う場合はmbed_app.jsonにcamera-typeを変更して追加してください。
詳細はこちらを参照ください。

mbed_app.json

{
    "config": {
        "camera":{
            "help": "0:disable 1:enable",
            "value": "1"
        },
        "camera-type":{
            "help": "Please see EasyAttach_CameraAndLCD/README.md",
            "value": null
        },
        "lcd":{
            "help": "0:disable 1:enable",
            "value": "0"
        },
        "lcd-type":{
            "help": "Please see EasyAttach_CameraAndLCD/README.md",
            "value": null
        }
    },
    "target_overrides": {
        "RZ_A1H": {
            "camera-type" : "CAMERA_WIRELESS_CAMERA"
        }
    }
}

付録

Committer:
1050186
Date:
Tue Dec 25 09:57:54 2018 +0000
Revision:
23:e7fd26563f8f
Parent:
21:c7de71ccb5ca
Child:
24:63e5f399af4a
Support Mbed OS 5.10, replace Renesas libraries to mbed-gr-libs and optimize main.cpp and related files for supporting GR-LYCHEE too.;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dkato 0:c5448e500c90 1 #include "mbed.h"
1050186 23:e7fd26563f8f 2 #include "EasyAttach_CameraAndLCD.h"
1050186 23:e7fd26563f8f 3 #include "dcache-control.h"
dkato 0:c5448e500c90 4 #include "JPEG_Converter.h"
dkato 0:c5448e500c90 5 #include "HTTPServer.h"
dkato 0:c5448e500c90 6 #include "mbed_rpc.h"
dkato 21:c7de71ccb5ca 7 #include "FATFileSystem.h"
dkato 21:c7de71ccb5ca 8 #include "RomRamBlockDevice.h"
1050186 23:e7fd26563f8f 9 #include "SDBlockDevice_GRBoard.h"
1050186 23:e7fd26563f8f 10 #if defined(TARGET_RZ_A1H)
1050186 23:e7fd26563f8f 11 #include "file_table_peach.h" //Binary data of web pages
1050186 23:e7fd26563f8f 12 #elif defined(TARGET_GR_LYCHEE)
1050186 23:e7fd26563f8f 13 #include "file_table_lychee.h" //Binary data of web pages
1050186 23:e7fd26563f8f 14 #endif
1050186 5:34d84609dd60 15 #include "i2c_setting.h"
dkato 0:c5448e500c90 16
dkato 0:c5448e500c90 17 /**** User Selection *********/
dkato 11:ad8ff26679bb 18 /** Network setting **/
dkato 11:ad8ff26679bb 19 #define USE_DHCP (1) /* Select 0(static configuration) or 1(use DHCP) */
dkato 11:ad8ff26679bb 20 #if (USE_DHCP == 0)
dkato 11:ad8ff26679bb 21 #define IP_ADDRESS ("192.168.0.2") /* IP address */
dkato 11:ad8ff26679bb 22 #define SUBNET_MASK ("255.255.255.0") /* Subnet mask */
dkato 11:ad8ff26679bb 23 #define DEFAULT_GATEWAY ("192.168.0.3") /* Default gateway */
dkato 11:ad8ff26679bb 24 #endif
1050186 23:e7fd26563f8f 25 #define NETWORK_TYPE (0) /* Select 0(Ethernet), 1(BP3595), 2(ESP32 STA) ,3(ESP32 AP) */
1050186 23:e7fd26563f8f 26 #if (NETWORK_TYPE >= 1)
dkato 17:2648bcf3f2cc 27 #define SCAN_NETWORK (1) /* Select 0(Use WLAN_SSID, WLAN_PSK, WLAN_SECURITY) or 1(To select a network using the terminal.) */
dkato 15:eac4c3711aab 28 #define WLAN_SSID ("SSIDofYourAP") /* SSID */
dkato 15:eac4c3711aab 29 #define WLAN_PSK ("PSKofYourAP") /* PSK(Pre-Shared Key) */
dkato 17:2648bcf3f2cc 30 #define WLAN_SECURITY NSAPI_SECURITY_WPA_WPA2 /* NSAPI_SECURITY_NONE, NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA, NSAPI_SECURITY_WPA2 or NSAPI_SECURITY_WPA_WPA2 */
dkato 15:eac4c3711aab 31 #endif
1050186 23:e7fd26563f8f 32 /** JPEG out setting **/
1050186 23:e7fd26563f8f 33 #define JPEG_ENCODE_QUALITY (75) /* JPEG encode quality (min:1, max:75 (Considering the size of JpegBuffer, about 75 is the upper limit.)) */
1050186 23:e7fd26563f8f 34 #define VFIELD_INT_SKIP_CNT (0) /* A guide for GR-LYCHEE. 0:60fps, 1:30fps, 2:20fps, 3:15fps, 4:12fps, 5:10fps */
dkato 0:c5448e500c90 35 /*****************************/
dkato 0:c5448e500c90 36
dkato 15:eac4c3711aab 37 #if (NETWORK_TYPE == 0)
dkato 15:eac4c3711aab 38 #include "EthernetInterface.h"
dkato 15:eac4c3711aab 39 EthernetInterface network;
dkato 15:eac4c3711aab 40 #elif (NETWORK_TYPE == 1)
1050186 23:e7fd26563f8f 41 #error "Not supported"
1050186 23:e7fd26563f8f 42 #elif (NETWORK_TYPE == 2)
1050186 23:e7fd26563f8f 43 #include "ESP32Interface.h"
1050186 23:e7fd26563f8f 44 #if defined(TARGET_RZ_A1H)
1050186 23:e7fd26563f8f 45 ESP32Interface network(P3_10, P3_9, P2_14, P2_15);
1050186 23:e7fd26563f8f 46 #elif defined(TARGET_GR_LYCHEE)
1050186 23:e7fd26563f8f 47 ESP32Interface network(P5_3, P3_14, P7_1, P0_1);
1050186 23:e7fd26563f8f 48 #endif
1050186 23:e7fd26563f8f 49 #elif (NETWORK_TYPE == 3)
1050186 23:e7fd26563f8f 50 #include "ESP32InterfaceAP.h"
1050186 23:e7fd26563f8f 51 #if defined(TARGET_RZ_A1H)
1050186 23:e7fd26563f8f 52 ESP32InterfaceAP network(P3_10, P3_9, P2_14, P2_15);
1050186 23:e7fd26563f8f 53 #elif defined(TARGET_GR_LYCHEE)
1050186 23:e7fd26563f8f 54 ESP32InterfaceAP network(P5_3, P3_14, P7_1, P0_1);
1050186 23:e7fd26563f8f 55 #endif
dkato 15:eac4c3711aab 56 #else
dkato 15:eac4c3711aab 57 #error NETWORK_TYPE error
dkato 15:eac4c3711aab 58 #endif /* NETWORK_TYPE */
1050186 23:e7fd26563f8f 59
1050186 23:e7fd26563f8f 60 /* Video input and LCD layer 0 output */
1050186 23:e7fd26563f8f 61 #define VIDEO_FORMAT (DisplayBase::VIDEO_FORMAT_YCBCR422)
1050186 23:e7fd26563f8f 62 #define GRAPHICS_FORMAT (DisplayBase::GRAPHICS_FORMAT_YCBCR422)
1050186 23:e7fd26563f8f 63 #define WR_RD_WRSWA (DisplayBase::WR_RD_WRSWA_32_16BIT)
1050186 23:e7fd26563f8f 64 #define DATA_SIZE_PER_PIC (2u)
1050186 23:e7fd26563f8f 65
1050186 23:e7fd26563f8f 66 /*! Frame buffer stride: Frame buffer stride should be set to a multiple of 32 or 128
1050186 23:e7fd26563f8f 67 in accordance with the frame buffer burst transfer mode. */
1050186 23:e7fd26563f8f 68 #define VIDEO_PIXEL_HW (320u) /* QVGA */
1050186 23:e7fd26563f8f 69 #define VIDEO_PIXEL_VW (240u) /* QVGA */
1050186 23:e7fd26563f8f 70
1050186 23:e7fd26563f8f 71 #define FRAME_BUFFER_STRIDE (((VIDEO_PIXEL_HW * DATA_SIZE_PER_PIC) + 31u) & ~31u)
1050186 23:e7fd26563f8f 72 #define FRAME_BUFFER_HEIGHT (VIDEO_PIXEL_VW)
1050186 23:e7fd26563f8f 73
1050186 23:e7fd26563f8f 74 DisplayBase Display;
dkato 0:c5448e500c90 75
dkato 14:212f66386982 76 #if defined(__ICCARM__)
1050186 23:e7fd26563f8f 77 #pragma data_alignment=32
1050186 23:e7fd26563f8f 78 static uint8_t user_frame_buffer0[FRAME_BUFFER_STRIDE * FRAME_BUFFER_HEIGHT]@ ".mirrorram";
dkato 14:212f66386982 79 #else
1050186 23:e7fd26563f8f 80 static uint8_t user_frame_buffer0[FRAME_BUFFER_STRIDE * FRAME_BUFFER_HEIGHT]__attribute((section("NC_BSS"),aligned(32)));
dkato 14:212f66386982 81 #endif
1050186 23:e7fd26563f8f 82
1050186 23:e7fd26563f8f 83 FATFileSystem fs("storage");
1050186 23:e7fd26563f8f 84 RomRamBlockDevice romram_bd(512000, 512);
1050186 23:e7fd26563f8f 85 SDBlockDevice_GRBoard sd;
1050186 23:e7fd26563f8f 86 Serial pc(USBTX, USBRX);
1050186 23:e7fd26563f8f 87 Thread sdConnectTask;
1050186 23:e7fd26563f8f 88
dkato 14:212f66386982 89 #if defined(__ICCARM__)
1050186 23:e7fd26563f8f 90 #pragma data_alignment=32
1050186 23:e7fd26563f8f 91 static uint8_t JpegBuffer[2][1024 * 64];
dkato 14:212f66386982 92 #else
1050186 23:e7fd26563f8f 93 static uint8_t JpegBuffer[2][1024 * 64]__attribute((aligned(32)));
dkato 14:212f66386982 94 #endif
dkato 1:ebff3aeb40a0 95 static size_t jcu_encode_size[2];
dkato 0:c5448e500c90 96 static int image_change = 0;
dkato 1:ebff3aeb40a0 97 JPEG_Converter Jcu;
dkato 1:ebff3aeb40a0 98 static int jcu_buf_index_write = 0;
dkato 1:ebff3aeb40a0 99 static int jcu_buf_index_write_done = 0;
dkato 1:ebff3aeb40a0 100 static int jcu_buf_index_read = 0;
dkato 1:ebff3aeb40a0 101 static int jcu_encoding = 0;
1050186 23:e7fd26563f8f 102 static int Vfield_Int_Cnt = 0;
dkato 7:c45ecff1b44d 103 static char i2c_setting_str_buf[I2C_SETTING_STR_BUF_SIZE];
dkato 1:ebff3aeb40a0 104
dkato 1:ebff3aeb40a0 105 static void JcuEncodeCallBackFunc(JPEG_Converter::jpeg_conv_error_t err_code) {
1050186 23:e7fd26563f8f 106 if (err_code == JPEG_Converter::JPEG_CONV_OK) {
1050186 23:e7fd26563f8f 107 jcu_buf_index_write_done = jcu_buf_index_write;
1050186 23:e7fd26563f8f 108 image_change = 1;
dkato 0:c5448e500c90 109 }
1050186 23:e7fd26563f8f 110 jcu_encoding = 0;
dkato 0:c5448e500c90 111 }
dkato 0:c5448e500c90 112
dkato 0:c5448e500c90 113 static int snapshot_req(const char ** pp_data) {
dkato 1:ebff3aeb40a0 114 int encode_size;
dkato 0:c5448e500c90 115
dkato 1:ebff3aeb40a0 116 while ((jcu_encoding == 1) || (image_change == 0)) {
1050186 23:e7fd26563f8f 117 ThisThread::sleep_for(1);
dkato 0:c5448e500c90 118 }
dkato 1:ebff3aeb40a0 119 jcu_buf_index_read = jcu_buf_index_write_done;
dkato 0:c5448e500c90 120 image_change = 0;
dkato 0:c5448e500c90 121
dkato 1:ebff3aeb40a0 122 *pp_data = (const char *)JpegBuffer[jcu_buf_index_read];
dkato 1:ebff3aeb40a0 123 encode_size = (int)jcu_encode_size[jcu_buf_index_read];
dkato 0:c5448e500c90 124
dkato 1:ebff3aeb40a0 125 return encode_size;
dkato 0:c5448e500c90 126 }
dkato 0:c5448e500c90 127
1050186 23:e7fd26563f8f 128 static void IntCallbackFunc_Vfield(DisplayBase::int_type_t int_type) {
1050186 23:e7fd26563f8f 129 if (Vfield_Int_Cnt < VFIELD_INT_SKIP_CNT) {
1050186 23:e7fd26563f8f 130 Vfield_Int_Cnt++;
1050186 23:e7fd26563f8f 131 return;
1050186 23:e7fd26563f8f 132 }
1050186 23:e7fd26563f8f 133 Vfield_Int_Cnt = 0;
1050186 23:e7fd26563f8f 134
1050186 23:e7fd26563f8f 135 //Interrupt callback function
1050186 23:e7fd26563f8f 136 if (jcu_encoding == 0) {
1050186 23:e7fd26563f8f 137 JPEG_Converter::bitmap_buff_info_t bitmap_buff_info;
1050186 23:e7fd26563f8f 138 JPEG_Converter::encode_options_t encode_options;
1050186 23:e7fd26563f8f 139
1050186 23:e7fd26563f8f 140 bitmap_buff_info.width = VIDEO_PIXEL_HW;
1050186 23:e7fd26563f8f 141 bitmap_buff_info.height = VIDEO_PIXEL_VW;
1050186 23:e7fd26563f8f 142 bitmap_buff_info.format = JPEG_Converter::WR_RD_YCbCr422;
1050186 23:e7fd26563f8f 143 bitmap_buff_info.buffer_address = (void *)user_frame_buffer0;
1050186 23:e7fd26563f8f 144
1050186 23:e7fd26563f8f 145 encode_options.encode_buff_size = sizeof(JpegBuffer[0]);
1050186 23:e7fd26563f8f 146 encode_options.p_EncodeCallBackFunc = &JcuEncodeCallBackFunc;
1050186 23:e7fd26563f8f 147 encode_options.input_swapsetting = JPEG_Converter::WR_RD_WRSWA_32_16_8BIT;
1050186 23:e7fd26563f8f 148
1050186 23:e7fd26563f8f 149 jcu_encoding = 1;
1050186 23:e7fd26563f8f 150 if (jcu_buf_index_read == jcu_buf_index_write) {
1050186 23:e7fd26563f8f 151 jcu_buf_index_write ^= 1; // toggle
1050186 23:e7fd26563f8f 152 }
1050186 23:e7fd26563f8f 153 jcu_encode_size[jcu_buf_index_write] = 0;
1050186 23:e7fd26563f8f 154 dcache_invalid(JpegBuffer[jcu_buf_index_write], sizeof(JpegBuffer[0]));
1050186 23:e7fd26563f8f 155 if (Jcu.encode(&bitmap_buff_info, JpegBuffer[jcu_buf_index_write],
1050186 23:e7fd26563f8f 156 &jcu_encode_size[jcu_buf_index_write], &encode_options) != JPEG_Converter::JPEG_CONV_OK) {
1050186 23:e7fd26563f8f 157 jcu_encode_size[jcu_buf_index_write] = 0;
1050186 23:e7fd26563f8f 158 jcu_encoding = 0;
1050186 23:e7fd26563f8f 159 }
1050186 23:e7fd26563f8f 160 }
1050186 23:e7fd26563f8f 161 }
1050186 23:e7fd26563f8f 162
1050186 23:e7fd26563f8f 163 static void Start_Video_Camera(void) {
1050186 23:e7fd26563f8f 164 // Video capture setting (progressive form fixed)
1050186 23:e7fd26563f8f 165 Display.Video_Write_Setting(
1050186 23:e7fd26563f8f 166 DisplayBase::VIDEO_INPUT_CHANNEL_0,
1050186 23:e7fd26563f8f 167 DisplayBase::COL_SYS_NTSC_358,
1050186 23:e7fd26563f8f 168 (void *)user_frame_buffer0,
1050186 23:e7fd26563f8f 169 FRAME_BUFFER_STRIDE,
1050186 23:e7fd26563f8f 170 VIDEO_FORMAT,
1050186 23:e7fd26563f8f 171 WR_RD_WRSWA,
1050186 23:e7fd26563f8f 172 VIDEO_PIXEL_VW,
1050186 23:e7fd26563f8f 173 VIDEO_PIXEL_HW
1050186 23:e7fd26563f8f 174 );
1050186 23:e7fd26563f8f 175 EasyAttach_CameraStart(Display, DisplayBase::VIDEO_INPUT_CHANNEL_0);
1050186 23:e7fd26563f8f 176 }
1050186 23:e7fd26563f8f 177
dkato 0:c5448e500c90 178 static void TerminalWrite(Arguments* arg, Reply* r) {
dkato 16:b5469a6226c7 179 if ((arg != NULL) && (r != NULL)) {
dkato 16:b5469a6226c7 180 for (int i = 0; i < arg->argc; i++) {
dkato 16:b5469a6226c7 181 if (arg->argv[i] != NULL) {
dkato 16:b5469a6226c7 182 printf("%s", arg->argv[i]);
dkato 16:b5469a6226c7 183 }
dkato 16:b5469a6226c7 184 }
dkato 16:b5469a6226c7 185 printf("\n");
dkato 16:b5469a6226c7 186 r->putData<const char*>("ok");
dkato 16:b5469a6226c7 187 }
dkato 0:c5448e500c90 188 }
dkato 0:c5448e500c90 189
dkato 0:c5448e500c90 190 static void mount_romramfs(void) {
dkato 0:c5448e500c90 191 FILE * fp;
dkato 0:c5448e500c90 192
dkato 21:c7de71ccb5ca 193 romram_bd.SetRomAddr(0x18000000, 0x1FFFFFFF);
dkato 21:c7de71ccb5ca 194 fs.format(&romram_bd, 512);
dkato 21:c7de71ccb5ca 195 fs.mount(&romram_bd);
dkato 0:c5448e500c90 196
dkato 12:6c002b871c4d 197 //index.htm
dkato 21:c7de71ccb5ca 198 fp = fopen("/storage/index.htm", "w");
dkato 12:6c002b871c4d 199 fwrite(index_htm_tbl, sizeof(char), sizeof(index_htm_tbl), fp);
dkato 12:6c002b871c4d 200 fclose(fp);
dkato 12:6c002b871c4d 201
dkato 0:c5448e500c90 202 //camera.js
dkato 21:c7de71ccb5ca 203 fp = fopen("/storage/camera.js", "w");
dkato 0:c5448e500c90 204 fwrite(camaera_js_tbl, sizeof(char), sizeof(camaera_js_tbl), fp);
dkato 0:c5448e500c90 205 fclose(fp);
dkato 0:c5448e500c90 206
dkato 0:c5448e500c90 207 //camera.htm
dkato 21:c7de71ccb5ca 208 fp = fopen("/storage/camera.htm", "w");
dkato 0:c5448e500c90 209 fwrite(camera_htm_tbl, sizeof(char), sizeof(camera_htm_tbl), fp);
dkato 0:c5448e500c90 210 fclose(fp);
dkato 0:c5448e500c90 211
dkato 0:c5448e500c90 212 //mbedrpc.js
dkato 21:c7de71ccb5ca 213 fp = fopen("/storage/mbedrpc.js", "w");
dkato 0:c5448e500c90 214 fwrite(mbedrpc_js_tbl, sizeof(char), sizeof(mbedrpc_js_tbl), fp);
dkato 0:c5448e500c90 215 fclose(fp);
dkato 0:c5448e500c90 216
dkato 0:c5448e500c90 217 //led.htm
dkato 21:c7de71ccb5ca 218 fp = fopen("/storage/led.htm", "w");
dkato 0:c5448e500c90 219 fwrite(led_htm_tbl, sizeof(char), sizeof(led_htm_tbl), fp);
dkato 0:c5448e500c90 220 fclose(fp);
1050186 5:34d84609dd60 221
1050186 5:34d84609dd60 222 //i2c_set.htm
dkato 21:c7de71ccb5ca 223 fp = fopen("/storage/i2c_set.htm", "w");
1050186 5:34d84609dd60 224 fwrite(i2c_set_htm_tbl, sizeof(char), sizeof(i2c_set_htm_tbl), fp);
1050186 5:34d84609dd60 225 fclose(fp);
1050186 5:34d84609dd60 226
1050186 5:34d84609dd60 227 //web_top.htm
dkato 21:c7de71ccb5ca 228 fp = fopen("/storage/web_top.htm", "w");
1050186 5:34d84609dd60 229 fwrite(web_top_htm_tbl, sizeof(char), sizeof(web_top_htm_tbl), fp);
1050186 5:34d84609dd60 230 fclose(fp);
1050186 5:34d84609dd60 231
1050186 5:34d84609dd60 232 //menu.htm
dkato 21:c7de71ccb5ca 233 fp = fopen("/storage/menu.htm", "w");
1050186 5:34d84609dd60 234 fwrite(menu_htm_tbl, sizeof(char), sizeof(menu_htm_tbl), fp);
1050186 5:34d84609dd60 235 fclose(fp);
1050186 5:34d84609dd60 236
1050186 5:34d84609dd60 237 //window.htm
dkato 21:c7de71ccb5ca 238 fp = fopen("/storage/window.htm", "w");
1050186 5:34d84609dd60 239 fwrite(window_htm_tbl, sizeof(char), sizeof(window_htm_tbl), fp);
1050186 5:34d84609dd60 240 fclose(fp);
1050186 5:34d84609dd60 241 }
1050186 5:34d84609dd60 242
1050186 5:34d84609dd60 243 static void SetI2CfromWeb(Arguments* arg, Reply* r) {
1050186 10:3a176dc33f74 244 int result = 0;
1050186 10:3a176dc33f74 245
1050186 10:3a176dc33f74 246 if (arg != NULL) {
1050186 10:3a176dc33f74 247 if (arg->argc >= 2) {
1050186 10:3a176dc33f74 248 if ((arg->argv[0] != NULL) && (arg->argv[1] != NULL)) {
1050186 10:3a176dc33f74 249 sprintf(i2c_setting_str_buf, "%s,%s", arg->argv[0], arg->argv[1]);
1050186 10:3a176dc33f74 250 result = 1;
1050186 10:3a176dc33f74 251 }
1050186 10:3a176dc33f74 252 } else if (arg->argc == 1) {
1050186 10:3a176dc33f74 253 if (arg->argv[0] != NULL) {
1050186 10:3a176dc33f74 254 sprintf(i2c_setting_str_buf, "%s", arg->argv[0]);
1050186 10:3a176dc33f74 255 result = 1;
1050186 10:3a176dc33f74 256 }
1050186 10:3a176dc33f74 257 } else {
1050186 10:3a176dc33f74 258 /* Do nothing */
1050186 10:3a176dc33f74 259 }
dkato 7:c45ecff1b44d 260 /* command analysis and execute */
1050186 10:3a176dc33f74 261 if (result != 0) {
1050186 10:3a176dc33f74 262 if (i2c_setting_exe(i2c_setting_str_buf) != false) {
1050186 10:3a176dc33f74 263 r->putData<const char*>(i2c_setting_str_buf);
1050186 10:3a176dc33f74 264 }
1050186 5:34d84609dd60 265 }
1050186 5:34d84609dd60 266 }
dkato 0:c5448e500c90 267 }
dkato 0:c5448e500c90 268
1050186 23:e7fd26563f8f 269 #if (SCAN_NETWORK == 1) && (NETWORK_TYPE != 3)
dkato 21:c7de71ccb5ca 270 static const char *sec2str(nsapi_security_t sec) {
dkato 21:c7de71ccb5ca 271 switch (sec) {
dkato 21:c7de71ccb5ca 272 case NSAPI_SECURITY_NONE:
dkato 21:c7de71ccb5ca 273 return "None";
dkato 21:c7de71ccb5ca 274 case NSAPI_SECURITY_WEP:
dkato 21:c7de71ccb5ca 275 return "WEP";
dkato 21:c7de71ccb5ca 276 case NSAPI_SECURITY_WPA:
dkato 21:c7de71ccb5ca 277 return "WPA";
dkato 21:c7de71ccb5ca 278 case NSAPI_SECURITY_WPA2:
dkato 21:c7de71ccb5ca 279 return "WPA2";
dkato 21:c7de71ccb5ca 280 case NSAPI_SECURITY_WPA_WPA2:
dkato 21:c7de71ccb5ca 281 return "WPA/WPA2";
dkato 21:c7de71ccb5ca 282 case NSAPI_SECURITY_UNKNOWN:
dkato 21:c7de71ccb5ca 283 default:
dkato 21:c7de71ccb5ca 284 return "Unknown";
dkato 21:c7de71ccb5ca 285 }
dkato 21:c7de71ccb5ca 286 }
dkato 21:c7de71ccb5ca 287
dkato 21:c7de71ccb5ca 288 static bool scan_network(WiFiInterface *wifi) {
dkato 21:c7de71ccb5ca 289 WiFiAccessPoint *ap;
dkato 21:c7de71ccb5ca 290 bool ret = false;
dkato 17:2648bcf3f2cc 291 int i;
1050186 23:e7fd26563f8f 292 int count = 10; /* Limit number of network arbitrary to 10 */
dkato 21:c7de71ccb5ca 293
dkato 21:c7de71ccb5ca 294 printf("Scan:\r\n");
dkato 21:c7de71ccb5ca 295 ap = new WiFiAccessPoint[count];
1050186 23:e7fd26563f8f 296 if (ap == NULL) {
1050186 23:e7fd26563f8f 297 printf("memory error\r\n");
1050186 23:e7fd26563f8f 298 return 0;
1050186 23:e7fd26563f8f 299 }
dkato 21:c7de71ccb5ca 300 count = wifi->scan(ap, count);
dkato 21:c7de71ccb5ca 301 for (i = 0; i < count; i++) {
1050186 23:e7fd26563f8f 302 printf("No.%d Network: %s secured: %s BSSID: %02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx RSSI: %hhd Ch: %hhd\r\n",
1050186 23:e7fd26563f8f 303 i, ap[i].get_ssid(), sec2str(ap[i].get_security()),
1050186 23:e7fd26563f8f 304 ap[i].get_bssid()[0], ap[i].get_bssid()[1], ap[i].get_bssid()[2], ap[i].get_bssid()[3],
1050186 23:e7fd26563f8f 305 ap[i].get_bssid()[4], ap[i].get_bssid()[5], ap[i].get_rssi(), ap[i].get_channel());
dkato 21:c7de71ccb5ca 306 }
dkato 21:c7de71ccb5ca 307 printf("%d networks available.\r\n", count);
dkato 17:2648bcf3f2cc 308
dkato 21:c7de71ccb5ca 309 if (count > 0) {
dkato 21:c7de71ccb5ca 310 char c;
dkato 21:c7de71ccb5ca 311 char pass[64];
dkato 21:c7de71ccb5ca 312 int select_no;
dkato 21:c7de71ccb5ca 313 bool loop_break = false;;
dkato 21:c7de71ccb5ca 314
dkato 21:c7de71ccb5ca 315 printf("\nPlease enter the number of the network you want to connect.\r\n");
dkato 21:c7de71ccb5ca 316 printf("Enter key:[0]-[%d], (If inputting the other key, it's scanned again.)\r\n", count - 1);
dkato 21:c7de71ccb5ca 317 c = (uint8_t)pc.getc();
dkato 21:c7de71ccb5ca 318 select_no = c - 0x30;
dkato 21:c7de71ccb5ca 319 if ((select_no >= 0) && (select_no < count)) {
dkato 21:c7de71ccb5ca 320 printf("[%s] is selected.\r\n", ap[select_no].get_ssid());
dkato 21:c7de71ccb5ca 321 printf("Please enter the PSK.\r\n");
dkato 21:c7de71ccb5ca 322 i = 0;
dkato 21:c7de71ccb5ca 323 while (loop_break == false) {
dkato 21:c7de71ccb5ca 324 c = (uint8_t)pc.getc();
dkato 21:c7de71ccb5ca 325 switch (c) {
dkato 21:c7de71ccb5ca 326 case 0x0D:
dkato 21:c7de71ccb5ca 327 pass[i] = '\0';
dkato 21:c7de71ccb5ca 328 pc.puts("\r\n");
dkato 21:c7de71ccb5ca 329 loop_break = true;
dkato 21:c7de71ccb5ca 330 break;
dkato 21:c7de71ccb5ca 331 case 0x08:
dkato 21:c7de71ccb5ca 332 if (i > 0) {
dkato 21:c7de71ccb5ca 333 pc.puts("\b \b");
dkato 21:c7de71ccb5ca 334 i--;
dkato 21:c7de71ccb5ca 335 }
dkato 21:c7de71ccb5ca 336 break;
dkato 21:c7de71ccb5ca 337 case 0x0A:
dkato 21:c7de71ccb5ca 338 break;
dkato 21:c7de71ccb5ca 339 default:
dkato 21:c7de71ccb5ca 340 if ((i + 1) < sizeof(pass)) {
dkato 21:c7de71ccb5ca 341 pass[i] = c;
dkato 21:c7de71ccb5ca 342 i++;
dkato 21:c7de71ccb5ca 343 pc.putc(c);
dkato 21:c7de71ccb5ca 344 }
dkato 21:c7de71ccb5ca 345 break;
dkato 21:c7de71ccb5ca 346 }
dkato 17:2648bcf3f2cc 347 }
dkato 21:c7de71ccb5ca 348 wifi->set_credentials(ap[select_no].get_ssid(), pass, ap[select_no].get_security());
dkato 21:c7de71ccb5ca 349 ret = true;
dkato 17:2648bcf3f2cc 350 }
dkato 17:2648bcf3f2cc 351 }
dkato 21:c7de71ccb5ca 352
dkato 21:c7de71ccb5ca 353 delete[] ap;
dkato 21:c7de71ccb5ca 354
dkato 21:c7de71ccb5ca 355 return ret;
dkato 17:2648bcf3f2cc 356 }
dkato 17:2648bcf3f2cc 357 #endif
dkato 17:2648bcf3f2cc 358
1050186 23:e7fd26563f8f 359 static void sd_connect_task(void) {
1050186 23:e7fd26563f8f 360 int storage_type = 0;
1050186 23:e7fd26563f8f 361
1050186 23:e7fd26563f8f 362 while (1) {
1050186 23:e7fd26563f8f 363 if (storage_type == 0) {
1050186 23:e7fd26563f8f 364 if (sd.connect()) {
1050186 23:e7fd26563f8f 365 fs.unmount();
1050186 23:e7fd26563f8f 366 fs.mount(&sd);
1050186 23:e7fd26563f8f 367 storage_type = 1;
1050186 23:e7fd26563f8f 368 printf("SDBlockDevice\r\n");
1050186 23:e7fd26563f8f 369 }
1050186 23:e7fd26563f8f 370 } else {
1050186 23:e7fd26563f8f 371 if (sd.connected() == false) {
1050186 23:e7fd26563f8f 372 fs.unmount();
1050186 23:e7fd26563f8f 373 fs.mount(&romram_bd);
1050186 23:e7fd26563f8f 374 storage_type = 0;
1050186 23:e7fd26563f8f 375 printf("RomRamBlockDevice\r\n");
1050186 23:e7fd26563f8f 376 }
1050186 23:e7fd26563f8f 377 }
1050186 23:e7fd26563f8f 378 ThisThread::sleep_for(250);
1050186 23:e7fd26563f8f 379 }
1050186 23:e7fd26563f8f 380 }
1050186 23:e7fd26563f8f 381
dkato 0:c5448e500c90 382 int main(void) {
dkato 0:c5448e500c90 383 printf("********* PROGRAM START ***********\r\n");
dkato 0:c5448e500c90 384
1050186 23:e7fd26563f8f 385 mount_romramfs(); //RomRamFileSystem Mount
1050186 23:e7fd26563f8f 386
1050186 23:e7fd26563f8f 387 sdConnectTask.start(&sd_connect_task);
1050186 5:34d84609dd60 388
1050186 23:e7fd26563f8f 389 EasyAttach_Init(Display);
1050186 23:e7fd26563f8f 390 Jcu.SetQuality(JPEG_ENCODE_QUALITY);
1050186 23:e7fd26563f8f 391 // Interrupt callback function setting (Field end signal for recording function in scaler 0)
1050186 23:e7fd26563f8f 392 Display.Graphics_Irq_Handler_Set(DisplayBase::INT_TYPE_S0_VFIELD, 0, IntCallbackFunc_Vfield);
1050186 23:e7fd26563f8f 393 Start_Video_Camera();
dkato 0:c5448e500c90 394
dkato 0:c5448e500c90 395 RPC::add_rpc_class<RpcDigitalOut>();
dkato 0:c5448e500c90 396 RPCFunction rpcFunc(TerminalWrite, "TerminalWrite");
1050186 5:34d84609dd60 397 RPCFunction rpcSetI2C(SetI2CfromWeb, "SetI2CfromWeb");
dkato 0:c5448e500c90 398
1050186 23:e7fd26563f8f 399 #if defined(TARGET_RZ_A1H) && (NETWORK_TYPE == 1)
dkato 15:eac4c3711aab 400 //Audio Camera Shield USB1 enable for WlanBP3595
1050186 23:e7fd26563f8f 401 DigitalOut usb1en(P3_8);
dkato 15:eac4c3711aab 402 usb1en = 1; //Outputs high level
1050186 23:e7fd26563f8f 403 ThisThread::sleep_for(5);
dkato 15:eac4c3711aab 404 usb1en = 0; //Outputs low level
1050186 23:e7fd26563f8f 405 ThisThread::sleep_for(5);
dkato 15:eac4c3711aab 406 #endif
dkato 15:eac4c3711aab 407
dkato 11:ad8ff26679bb 408 printf("Network Setting up...\r\n");
dkato 17:2648bcf3f2cc 409 #if (USE_DHCP == 0)
dkato 17:2648bcf3f2cc 410 network.set_dhcp(false);
dkato 17:2648bcf3f2cc 411 if (network.set_network(IP_ADDRESS, SUBNET_MASK, DEFAULT_GATEWAY) != 0) { //for Static IP Address (IPAddress, NetMasks, Gateway)
dkato 17:2648bcf3f2cc 412 printf("Network Set Network Error \r\n");
dkato 0:c5448e500c90 413 }
dkato 17:2648bcf3f2cc 414 #endif
1050186 23:e7fd26563f8f 415
1050186 23:e7fd26563f8f 416 #if (NETWORK_TYPE >= 1)
1050186 23:e7fd26563f8f 417 #if (SCAN_NETWORK == 1) && (NETWORK_TYPE != 3)
dkato 21:c7de71ccb5ca 418 while (!scan_network(&network));
dkato 15:eac4c3711aab 419 #else
dkato 17:2648bcf3f2cc 420 network.set_credentials(WLAN_SSID, WLAN_PSK, WLAN_SECURITY);
dkato 17:2648bcf3f2cc 421 #endif
dkato 15:eac4c3711aab 422 #endif
1050186 23:e7fd26563f8f 423
1050186 23:e7fd26563f8f 424 printf("\r\nConnecting...\r\n");
dkato 17:2648bcf3f2cc 425 if (network.connect() != 0) {
dkato 11:ad8ff26679bb 426 printf("Network Connect Error \r\n");
dkato 0:c5448e500c90 427 return -1;
dkato 0:c5448e500c90 428 }
dkato 18:0461a79ced71 429 printf("MAC Address is %s\r\n", network.get_mac_address());
dkato 17:2648bcf3f2cc 430 printf("IP Address is %s\r\n", network.get_ip_address());
dkato 17:2648bcf3f2cc 431 printf("NetMask is %s\r\n", network.get_netmask());
dkato 17:2648bcf3f2cc 432 printf("Gateway Address is %s\r\n", network.get_gateway());
dkato 11:ad8ff26679bb 433 printf("Network Setup OK\r\n");
dkato 0:c5448e500c90 434
dkato 0:c5448e500c90 435 SnapshotHandler::attach_req(&snapshot_req);
dkato 0:c5448e500c90 436 HTTPServerAddHandler<SnapshotHandler>("/camera"); //Camera
dkato 21:c7de71ccb5ca 437 FSHandler::mount("/storage", "/");
dkato 0:c5448e500c90 438 HTTPServerAddHandler<FSHandler>("/");
dkato 0:c5448e500c90 439 HTTPServerAddHandler<RPCHandler>("/rpc");
dkato 17:2648bcf3f2cc 440 HTTPServerStart(&network, 80);
dkato 0:c5448e500c90 441 }