Generic example for any board with IDMW0xM1 shield

Committer:
Wolfgang Betz
Date:
Thu May 10 09:50:02 2018 +0200
Revision:
52:0dd6b2df9805
Parent:
30:ce32e66cd54c
Merge branch 'betzw_wb' into arm_deliv_wb

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
Wolfgang Betz 30:ce32e66cd54c 19 #if MBED_CONF_APP_DEVELOPER_MODE == 1
Wolfgang Betz 30:ce32e66cd54c 20 #error "Replace mbed_cloud_dev_credentials.c with your own developer cert."
Wolfgang Betz 30:ce32e66cd54c 21 #endif
Wolfgang Betz 30:ce32e66cd54c 22
MarceloSalazar 0:e13a8a944e25 23 #include <inttypes.h>
MarceloSalazar 0:e13a8a944e25 24
Wolfgang Betz 30:ce32e66cd54c 25 const char MBED_CLOUD_DEV_BOOTSTRAP_ENDPOINT_NAME[] = "";
Wolfgang Betz 30:ce32e66cd54c 26 const char MBED_CLOUD_DEV_ACCOUNT_ID[] = "";
Wolfgang Betz 30:ce32e66cd54c 27 const char MBED_CLOUD_DEV_BOOTSTRAP_SERVER_URI[] = "";
MarceloSalazar 0:e13a8a944e25 28
Wolfgang Betz 30:ce32e66cd54c 29 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE[] =
Wolfgang Betz 30:ce32e66cd54c 30 { 0x0 };
MarceloSalazar 0:e13a8a944e25 31
Wolfgang Betz 30:ce32e66cd54c 32 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE[] =
Wolfgang Betz 30:ce32e66cd54c 33 { 0x0 };
MarceloSalazar 0:e13a8a944e25 34
Wolfgang Betz 30:ce32e66cd54c 35 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY[] =
Wolfgang Betz 30:ce32e66cd54c 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__