ESP-Jumpstart

Size: px
Start display at page:

Download "ESP-Jumpstart"

Transcription

1

2

3 Contents ESP ESP-IDF Wi-Fi SoftAP BLE NVS i

4 AWS IoT Flash (OTA) URL NVS ii

5 [English] ESP32 Jumpstart Now Contents 1

6 2 Contents

7 CHAPTER 1 [English] 1.1 ESP32 app ESP32 ESP32 ESP32 / / ESP32 ESP-IDF GPIO Wi-Fi app / app / GPIO / GPIO / GPIO OTA 3

8 1: 2: 4 Chapter 1.

9 ESP32 ESP32-DevKitC ESP32 PC Windows Linux Mac OS ESP8266 ESP8266 ESP8266-DevKitC ESP8266 ESP8266_RTOS_SDK ESP8266 ESP8266 IDF ESP8266_RTOS_SDK ESP8266 ESP32 ESP / AWS IoT AWS IOT app / app 6. AWS IoT

10 6 Chapter 1.

11 CHAPTER 2 [English] ESP32 ESP ESP32 Linux Windows MacOS ESP32 USB ESP-IDF ( SDK) 2.2 ESP-IDF ESP-IDF ESP32 ESP-IDF ESP32 ESP-IDF ESP-IDF ESP-IDF ESP-IDF 7

12 1: ESP32 ESP-IDF ESP-IDF ESP-IDF ESP-IDF Wi-Fi HTTP ESP-IDF SDK main Makefile sdkconfig.defaults SDK 2.3 ESP-IDF 8 Chapter 2.

13 2:

14 3: 10 Chapter 2.

15 $ git clone --recursive ESP-IDF ESP-IDF v3.2 $ cd esp-idf $ git checkout -b release/v3.2 remotes/origin/release/v3.2 $ git submodule update --recursive Hello World $ cd esp-jumpstart/1_hello_world $ make -j8 menuconfig $ export ESPPORT=/dev/cu.SLAB_USBTOUART # Or the correct device name for your setup $ export ESPBAUD= $ make -j8 flash monitor SDK ESP8266 IDF_PATH ESP8266_RTOS_SDK esp-jumpstart platform/esp8266 $ cd esp-jumpstart $ git checkout -b platform/esp8266 origin/platform/esp Hello World #include <stdio.h> #include "freertos/freertos.h" #include "freertos/task.h" void app_main() { ( )

16 } int i = 0; while (1) { printf("[%d] Hello world!\n", i); i++; vtaskdelay(5000 / porttick_period_ms); } ( ) app_main() FreeRTOS ESP32 FreeRTOS ESP32 app_main() SDK printf() strlen() time() C IDF newlib C newlib C stdio stdlib / / C signal locale wchr printf() FreeRTOS ESP32 FreeRTOS vtaskdelay 5 FreeRTOS API FreeRTOS 2.5 ESP32 12 Chapter 2.

17 CHAPTER 3 [English] ESP32 API / GPIO esp-jumpstart 2_drivers/ app_driver.c 3.1 DevkitC Boot GPIO 0 /

18 #include <iot_button.h> button_handle_t btn_handle=iot_button_create(jumpstart_board_button_gpio, JUMPSTART_BOARD_BUTTON_ACTIVE_LEVEL); iot_button_set_evt_cb(btn_handle, BUTTON_CB_RELEASE, push_btn_cb, "RELEASE"); iot_button iot_button GPIO DevKitC BUTTON_GPIO GPIO 0 esp-timer push_btn_cb esp-timer push_btn_cb static void push_btn_cb(void* arg) { static uint64_t previous; uint64_t current = xtaskgettickcount(); if ((current - previous) > DEBOUNCE_TIME) { previous = current; app_driver_set_state(!g_output_state); } } xtaskgettickcount() FreeRTOS 300 app_driver_toggle_state() 3.2 GPIO GPIO GPIO gpio_config_t io_conf; io_conf.mode = GPIO_MODE_OUTPUT; io_conf.pull_up_en = 1; ( ) 14 Chapter 3.

19 io_conf.pin_bit_mask = ((uint64_t)1 << JUMPSTART_BOARD_OUTPUT_GPIO); ( ) /* Configure the GPIO */ gpio_config(&io_conf); GPIO 27 gpio_config_t GPIO /* Assert GPIO */ gpio_set_level(jumpstart_board_output_gpio, target); gpio_set_level() GPIO 3.3 ESP32 Wi-Fi

20 16 Chapter 3.

21 CHAPTER 4 Wi-Fi [English] Wi-Fi Wi-Fi 3_wifi_connection/ 4.1 #include <esp_wifi.h> #include <esp_event_loop.h> tcpip_adapter_init(); esp_event_loop_init(event_handler, NULL); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); esp_wifi_init(&cfg); esp_wifi_set_mode(wifi_mode_sta); wifi_config_t wifi_config = {.sta = {.ssid = EXAMPLE_ESP_WIFI_SSID,.password = EXAMPLE_ESP_WIFI_PASS, }, ( ) 17

