Simple Mbed Cloud client application using features of K64F including Wi-Fi and SD Card

Fork of mbed-cloud-example_GR-LYCHEE by Renesas

Committer:
MACRUM
Date:
Mon Oct 08 15:54:11 2018 +0000
Revision:
15:a0fb0c1c32a0
Parent:
14:34eab7c4e26d
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MarceloSalazar 0:e13a8a944e25 1 {
MarceloSalazar 0:e13a8a944e25 2 "macros": [
MarceloSalazar 0:e13a8a944e25 3 "MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\"",
MarceloSalazar 9:9fade4bb2774 4 "PAL_USER_DEFINED_CONFIGURATION=\"sotp_fs_config_MbedOS.h\"",
MarceloSalazar 0:e13a8a944e25 5 "MBED_CLIENT_USER_CONFIG_FILE=\"mbed_cloud_client_user_config.h\"",
MarceloSalazar 0:e13a8a944e25 6 "MBED_CLOUD_CLIENT_USER_CONFIG_FILE=\"mbed_cloud_client_user_config.h\"",
MarceloSalazar 0:e13a8a944e25 7 "PAL_DTLS_PEER_MIN_TIMEOUT=5000",
MACRUM 11:924e1a1bb03e 8 "MBED_CONF_APP_MAIN_STACK_SIZE=8000",
MarceloSalazar 9:9fade4bb2774 9 "ARM_UC_USE_PAL_BLOCKDEVICE=1",
MarceloSalazar 9:9fade4bb2774 10 "MBED_CLOUD_CLIENT_UPDATE_STORAGE=ARM_UCP_FLASHIAP_BLOCKDEVICE"
MarceloSalazar 0:e13a8a944e25 11 ],
MarceloSalazar 0:e13a8a944e25 12 "target_overrides": {
MarceloSalazar 0:e13a8a944e25 13 "*": {
MarceloSalazar 0:e13a8a944e25 14 "platform.stdio-baud-rate": 115200,
MarceloSalazar 0:e13a8a944e25 15 "platform.stdio-convert-newlines": true,
MarceloSalazar 9:9fade4bb2774 16 "update-client.storage-address" : "(1024*1024*64)",
MarceloSalazar 9:9fade4bb2774 17 "update-client.storage-size" : "(1024*1024*2)",
MarceloSalazar 9:9fade4bb2774 18 "update-client.storage-locations": "1",
MarceloSalazar 0:e13a8a944e25 19 "mbed-trace.enable": null
MarceloSalazar 10:d88cd97a42fa 20 },
MACRUM 15:a0fb0c1c32a0 21 "K64F": {
MACRUM 15:a0fb0c1c32a0 22 "sotp-section-1-address" : "0xFE000",
MACRUM 15:a0fb0c1c32a0 23 "sotp-section-1-size" : "0x1000",
MACRUM 15:a0fb0c1c32a0 24 "sotp-section-2-address" : "0xFF000",
MACRUM 15:a0fb0c1c32a0 25 "sotp-section-2-size" : "0x1000",
MACRUM 15:a0fb0c1c32a0 26 "sotp-num-sections" : 2,
MACRUM 15:a0fb0c1c32a0 27 "wifi-en" : "NC",
MACRUM 15:a0fb0c1c32a0 28 "wifi-io0" : "NC",
MACRUM 15:a0fb0c1c32a0 29 "wifi-tx" : "D1",
MACRUM 15:a0fb0c1c32a0 30 "wifi-rx" : "D0"
MACRUM 15:a0fb0c1c32a0 31 },
MACRUM 11:924e1a1bb03e 32 "GR_LYCHEE": {
MACRUM 11:924e1a1bb03e 33 "sotp-section-1-address" : "0x187FE000",
MarceloSalazar 10:d88cd97a42fa 34 "sotp-section-1-size" : "0x1000",
MACRUM 11:924e1a1bb03e 35 "sotp-section-2-address" : "0x187FF000",
MarceloSalazar 10:d88cd97a42fa 36 "sotp-section-2-size" : "0x1000",
MACRUM 11:924e1a1bb03e 37 "sotp-num-sections" : 2,
MACRUM 11:924e1a1bb03e 38 "wifi-en" : "P5_3",
MACRUM 11:924e1a1bb03e 39 "wifi-io0" : "P3_14",
MACRUM 11:924e1a1bb03e 40 "wifi-tx" : "P7_1",
MACRUM 11:924e1a1bb03e 41 "wifi-rx" : "P0_1"
MarceloSalazar 0:e13a8a944e25 42 }
MarceloSalazar 0:e13a8a944e25 43 },
MarceloSalazar 0:e13a8a944e25 44 "config": {
MarceloSalazar 9:9fade4bb2774 45 "format-storage-layer-on-error": {
MarceloSalazar 9:9fade4bb2774 46 "help": "Whether to format the storage layer when it cannot be read - always disable for production devices!",
MarceloSalazar 9:9fade4bb2774 47 "value": 1
MarceloSalazar 9:9fade4bb2774 48 },
MarceloSalazar 0:e13a8a944e25 49 "developer-mode": {
MarceloSalazar 0:e13a8a944e25 50 "help": "Enable Developer mode to skip Factory enrollment",
MarceloSalazar 0:e13a8a944e25 51 "value": 1
MarceloSalazar 9:9fade4bb2774 52 },
MACRUM 14:34eab7c4e26d 53 "wifi-ssid": {
MACRUM 14:34eab7c4e26d 54 "help": "WiFi SSID",
MACRUM 14:34eab7c4e26d 55 "value": "\"SSID\""
MACRUM 14:34eab7c4e26d 56 },
MACRUM 14:34eab7c4e26d 57 "wifi-password": {
MACRUM 14:34eab7c4e26d 58 "help": "WiFi Password",
MACRUM 14:34eab7c4e26d 59 "value": "\"PASSWORD\""
MACRUM 14:34eab7c4e26d 60 },
MarceloSalazar 9:9fade4bb2774 61 "sotp-section-1-address": {
MarceloSalazar 9:9fade4bb2774 62 "help": "Flash sector address for SOTP sector 1",
MarceloSalazar 9:9fade4bb2774 63 "macro_name": "PAL_INTERNAL_FLASH_SECTION_1_ADDRESS",
MarceloSalazar 9:9fade4bb2774 64 "value": null
MarceloSalazar 9:9fade4bb2774 65 },
MarceloSalazar 9:9fade4bb2774 66 "sotp-section-1-size": {
MarceloSalazar 9:9fade4bb2774 67 "help": "Flash sector size for SOTP sector 1",
MarceloSalazar 9:9fade4bb2774 68 "macro_name": "PAL_INTERNAL_FLASH_SECTION_1_SIZE",
MarceloSalazar 9:9fade4bb2774 69 "value": null
MarceloSalazar 9:9fade4bb2774 70 },
MarceloSalazar 9:9fade4bb2774 71 "sotp-section-2-address": {
MarceloSalazar 9:9fade4bb2774 72 "help": "Flash sector address for SOTP sector 2",
MarceloSalazar 9:9fade4bb2774 73 "macro_name": "PAL_INTERNAL_FLASH_SECTION_2_ADDRESS",
MarceloSalazar 9:9fade4bb2774 74 "value": null
MarceloSalazar 9:9fade4bb2774 75 },
MarceloSalazar 9:9fade4bb2774 76 "sotp-section-2-size": {
MarceloSalazar 9:9fade4bb2774 77 "help": "Flash sector size for SOTP sector 2",
MarceloSalazar 9:9fade4bb2774 78 "macro_name": "PAL_INTERNAL_FLASH_SECTION_2_SIZE",
MarceloSalazar 9:9fade4bb2774 79 "value": null
MarceloSalazar 10:d88cd97a42fa 80 },
MarceloSalazar 10:d88cd97a42fa 81 "sotp-num-sections": {
MarceloSalazar 10:d88cd97a42fa 82 "help": "Number of SOTP sections",
MarceloSalazar 10:d88cd97a42fa 83 "macro_name": "PAL_INT_FLASH_NUM_SECTIONS",
MarceloSalazar 10:d88cd97a42fa 84 "value": null
MACRUM 11:924e1a1bb03e 85 },
MACRUM 11:924e1a1bb03e 86 "wifi-tx": {
MACRUM 11:924e1a1bb03e 87 "help": "TX pin for serial connection to external device",
MACRUM 11:924e1a1bb03e 88 "value": "D1"
MACRUM 11:924e1a1bb03e 89 },
MACRUM 11:924e1a1bb03e 90 "wifi-rx": {
MACRUM 11:924e1a1bb03e 91 "help": "RX pin for serial connection to external device",
MACRUM 11:924e1a1bb03e 92 "value": "D0"
MACRUM 11:924e1a1bb03e 93 },
MACRUM 11:924e1a1bb03e 94 "wifi-en": {
MACRUM 11:924e1a1bb03e 95 "help": "EN pin for ESP32",
MACRUM 11:924e1a1bb03e 96 "value": "NC"
MACRUM 11:924e1a1bb03e 97 },
MACRUM 11:924e1a1bb03e 98 "wifi-io0": {
MACRUM 11:924e1a1bb03e 99 "help": "IO0 pin for ESP32",
MACRUM 11:924e1a1bb03e 100 "value": "NC"
MarceloSalazar 0:e13a8a944e25 101 }
MarceloSalazar 0:e13a8a944e25 102 }
MarceloSalazar 0:e13a8a944e25 103 }