Simple Mbed Cloud client application using features of K64 & K66 including Ethernet and SD Card

Fork of mbed-cloud-example_K64_K66 by Mac Lobdell

DEPRECATED

This example application is not maintained and not recommended. It uses an old version of Mbed OS, Pelion DM, and Arm toolchain. It doesn't work with Mbed Studio.

Please use: https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-pelion/

Committer:
mmahadevan
Date:
Fri Oct 12 02:41:34 2018 +0000
Revision:
24:1c8be247f7fe
Parent:
6:254a7e7fbef1
the sd-driver needs to be removed to avoid conflict with the driver that is in mbed-os now.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MarceloSalazar 0:e13a8a944e25 1 /*
MarceloSalazar 0:e13a8a944e25 2 * Copyright (c) 2017 ARM Limited. All rights reserved.
MarceloSalazar 0:e13a8a944e25 3 * SPDX-License-Identifier: Apache-2.0
MarceloSalazar 0:e13a8a944e25 4 * Licensed under the Apache License, Version 2.0 (the License); you may
MarceloSalazar 0:e13a8a944e25 5 * not use this file except in compliance with the License.
MarceloSalazar 0:e13a8a944e25 6 * You may obtain a copy of the License at
MarceloSalazar 0:e13a8a944e25 7 *
MarceloSalazar 0:e13a8a944e25 8 * http://www.apache.org/licenses/LICENSE-2.0
MarceloSalazar 0:e13a8a944e25 9 *
MarceloSalazar 0:e13a8a944e25 10 * Unless required by applicable law or agreed to in writing, software
MarceloSalazar 0:e13a8a944e25 11 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
MarceloSalazar 0:e13a8a944e25 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
MarceloSalazar 0:e13a8a944e25 13 * See the License for the specific language governing permissions and
MarceloSalazar 0:e13a8a944e25 14 * limitations under the License.
MarceloSalazar 0:e13a8a944e25 15 */
MarceloSalazar 0:e13a8a944e25 16 #ifndef __MBED_CLOUD_DEV_CREDENTIALS_H__
MarceloSalazar 0:e13a8a944e25 17 #define __MBED_CLOUD_DEV_CREDENTIALS_H__
MarceloSalazar 0:e13a8a944e25 18
bridadan 6:254a7e7fbef1 19 #if MBED_CONF_APP_DEVELOPER_MODE == 1
bridadan 6:254a7e7fbef1 20 #error "Replace mbed_cloud_dev_credentials.c with your own developer cert."
bridadan 6:254a7e7fbef1 21 #endif
bridadan 6:254a7e7fbef1 22
MarceloSalazar 0:e13a8a944e25 23 #include <inttypes.h>
MarceloSalazar 0:e13a8a944e25 24
bridadan 6:254a7e7fbef1 25 const char MBED_CLOUD_DEV_BOOTSTRAP_ENDPOINT_NAME[] = "";
bridadan 6:254a7e7fbef1 26 const char MBED_CLOUD_DEV_ACCOUNT_ID[] = "";
bridadan 6:254a7e7fbef1 27 const char MBED_CLOUD_DEV_BOOTSTRAP_SERVER_URI[] = "";
MarceloSalazar 0:e13a8a944e25 28
bridadan 6:254a7e7fbef1 29 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE[] =
bridadan 6:254a7e7fbef1 30 { 0x0 };
MarceloSalazar 0:e13a8a944e25 31
bridadan 6:254a7e7fbef1 32 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE[] =
bridadan 6:254a7e7fbef1 33 { 0x0 };
MarceloSalazar 0:e13a8a944e25 34
bridadan 6:254a7e7fbef1 35 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY[] =
bridadan 6:254a7e7fbef1 36 { 0x0 };
MarceloSalazar 0:e13a8a944e25 37
MarceloSalazar 0:e13a8a944e25 38 const char MBED_CLOUD_DEV_MANUFACTURER[] = "dev_manufacturer";
MarceloSalazar 0:e13a8a944e25 39
MarceloSalazar 0:e13a8a944e25 40 const char MBED_CLOUD_DEV_MODEL_NUMBER[] = "dev_model_num";
MarceloSalazar 0:e13a8a944e25 41
MarceloSalazar 0:e13a8a944e25 42 const char MBED_CLOUD_DEV_SERIAL_NUMBER[] = "0";
MarceloSalazar 0:e13a8a944e25 43
MarceloSalazar 0:e13a8a944e25 44 const char MBED_CLOUD_DEV_DEVICE_TYPE[] = "dev_device_type";
MarceloSalazar 0:e13a8a944e25 45
MarceloSalazar 0:e13a8a944e25 46 const char MBED_CLOUD_DEV_HARDWARE_VERSION[] = "dev_hardware_version";
MarceloSalazar 0:e13a8a944e25 47
MarceloSalazar 0:e13a8a944e25 48 const uint32_t MBED_CLOUD_DEV_MEMORY_TOTAL_KB = 0;
MarceloSalazar 0:e13a8a944e25 49 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE);
MarceloSalazar 0:e13a8a944e25 50 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE);
MarceloSalazar 0:e13a8a944e25 51 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY);
MarceloSalazar 0:e13a8a944e25 52
MarceloSalazar 0:e13a8a944e25 53 #endif //__MBED_CLOUD_DEV_CREDENTIALS_H__