
Example program running mbedClient over UbloxATCellularInterface or OnboardCellularInterface for the C030 platform.
Dependencies: ublox-cellular-base ublox-at-cellular-interface ublox-ppp-cellular-interface ublox-at-cellular-interface-n2xx ublox-cellular-base-n2xx
security.h
- Committer:
- rob.meades@u-blox.com
- Date:
- 2017-06-09
- Revision:
- 1:9f355da25904
File content as of revision 1:9f355da25904:
/* * Copyright (c) 2015 ARM Limited. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* IMPORTANT: THIS IS A DUMMY FILE! To use this example you must first * register with the mbed Connector here: * * https://connector.mbed.com/ * * ...and generate your own copy of the file security.h, replacing this file * with that one and recompiling/downloading the code to your board. */ #ifndef __SECURITY_H__ #define __SECURITY_H__ #include <inttypes.h> #error THIS IS A DUMMY FILE! Generate your own one by logging into https://connector.mbed.com/. #define MBED_DOMAIN "" #define MBED_ENDPOINT_NAME "" const uint8_t SERVER_CERT[] = ""; const uint8_t CERT[] = ""; const uint8_t KEY[] = ""; #endif //__SECURITY_H__