Committer:
leothedragon
Date:
Sun Apr 18 15:20:23 2021 +0000
Revision:
0:25fa8795676b
DS

Who changed what in which revision?

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