22 }; esp_wifi_set_config(esp_if_wifi_sta, &wifi_config); esp_wifi_start(); ( ) tcpip_adapter_init() TCP/IP esp_wifi_init() esp_wifi_set_mode() Wi-Fi station SSID Wi-Fi esp_wifi_start() station Wi-Fi IP (event loop) TCP/IP Wi-Fi esp_event_loop_init() event loop event loop Event Loop esp_err_t event_handler(void *ctx, system_event_t *event) { switch(event->event_id) { case SYSTEM_EVENT_STA_START: esp_wifi_connect(); break; case SYSTEM_EVENT_STA_GOT_IP: ESP_LOGI(TAG, "Connected with IP Address:%s", ip4addr_ntoa(&event->event_info.got_ip.ip_info.ip)); break; case SYSTEM_EVENT_STA_DISCONNECTED: esp_wifi_connect(); break; return ESP_OK; } 3 SYSTEM_EVENT_STA_START station esp_wifi_connect() Wi-Fi station esp_wifi_connect() ESP32 IP SYSTEM_EVENT_STA_GOT_IP IP 18 Chapter 4. Wi-Fi

23 4.2 Wi-Fi SSID ESP32 Wi-Fi IP GPIO Wi-Fi

24 20 Chapter 4. Wi-Fi

25 CHAPTER 5 SoftAP BLE [English] Wi-Fi SSID PASSWORD Wi-Fi esp-jumpstart 4_network_config/ 5.1 Wi-Fi Wi-Fi Wi-Fi Wi-Fi SoftAP (BLE) SoftAP SoftAP Wi-Fi Wi-Fi Wi-Fi 21

26 1: Wi-Fi Wi-Fi app Wi-Fi SoftAP Wi-Fi app ios Android app SoftAP Wi-Fi BLE BLE BLE BLE BLE Wi-Fi ios Android app BLE BLE flash BLE 22 Chapter 5. SoftAP BLE

27 5.2 APP esp-jumpstart 4_network_config/ 4_network_config BLE app ble-sec1 app app app Wi-Fi Wi-Fi ESP8266 ESP8266 SoftAP ESP8266 wifi-sec1 app 5.3 / softap/ble Wi-Fi SoftAP + HTTP BLE - WPA2 SoftAP just-works BLE Protocol Buffers Wi-Fi Protocol Buffers Wi-Fi SoftAP BLE

28 IDF ESP-IDF ios Android Android ios if (conn_mgr_prov_is_provisioned(&provisioned)!= ESP_OK) { return; } if (provisioned!= true) { /* Starting unified provisioning */ conn_mgr_prov_start_provisioning(prov_type, security, pop, service_name, service_key); } else { /* Start the station */ wifi_init_sta(); } conn_mgr_prov conn_mgr_prov_is_provisionined() API Wi-Fi NVS flash NVS Non-volatile storage Wi-Fi conn_mgr_prov_start_provisioning() API API 1. SoftAP BLE 2. Wi-Fi BLE NVS 5. SoftAP BLE HTTP NVS Wi-Fi wifi_init_sta() API Wi-Fi station Wi-Fi station 24 Chapter 5. SoftAP BLE

29 Wi-Fi (event handler) esp_err_t event_handler(void *ctx, system_event_t *event) { conn_mgr_prov_event_handler(ctx, event); switch(event->event_id) { case SYSTEM_EVENT_STA_START: API /* Starting unified provisioning */ conn_mgr_prov_start_provisioning(prov_type, security, pop, service_name, service_key); API API 1. (Security) security0 security1 Security0 Security1 curve25519 AES-CTR 2. (Transport) SoftAP BLE 3. (Proof of Possession) BLE SoftAP 4. (Service Name) app SoftAP Wi-Fi SSID BLE BLE 5. (Service Key) SoftAP Wi-Fi BLE

30 BLE just-works SoftAP BLE app app NVS Wi-Fi NVS NVS NVS NVS flash NVS NVS flash NVS NVS NULL BLOB NVS API /* Store the value of key 'my_key' to NVS */ nvs_set_u32(nvs_handle, "my_key", chosen_value); /* Read the value of key 'my_key' from NVS */ nvs_get_u32(nvs_handle, "my_key", &chosen_value); NVS. 26 Chapter 5. SoftAP BLE

31 5.5 NVS NVS iot_button_() _network_config/ /* Register 3 second press callback */ iot_button_add_on_press_cb(btn_handle, 3, button_press_3sec_cb, NULL); btn_handle 3 button_press_3sec_cb() btn_handle static void button_press_3sec_cb(void *arg) { nvs_flash_erase(); esp_restart(); } NVS NVS 4_network_config/ app Wi-Fi Wi-Fi /

32 28 Chapter 5. SoftAP BLE

33 CHAPTER 6 [English] 1: Web API API 29

34 Alexa 6.1 (Transport Layer Security, TLS) TLS TLS HTTP MQTT TLS CA TLS CA TLS CA CA TLS CA 6.2 CA ESP-IDF component.mk component.mk COMPONENT_EMBED_TXTFILES := cloud_cfg/server.cert cloud_cfg/server.cert extern const uint8_t certificate_pem_crt_start[] asm("_binary_server_cert_start"); extern const uint8_t certificate_pem_crt_end[] asm("_binary_server_cert_end"); 6.3 AWS IoT AWS IoT 30 Chapter 6.

35 6.3.1 AWS IoT 14 OTA AWS IoT AWS IoT ID 4. AWS IoT CA 5. URL esp-jumpstart 5_cloud/ AWS IoT 1. 5_cloud/ 2..txt AWS CA 5_cloud/main/cloud_cfg/server.cert 5_cloud/main/cloud_cfg/device.key 5_cloud/main/cloud_cfg/device.cert ID 5_cloud/main/cloud_cfg/deviceid.txt 5_cloud/main/cloud_cfg/endpoint.txt 3. AWS IoT 6.3. AWS IoT 31

36 6.3.3 AWS IoT Web API Web API curl curl Linux/Windows/Mac curl --tlsv1.2 --cert cloud_cfg/device.cert \ --key cloud_cfg/device.key \ deviceid.txt-file>/shadow \ python -mjson.tool deviceid.txt things shadow <contents-ofdeviceid.txt-file> AWS device.cert device.key curl / curl -d '{"state":{"desired":{"output":false}}}' \ --tlsv1.2 --cert cloud_cfg/device.cert \ --key cloud_cfg/device.key \ deviceid.txt-file>/shadow \ python -mjson.tool curl HTTP POST POST JSON JSON AWS IoT false curl true false cloud_aws.c AWS IoT SDK API app_driver_get_state() app_driver_toggle_state() AWS IoT 3 AWS CA 5_cloud/main/cloud_cfg/server.cert 32 Chapter 6.

37 5_cloud/main/cloud_cfg/device.key 5_cloud/main/cloud_cfg/device.cert 6.4 / OTA

38 34 Chapter 6.

39 CHAPTER 7 [English] flash 7.1 Flash ESP-IDF flash flash 0x9000 Bootloader flash 1 NVS (OTA) - flash OTA Data OTA 0 OTA 0 OTA Data 1 OTA OTA Data OTA 1 35

40 1: Flash Flash IDF OTA Data 2 CSV Comma Separated Values IDF # Name, Type, SubType, Offset, Size, Flags # Note: if you change the phy_init or app partition offset # make sure to change the offset in Kconfig.projbuild nvs, data, nvs,, 0x6000, otadata, data, ota,, 0x2000, phy_init, data, phy,, 0x1000, ota_0, app, ota_0,, 1600K, ota_1, app, ota_1,, 1600K, IDF NVS OTA Data OTA 0 OTA 1 IDF SDK 6_ota/sdkconfig.defaults make menuconfig menuconfig -> Partition Table 36 Chapter 7.

41 2: OTA Flash 7.2. (OTA) 37

42 3: ESP8266 ESP MB flash # Name, Type, SubType, Offset, Size, Flags # Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild nvs, data, nvs, 0x9000, 0x4000, otadata, data, ota, 0xd000, 0x2000, phy_init, data, phy, 0xf000, 0x1000, ota_0, app, ota_0, 0x10000, 0xC5000, ota_1, app, ota_1, 0x110000, 0xC5000, 7.3 esp_http_client_config_t config = {.url = url,.cert_pem = (char *)upgrade_server_cert_pem_start, }; esp_err_t ret = esp_https_ota(&config); 38 Chapter 7.

43 esp_http_client_config_t OTA URL CA CA esp_https_ota() API API URL GitHub CA GitHub CA 7.4 URL URL URL URL GitHub 1_hello_world curl -d '{"state":{"desired":{"ota_url":" espressif/esp-jumpstart/images/hello-world.bin"}}}' \ --tlsv1.2 --cert cloud_cfg/device.cert \ --key cloud_cfg/device.key \ deviceid.txt-file>/shadow python -mjson.tool Hello World URL 39

44 40 Chapter 7.

45 CHAPTER 8 [English] NVS NVS flash NVS NVS NVS NVS 8.1 NVS Flash flash Flash flash fctry NVS 7_mfg/partitions.csv 41

46 8.2 fctry NVS NVS API NVS NVS NVS #define MFG_PARTITION_NAME "fctry" /* Error checks removed for brevity */ nvs_handle fctry_handle; nvs_flash_init_partition(mfg_partition_name); nvs_open_from_partition(mfg_partition_name, "mfg_ns", NVS_READWRITE, &fctry_handle); fctry_handle NVS NVS fctry NVS : nvs_get_str(fctry_handle, "serial_no", buf, &buflen); fctry NVS 8.3 fctry 1: components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py NVS flash fctry CSV CSV NVS CSV 42 Chapter 8.

47 NVS NVS mfg_config.csv CSV CSV NVS bin $ python $IDF_PATH/components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py -- input mfg_config.csv --output my_mfg.bin --size 0x6000 my_mfg.bin NVS NVS bin flash $ $IDF_PATH/components/esptool_py/esptool/esptool.py --port $ESPPORT write_flash 0x my_mfg.bin ESP8266 ESP MB flash my_mfg.bin $ $IDF_PATH/components/esptool_py/esptool/esptool.py --port $ESPPORT write_flash 0x1D5000 my_mfg.bin

48 44 Chapter 8.

49 CHAPTER 9 [English] 9.1 TLS ESP-IDF mbedtls mbedtls TLS CA TLS CA / esp_tls API CA esp_tls_cfg_t cfg = {.cacert_pem_buf = server_root_cert_pem_start,.cacert_pem_bytes = server_root_cert_pem_end - server_root_cert_pem_start, }; ( ) 45

50 ( ) struct esp_tls *tls = esp_tls_conn_http_new(" &cfg); TLS CA CA CA CA $ openssl s_client -showcerts -connect < /dev/null 9.2 ESP ESP8266 ESP Secure Boot Secure Boot ESP32 flash Bootloader Bootloader ESP32 efuse Bootloader Bootloader ESP32 flash ESP32 BootROM efuse Bootloader 46 Chapter 9.

51 1: Secure Boot Bootloader BootROM Bootloader Bootloader Bootloader Secure Boot Secure Boot Flash flash ESP32 flash flash flash flash efuse AES AES efuse Secure Boot flash flash flash NVS NVS NVS ESP-IDF NVS AES-XTS flash NVS flash

52 2: flash nvs_partition_gen.py nvs_flash_read_security_cfg() API nvs_sec_cfg_t nvs_flash_secure_init() API nvs_flash_secure_init_partition() API NVS flash NVS NVS 48 Chapter 9.

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc 2 5 8 11 0 13 1. 13 2. 15 3. 18 1 23 1. 23 2. 26 3. 28 2 36 1. 36 2. 39 3. 42 4. 44 5. 49 6. 51 3 57 1. 57 2. 60 3. 64 4. 66 5. 70 6. 75 7. 83 8. 85 9. 88 10. 98 11. 103 12. 108 13. 112 4 115 1. 115 2.

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

ATI-2019安裝手冊-v

ATI-2019安裝手冊-v #1 ...02 Acronis True Image...03 Acronis True Image 2019...03 Acronis True Image 2019...04 ( ) 64...04 ( ) Acronis Account...05 ( )...05 ( ) Acronis True Image...05 ( ) Windows...06 1....06 2....08 ( )

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

Adobe AIR 安全性

Adobe AIR 安全性 ADOBE AIR http://help.adobe.com/zh_cn/legalnotices/index.html iii............................................................................................ 1............................................................................................

More information

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File 51 C 51 51 C C C C C C * 2003-3-30 pnzwzw@163.com C C C C KEIL uvision2 MCS51 PLM C VC++ 51 KEIL51 KEIL51 KEIL51 KEIL 2K DEMO C KEIL KEIL51 P 1 1 1 1-1 - 1 Project New Project 1 2 Windows 1 3 N C test

More information

EPSON

EPSON NPD6017-00 TC .... 6....6....6....8....8....8....10....12....14....14....15....15....15....15....17....17 IP....17 DNS Proxy....18....18 IP....18 LAN...22....25 Web Config ( )...25....26 /....26....30....32....33....34....36....37....37....38....38

More information

C 1

C 1 C homepage: xpzhangme 2018 5 30 C 1 C min(x, y) double C // min c # include # include double min ( double x, double y); int main ( int argc, char * argv []) { double x, y; if( argc!=

More information

C/C++语言 - 运算符、表达式和语句

C/C++语言 - 运算符、表达式和语句 C/C++ Table of contents 1. 2. 3. 4. C C++ 5. 6. 7. 1 i // shoe1.c: # include # define ADJUST 7. 64 # define SCALE 0. 325 int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe

More information

新・解きながら学ぶC言語

新・解きながら学ぶC言語 330!... 67!=... 42 "... 215 " "... 6, 77, 222 #define... 114, 194 #include... 145 %... 21 %... 21 %%... 21 %f... 26 %ld... 162 %lf... 26 %lu... 162 %o... 180 %p... 248 %s... 223, 224 %u... 162 %x... 180

More information

Azure_s

Azure_s Azure ? Azure Azure Windows Server Database Server Azure Azure Azure Azure Azure Azure Azure Azure OpenSource Azure IaaS Azure VM Windows Server Linux PaaS Azure ASP.NET PHP Node.js Python MS SQL MySQL

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

Online Help-Gemini

Online Help-Gemini 文 档 版 本 01 发 布 日 期 2016-03-15 华 为 技 术 有 限 公 司 目 录 目 录 1 快 速 上 手... 1 1.1 手 环 可 以 做 什 么... 1 1.2 为 手 环 充 电... 1 1.3 手 环 连 接 手 机... 3 1.4 点 亮 / 切 换 屏 幕... 4 1.5 认 识 图 标... 6 2 蓝 牙 通 话... 10 2.1 来 电 提 醒...

More information

新版 明解C言語入門編

新版 明解C言語入門編 328, 4, 110, 189, 103, 11... 318. 274 6 ; 10 ; 5? 48 & & 228! 61!= 42 ^= 66 _ 82 /= 66 /* 3 / 19 ~ 164 OR 53 OR 164 = 66 ( ) 115 ( ) 31 ^ OR 164 [] 89, 241 [] 324 + + 4, 19, 241 + + 22 ++ 67 ++ 73 += 66

More information

EPSON

EPSON NPD5493-00 TC .... 5....5....5....6 SSL/TLS....7....7 IP....8.... 8 Web Config...9 Web Config...10 EpsonNet Config...11 EpsonNet Config Windows...11 EpsonNet Config Windows...11 EpsonNet Config - Windows...

More information

新・明解C言語入門編『索引』

新・明解C言語入門編『索引』 !... 75!=... 48 "... 234 " "... 9, 84, 240 #define... 118, 213 #include... 148 %... 23 %... 23, 24 %%... 23 %d... 4 %f... 29 %ld... 177 %lf... 31 %lu... 177 %o... 196 %p... 262 %s... 242, 244 %u... 177

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information

PIC_SERVER (11) SMTP ( ) ( ) PIC_SERVER (10) SMTP PIC_SERVER (event driven) PIC_SERVER SMTP 1. E-

PIC_SERVER (11) SMTP  ( ) ( ) PIC_SERVER (10) SMTP  PIC_SERVER (event driven)  PIC_SERVER SMTP  1.  E- (2005-02-01) (2005-04-28) PIC_SERVER (10) SMTP E-mail PIC_SERVER (event driven) E-mail PIC_SERVER SMTP E-mail 1. E-mail E-mail 1 (1) (2) (3) (4) 1 1. 2 E-mail A E-mail B E-mail SMTP(Simple Mail Transfer

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

4 经 过 设 置 后,Zeppelin Air 无 法 连 接 到 我 的 网 络, 我 该 如 何 解 决 这 个 问 题? 下 载 并 安 装 最 新 的 固 件, 可 以 通 过 下 面 的 问 题 编 号 17 下 载 确 保 从 Apple App Store( 适 用 于 Mac ip

4 经 过 设 置 后,Zeppelin Air 无 法 连 接 到 我 的 网 络, 我 该 如 何 解 决 这 个 问 题? 下 载 并 安 装 最 新 的 固 件, 可 以 通 过 下 面 的 问 题 编 号 17 下 载 确 保 从 Apple App Store( 适 用 于 Mac ip Zeppelin Air 简 体 中 文 1 我 该 如 何 以 及 在 何 时 使 用 Bowers & Wilkins AirPlay Setup 应 用 程 序? Bowers & Wilkins AirPlay Setup 应 用 程 序 是 一 种 简 单 有 用 的 工 具, 可 以 通 过 无 线 方 式 设 置 和 管 理 您 的 Zeppelin Air 对 于 全 新 Zeppelin

More information

C/C++ 语言 - 循环

C/C++ 语言 - 循环 C/C++ Table of contents 7. 1. 2. while 3. 4. 5. for 6. 8. (do while) 9. 10. (nested loop) 11. 12. 13. 1 // summing.c: # include int main ( void ) { long num ; long sum = 0L; int status ; printf

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

51 C 51 isp 10 C PCB C C C C KEIL

51 C 51 isp 10   C   PCB C C C C KEIL http://wwwispdowncom 51 C " + + " 51 AT89S51 In-System-Programming ISP 10 io 244 CPLD ATMEL PIC CPLD/FPGA ARM9 ISP http://wwwispdowncom/showoneproductasp?productid=15 51 C C C C C ispdown http://wwwispdowncom

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

ESET Cyber Security Pro

ESET Cyber Security Pro 6. 5 ESET, spol. s r. o. ESET Cyber Secur i t y Pr o ESET, spol. s r. o. www. eset. com ESET, spol. s r. o. www. eset. com/ suppor t REV. 2017/ 10/ 13 ..................................... 5 ES ET Cy ber

More information

Seagate_Dashboard_UG.book

Seagate_Dashboard_UG.book Seagate Dashboard Seagate Dashboard 2013 Seagate Technology LLC. Seagate Seagate Technology Wave FreeAgent Seagate Technology LLC 1 GB 10 1 TB 10000 Seagate Seagate Technology LLC 10200 S. De Anza Boulevard

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的 4.2 使 用 Table Service Table Service 相 对 来 说 是 三 个 Storage Service 中 最 好 理 解 和 最 易 于 接 受 的, 它 主 要 用 来 存 储 结 构 化 数 据 但 是 Table Service 却 并 不 是 一 个 关 系 型 数 据 库 Table Service 由 两 个 部 分 组 成 :Table 和 Entity

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

C/C++语言 - C/C++数据

C/C++语言 - C/C++数据 C/C++ C/C++ Table of contents 1. 2. 3. 4. char 5. 1 C = 5 (F 32). 9 F C 2 1 // fal2cel. c: Convert Fah temperature to Cel temperature 2 # include < stdio.h> 3 int main ( void ) 4 { 5 float fah, cel ;

More information

C 1 # include <stdio.h> 2 int main ( void ) { 4 int cases, i; 5 long long a, b; 6 scanf ("%d", & cases ); 7 for (i = 0;i < cases ;i ++) 8 { 9

C 1 # include <stdio.h> 2 int main ( void ) { 4 int cases, i; 5 long long a, b; 6 scanf (%d, & cases ); 7 for (i = 0;i < cases ;i ++) 8 { 9 201 201 21 ( ) 1. C pa.c, pb.c, 2. C++ pa.cpp, pb.cpp Compilation Error long long cin scanf Time Limit Exceeded 1: A 1 B 1 C 5 D RPG 10 E 10 F 1 G II 1 1 201 201 C 1 # include 2 int main ( void

More information

穨UPSentry_SC_.PDF

穨UPSentry_SC_.PDF 3Phase UPSentry For: Windows 95/98/Me Windows NT40/2000/XP Table of Contents Chapter 0 Getting Started 0-1 0-1 0-1 0-2 Chapter 1 3Phase UPSentry 1-1 1-1 1-1 1-1 1-3 Chapter 2 3Phase UPSentry 2-1 Chapter

More information

FY.DOC

FY.DOC 高 职 高 专 21 世 纪 规 划 教 材 C++ 程 序 设 计 邓 振 杰 主 编 贾 振 华 孟 庆 敏 副 主 编 人 民 邮 电 出 版 社 内 容 提 要 本 书 系 统 地 介 绍 C++ 语 言 的 基 本 概 念 基 本 语 法 和 编 程 方 法, 深 入 浅 出 地 讲 述 C++ 语 言 面 向 对 象 的 重 要 特 征 : 类 和 对 象 抽 象 封 装 继 承 等 主

More information

目 录

目   录 山 东 地 税 智 慧 党 建 平 台 项 目 政 府 采 购 公 开 招 标 招 标 文 件 招 标 人 : 日 照 市 地 方 税 务 局 法 定 代 表 人 : 经 办 人 : 代 理 机 构 : 日 照 路 达 招 标 代 理 有 限 公 司 编 制 时 间 : 二 〇 一 六 年 六 月 目 录 第 一 章 招 标 公 告 ------------------------------------------------------3

More information

W. Richard Stevens UNIX Sockets API echo Sockets TCP OOB IO C struct C/C++ UNIX fork() select(2)/poll(2)/epoll(4) IO IO CPU 100% libevent UNIX CPU IO

W. Richard Stevens UNIX Sockets API echo Sockets TCP OOB IO C struct C/C++ UNIX fork() select(2)/poll(2)/epoll(4) IO IO CPU 100% libevent UNIX CPU IO Linux muduo C++ (giantchen@gmail.com) 2012-09-30 C++ TCP C++ x86-64 Linux TCP one loop per thread Linux native muduo C++ IT 5 C++ muduo 2 C++ C++ Primer 4 W. Richard Stevens UNIX Sockets API echo Sockets

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

版 權 2014 贊 雲 科 技 股 份 有 限 公 司 版 權 保 護 聲 明 未 經 贊 雲 科 技 股 份 有 限 公 司 書 面 許 可, 本 檔 任 何 部 分 的 內 容 不 得 被 複 製 或 抄 襲 用 於 任 何 目 的 本 檔 的 內 容 在 未 經 通 知 的 情 形 下 可

版 權 2014 贊 雲 科 技 股 份 有 限 公 司 版 權 保 護 聲 明 未 經 贊 雲 科 技 股 份 有 限 公 司 書 面 許 可, 本 檔 任 何 部 分 的 內 容 不 得 被 複 製 或 抄 襲 用 於 任 何 目 的 本 檔 的 內 容 在 未 經 通 知 的 情 形 下 可 版 權 2014 贊 雲 科 技 股 份 有 限 公 司 版 權 保 護 聲 明 未 經 贊 雲 科 技 股 份 有 限 公 司 書 面 許 可, 本 檔 任 何 部 分 的 內 容 不 得 被 複 製 或 抄 襲 用 於 任 何 目 的 本 檔 的 內 容 在 未 經 通 知 的 情 形 下 可 能 會 發 生 改 變, 敬 請 留 意 於 本 檔 中, 贊 雲 科 技 擁 有 專 利 權 商 標

More information

User Guide

User Guide HP Pocket Playlist 用 户 指 南 部 件 号 : 699916-AA2 第 二 版 : 2013 年 1 月 第 一 版 : 2012 年 12 月 Copyright 2012, 2013 Hewlett-Packard Development Company, L.P. Microsoft Windows 和 Windows Vista 是 Microsoft Corporation

More information

EPSON

EPSON NPD 4956-00 TC .... 5....5....5....6 SSL/TLS....7 IP....8....8....9 Web Config...10 Web Config...11 EpsonNet Config...12 EpsonNet Config Windows...13 EpsonNet Config Windows...13 EpsonNet Config - Windows...

More information

11N 无线宽带路由器

11N 无线宽带路由器 http://www.tenda.com.cn 1... 1 1.1... 1 1.2... 1 2... 3 2.1... 3 2.2... 3 2.3... 5 2.4... 6 2.5... 7 2.6... 9 2.6.1 无线基本设置... 9 2.6.2 无线加密设置... 9 2.7... 10 3... 18 3.1... 18 3.2... 19 3.2.1 ADSL 拨号上网设置...

More information

D-link用户手册.doc

D-link用户手册.doc 声 明 Copyright 1986-2013 版 权 所 有, 保 留 一 切 权 利 非 经 本 公 司 书 面 许 可, 任 何 单 位 和 个 人 不 得 擅 自 摘 抄 复 制 本 书 内 容 的 部 分 或 全 部, 并 不 得 以 任 何 形 式 传 播 由 于 产 品 版 本 升 级 或 其 它 原 因, 本 手 册 内 容 会 不 定 期 进 行 更 新, 为 获 得 最 新 版

More information

ESET Cyber Security

ESET Cyber Security 6. 5 ESET, spol. s r. o. ESET Cyber Secur i t y ESET, spol. s r. o. www. eset. com ESET, spol. s r. o. www. eset. com/ suppor t REV. 2017/ 10/ 13 ..................................... 5 ES ET Cy ber S

More information

tw_basics.book

tw_basics.book hp photosmart 7150 ê ñ ó ñ. Õ ä ä 1 ä.......................................... 1 ä.....................................................1 Ä........................................... 3 ú..................................................

More information

C/C++ - 字符串与字符串函数

C/C++ - 字符串与字符串函数 C/C++ Table of contents 1. 2. 3. 4. 1 char C 2 char greeting [50] = " How " " are " " you?"; char greeting [50] = " How are you?"; 3 printf ("\" Ready, go!\" exclaimed John."); " Ready, go!" exclaimed

More information

1 产 品 简 介... - 1-1.1 特 性... - 1-1.2 包 装... - 1-1.3 产 品 外 观... - 2-1.4 电 脑 系 统 要 求... - 3-1.5 硬 件 安 装... - 3-1.6 软 件 安 装... - 4-2 软 件 操 作... - 6-2.1 IP

1 产 品 简 介... - 1-1.1 特 性... - 1-1.2 包 装... - 1-1.3 产 品 外 观... - 2-1.4 电 脑 系 统 要 求... - 3-1.5 硬 件 安 装... - 3-1.6 软 件 安 装... - 4-2 软 件 操 作... - 6-2.1 IP 无 线 / 有 线 网 络 摄 像 机 使 用 说 明 书 黑 色 白 色 深 圳 市 富 泓 电 子 有 限 公 司 电 话 : +86-755-26509025 传 真 : +86-755-26509229 1 产 品 简 介... - 1-1.1 特 性... - 1-1.2 包 装... - 1-1.3 产 品 外 观... - 2-1.4 电 脑 系 统 要 求... - 3-1.5 硬

More information

EPSON

EPSON NPD5910-00 TC .... 6....6....6....8....8....8....10....12....14....14....15....15.... 15....15....17....17 IP....18 DNS Proxy....18....18 IP....19 LAN...22....25 Web Config ( )...25....26 /....26....30....32....36....37....38....40....40....41....41

More information

C

C C 2017 3 14 1. 2. 3. 4. 2/95 C 1. 3/95 C I 1 // talkback.c: 2 #include 3 #include 4 #define DENSITY 62.4 5 int main(void) 6 { 7 float weight, volume; 8 int size; 9 unsigned long letters;

More information

BOOL EnumWindows(WNDENUMPROC lparam); lpenumfunc, LPARAM (Native Interface) PowerBuilder PowerBuilder PBNI 2

BOOL EnumWindows(WNDENUMPROC lparam); lpenumfunc, LPARAM (Native Interface) PowerBuilder PowerBuilder PBNI 2 PowerBuilder 9 PowerBuilder Native Interface(PBNI) PowerBuilder 9 PowerBuilder C++ Java PowerBuilder 9 PBNI PowerBuilder Java C++ PowerBuilder NVO / PowerBuilder C/C++ PowerBuilder 9.0 PowerBuilder Native

More information

2013 C 1 # include <stdio.h> 2 int main ( void ) 3 { 4 int cases, a, b, i; 5 scanf ("%d", & cases ); 6 for (i = 0;i < cases ;i ++) 7 { 8 scanf ("%d %d

2013 C 1 # include <stdio.h> 2 int main ( void ) 3 { 4 int cases, a, b, i; 5 scanf (%d, & cases ); 6 for (i = 0;i < cases ;i ++) 7 { 8 scanf (%d %d 2013 18 ( ) 1. C pa.c, pb.c, 2. C++ pa.cpp, pb.cpp, Compilation Error cin scanf Time Limit Exceeded 1: A 5 B 5 C 5 D 5 E 5 F 5 1 2013 C 1 # include 2 int main ( void ) 3 { 4 int cases, a, b,

More information

C ONTENTS 目 录 热 点 舆 情 消 息 海 外 来 风 56 Win10 周 年 更 新 再 出 BUG: 竟 没 有 关 机 按 钮 57 谷 歌 为 MacOS 开 发 的 恶 意 软 件 嗅 探 器 即 将 完 成 58 数 据 安 全 公 司 Imperva 财 报 不 佳? 被

C ONTENTS 目 录 热 点 舆 情 消 息 海 外 来 风 56 Win10 周 年 更 新 再 出 BUG: 竟 没 有 关 机 按 钮 57 谷 歌 为 MacOS 开 发 的 恶 意 软 件 嗅 探 器 即 将 完 成 58 数 据 安 全 公 司 Imperva 财 报 不 佳? 被 C ONTENTS 目 录 2016 年 08 月 3 刊 总 第 292 期 主 办 中 国 信 息 安 全 博 士 网 协 办 国 工 信 科 技 发 展 ( 北 京 ) 有 限 公 司 安 全 圈 总 编 辑 刘 晴 执 行 主 编 扶 苏 编 辑 部 焦 耐 龙 宋 玉 婷 美 术 编 辑 迟 涛 特 约 记 者 边 锋 郭 子 扬 网 址 www.secdoctor.com 广 告 发 行

More information

Microsoft Word - 正文.doc

Microsoft Word - 正文.doc 1 2 1 2 3 4 5 6 7 8 9 10 3 1 150 2 150 1 1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.4 1.4.1 CPU 1.4.2 I/O 1.4.3 I/O 1.5 1.5.1 CISC RISC 1.5.2 1.5.3 1.6 1.6.1 1.6.2 N 1.6.3 2 2.1 2.1.1 2.1.2 2.1.3

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

Motor Setup iphone [Motor Setup]

Motor Setup iphone [Motor Setup] AC MINAS Panasonic Motor Setup App Ver. 1.0 ios 7.09.3 AC MINAS [Panasonic Motor Setup App Ver.1.0]([Motor Setup]) (35 ) [iphone]([ios]) [iphone] USB [Windows],[PANATERM] [PANATERM] [ LAN DV0PM20105] https://industrial.panasonic.cn/ea/products/motors-compres

More information

新版 明解C++入門編

新版 明解C++入門編 511!... 43, 85!=... 42 "... 118 " "... 337 " "... 8, 290 #... 71 #... 413 #define... 128, 236, 413 #endif... 412 #ifndef... 412 #if... 412 #include... 6, 337 #undef... 413 %... 23, 27 %=... 97 &... 243,

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

<4D6963726F736F667420576F7264202D2032303132C4EABCC6CBE3BBFAB4F3C8FCCDA8D6AA303931352E646F63>

<4D6963726F736F667420576F7264202D2032303132C4EABCC6CBE3BBFAB4F3C8FCCDA8D6AA303931352E646F63> 创 关 于 举 办 2012 年 ( 第 四 届 ) 上 海 市 大 学 解 新 决 精 实 为 神 际 贯 和 问 彻 创 题 实 新 的 施 实 综 教 践 合 育 能 水 部 力 平, 高 调 现 等 动 决 学 大 定 校 学 举 本 生 办 科 学 2012 教 习 学 计 质 年 算 量 ( 机 与 第 技 教 四 术 学 届 的 改 ) 积 革 上 极 工 海 性 程 市,, 大 提

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

机 密

机 密 中 国 科 学 技 术 协 会 文 件 科 协 发 普 字 2016 20 号 中 国 科 协 关 于 印 发 中 国 科 协 科 普 发 展 规 划 (2016-2020 年 ) 的 通 知 各 全 国 学 会 协 会 研 究 会, 各 省 自 治 区 直 辖 市 副 省 级 城 市 科 协, 新 疆 生 产 建 设 兵 团 科 协, 各 有 关 单 位 : 根 据 中 华 人 民 共 和 国 国

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

SAPIDO GR-1733 無線寬頻分享器

SAPIDO GR-1733 無線寬頻分享器 1 版 權 聲 明... 4 產 品 保 固 說 明... 4 保 固 期 限... 4 維 修 辦 法... 5 服 務 條 款... 5 注 意 事 項... 6 低 功 率 電 波 輻 射 性 電 機 管 理 辦 法... 6 CE 標 誌 聲 明... 6 無 線 功 能 注 意 事 項... 6 1 產 品 特 點 介 紹... 7 1.1 LED 指 示 燈 功 能 說 明... 8 1.2

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

目 录 前 言... 4 校 园 网 络 篇... 5 第 一 章 交 大 校 园 网... 6 第 二 章 有 线 网 络... 7 第 三 章 无 线 网 络 (WiFi)... 11 第 四 章 网 络 计 费 系 统... 13 第 五 章 虚 拟 专 用 网 (VPN)... 15 第 六

目 录 前 言... 4 校 园 网 络 篇... 5 第 一 章 交 大 校 园 网... 6 第 二 章 有 线 网 络... 7 第 三 章 无 线 网 络 (WiFi)... 11 第 四 章 网 络 计 费 系 统... 13 第 五 章 虚 拟 专 用 网 (VPN)... 15 第 六 北 京 交 通 大 学 信 息 系 统 入 门 指 南 教 职 工 必 读 信 息 化 办 公 室 2016 年 4 月 1 目 录 前 言... 4 校 园 网 络 篇... 5 第 一 章 交 大 校 园 网... 6 第 二 章 有 线 网 络... 7 第 三 章 无 线 网 络 (WiFi)... 11 第 四 章 网 络 计 费 系 统... 13 第 五 章 虚 拟 专 用 网 (VPN)...

More information

1

1 1 2 3 4 5 GNUDebugger 6 7 void main(int argc, char **argv){ vulncpy(argv[1]); return; } void vulncpy(char *a){ char buf[30]; strcpy(buf, a); return; } *argv[1] buf Shellcode *argv[1]... &buf &buf 8 strcpy

More information

Microsoft Word - Index.doc

Microsoft Word - Index.doc Programmer: B95902048 B95902085 WaveData #include ham // gfx2gba -fsrc -m -pb.pal -t8 water.bmp bg1.bmp bg2.bmp gameover.bmp water_atked.bmp #include "gfx/bg.pal.c" #include "gfx/bg.raw.c"

More information

untitled

untitled 1 Outline 數 料 數 數 列 亂數 練 數 數 數 來 數 數 來 數 料 利 料 來 數 A-Z a-z _ () 不 數 0-9 數 不 數 SCHOOL School school 數 讀 school_name schoolname 易 不 C# my name 7_eleven B&Q new C# (1) public protected private params override

More information

untitled

untitled Lwip Swedish Institute of Computer Science February 20, 2001 Adam Dunkels adam@sics.se (QQ: 10205001) (QQ: 329147) (QQ:3232253) (QQ:3232253) QQ ARM TCPIP LCD10988210 LWIP TCP/IP LWIP LWIP lwip API lwip

More information

02

02 Thinking in C++: Volume One: Introduction to Standard C++, Second Edition & Volume Two: Practical Programming C++ C C++ C++ 3 3 C C class C++ C++ C++ C++ string vector 2.1 interpreter compiler 2.1.1 BASIC

More information

目 录 第 五 部 分 第 六 部 分 第 七 部 分 第 八 部 分 投 标 邀 请 投 标 人 须 知 附 表 评 标 方 法 和 评 分 细 则 项 目 需 求 和 技 术 方 案 要 求 1

目 录 第 五 部 分 第 六 部 分 第 七 部 分 第 八 部 分 投 标 邀 请 投 标 人 须 知 附 表 评 标 方 法 和 评 分 细 则 项 目 需 求 和 技 术 方 案 要 求 1 政 府 采 购 招 标 文 件 ( 服 务 类 ) 第 二 册 项 目 编 号 :SDGP2016-224 项 目 名 称 : 公 共 法 律 服 务 系 统 开 发 项 目 包 号 :A1 山 东 省 省 级 机 关 政 府 采 购 中 心 目 录 第 五 部 分 第 六 部 分 第 七 部 分 第 八 部 分 投 标 邀 请 投 标 人 须 知 附 表 评 标 方 法 和 评 分 细 则 项 目

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

bingdian001.com

bingdian001.com TSM12M TSM12 STM8L152C6, STM8L152R8 MSP430F5325 whym1987@126.com! /******************************************************************************* * : TSM12.c * : * : 2013/10/21 * : TSM12, STM8L f(sysclk)

More information

EPSON

EPSON NPD5761-00 TC .... 6....6....6....8....8....10....11....11....12....12....13....13 IP....13 DNS....14....14....15....15.... 21....21....21....22.... 23....24....25....26 Wi-Fi Direct (Simple AP)....26

More information

Ch03_嵌入式作業系統建置_01

Ch03_嵌入式作業系統建置_01 Chapter 3 CPU Motorola DragonBall ( Palm PDA) MIPS ( CPU) Hitachi SH (Sega DreamCast CPU) ARM StrongARM CPU CPU RISC (reduced instruction set computer ) CISC (complex instruction set computer ) DSP(digital

More information

<4D6963726F736F667420576F7264202D20312D3120D5D0B9C9CBB5C3F7CAE9A3A8C9CFBBE1B8E5A3A92E646F63>

<4D6963726F736F667420576F7264202D20312D3120D5D0B9C9CBB5C3F7CAE9A3A8C9CFBBE1B8E5A3A92E646F63> 创 业 板 投 资 风 险 本 次 股 票 发 行 后 拟 在 创 业 板 市 场 上 市, 该 市 场 具 有 较 高 的 投 资 风 险 创 业 板 公 司 具 有 业 绩 不 稳 定 经 营 风 险 高 退 市 风 险 大 等 特 点, 投 资 者 面 临 较 大 的 市 场 风 险 投 资 者 应 充 分 了 解 创 业 板 市 场 的 投 资 风 险 及 本 公 司 所 披 露 的 风 险

More information

pcdashboard.book

pcdashboard.book Junos Pulse Mobile Security Dashboard 3.0 2011 11 R2 2011, Juniper Networks, Inc. Junos Pulse Mobile Security Dashboard Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 408-745-2000

More information

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd.

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd. Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7758 10 2004 9 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun

More information

an153f

an153f 153 2016 1 Linduino Michael Jones (PSM) LTpowerPlay (BMC) PSM PSM PMBus PMBus SMBus SMBus I2C PSM BMC Linduino (API) PSM Linduino PSM BMC BMC Robust PMBus System Software for the LTC3880) I 2 C / SMBus

More information

产品手册

产品手册 Norton 360TM 产 品 手 册 关 爱 环 境, 我 们 应 尽 的 责 任 Symantec 已 移 除 本 手 册 的 封 面, 以 降 低 对 环 境 的 影 响 Norton 360 产 品 手 册 本 手 册 介 绍 的 软 件 基 于 授 权 许 可 协 议 提 供, 且 只 能 在 遵 守 协 议 条 款 的 前 提 下 使 用 文 档 版 本 21.0 Copyright

More information

Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i

Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i 深 圳 大 学 经 济 学 院 学 代 委 执 事 指 南 发 布 0.0.1 深 圳 大 学 经 济 学 院 学 代 委 2016 年 05 月 25 日 Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i ii 深 圳 大 学 经 济 学 院 学 代 委 执 事 指 南, 发 布 0.0.1

More information

2005 3

2005 3 Text 2009.4 hongqn@douban.com 2005 3 2.8M 1/4 20M / 500~600/sec 23 PC (1U*15/2U*8) 12 38G memcached 1U (frodo) AMD Athlon 64 1.8GHz 1G 160G SATA*2 Gentoo Linux MySQL 5 Quixote (a Python web framework)

More information

Secoway SVN3000技术建议书V1

Secoway SVN3000技术建议书V1 华 为 BYOD 移 动 办 公 安 全 解 决 方 案 白 皮 书 华 为 技 术 有 限 公 司 二 〇 一 二 年 八 月 第 1 页, 共 26 页 2012 保 留 一 切 权 利 非 经 本 公 司 书 面 许 可, 仸 何 单 位 和 个 人 丌 得 擅 自 摘 抁 复 制 本 文 档 内 容 的 部 分 或 全 部, 幵 丌 得 以 仸 何 形 式 传 播 商 标 声 明 和 其 他

More information

Microsoft Word zw

Microsoft Word zw 第 1 章 Android 概述 学习目标 : Android Android Android Studio Android Android APK 1.1 1. 智能手机的定义 Smartphone 2. 智能手机的发展 1973 4 3 PC IBM 1994 IBM Simon PDA PDA Zaurus OS 1996 Nokia 9000 Communicator Nokia 9000

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

Wireless Plus.book

Wireless Plus.book Seagate Wireless Plus 用 户 指 南 型 号 1AYBA2 Seagate Wireless Plus 用 户 指 南 2013 Seagate Technology LLC. 保 留 所 有 权 利 Seagate Seagate Technology Wave 徽 标 和 Seagate Media 是 Seagate Technology LLC 或 其 某 个 子 公

More information

Junos Pulse Mobile Security R1 2012, Juniper Networks, Inc.

Junos Pulse Mobile Security R1 2012, Juniper Networks, Inc. Junos Pulse Mobile Security 4.0 2012 6 R1 2012, Juniper Networks, Inc. Junos Pulse Mobile Security Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 408-745-2000 www.juniper.net

More information

软件概述

软件概述 Cobra DocGuard BEIJING E-SAFENET SCIENCE & TECHNOLOGY CO.,LTD. 2003 3 20 35 1002 010-82332490 http://www.esafenet.com Cobra DocGuard White Book 1 1....4 1.1...4 1.2 CDG...4 1.3 CDG...4 1.4 CDG...5 1.5

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

目录

目录 ALTERA_CPLD... 3 11SY_03091... 3 12SY_03091...4....5 21 5 22...8 23..10 24..12 25..13..17 3 1EPM7128SLC.......17 3 2EPM7032SLC.......18 33HT46R47......19..20 41..20 42. 43..26..27 5151DEMO I/O...27 52A/D89C51...28

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

新・解きながら学ぶJava

新・解きながら学ぶJava 481! 41, 74!= 40, 270 " 4 % 23, 25 %% 121 %c 425 %d 121 %o 121 %x 121 & 199 && 48 ' 81, 425 ( ) 14, 17 ( ) 128 ( ) 183 * 23 */ 3, 390 ++ 79 ++ 80 += 93 + 22 + 23 + 279 + 14 + 124 + 7, 148, 16 -- 79 --

More information

LePad A 使用说明书

LePad A 使用说明书 LePad A1-07 V1.0 LePad A1-07 LePad A1-07 - 1 LePad A1-07 1-1 1-2 1-3 LePad A1-07 1-4 1-5 / 1-6 1-7 4 1-8 1-9 1-10 1-11 1-12 1-13 2 2-1 2-2 3 3-1 3-2 3-3 http://www.lenovomobile.com/lepad/series_a/gudie/contents.html[2011/10/16

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Cisco WebEx Meetings Server 2.6 版常见问题解答

Cisco WebEx Meetings Server 2.6 版常见问题解答 Cisco WebEx Meetings Server 2.6 版 常 见 问 题 解 答 介 绍 2 应 用 程 序 和 文 档 共 享 2 主 持 加 入 和 设 置 会 议 2 在 Chrome 和 Firefox 上 加 入 WebEx 会 议 或 播 放 会 议 录 制 文 件 4 适 用 于 移 动 设 备 的 Cisco WebEx 4 下 载 Cisco WebEx 应 用 程 序

More information

22. PTC 能 为 用 户 托 管 ThingWorx 吗?... 7 23. ThingWorx 可 配 置 在 什 么 方 面?... 7 24. 在 哪 里 可 看 到 ThingWorx 演 示 视 频?... 7 25. 什 么 材 料 和 课 程 可 用 来 支 持 我 的 物 联

22. PTC 能 为 用 户 托 管 ThingWorx 吗?... 7 23. ThingWorx 可 配 置 在 什 么 方 面?... 7 24. 在 哪 里 可 看 到 ThingWorx 演 示 视 频?... 7 25. 什 么 材 料 和 课 程 可 用 来 支 持 我 的 物 联 PTC 物 联 网 学 术 项 目 常 见 问 答 目 录 1. PTC 是 什 么 样 的 公 司?... 1 2. 物 联 网 是 什 么?... 1 3. ThingWorx 是 什 么?... 1 4. ThingWorx 价 值 定 位 是 什 么?... 1 5. PTC 物 联 网 学 术 项 目 是 什 么?... 2 6. PTC 物 联 网 学 术 项 目 有 什 么 好 处?...

More information