still need some modification

Dependencies:   mbed-http DebounceIn PinDetect OneButton

Committer:
nadaanas1985
Date:
Mon May 06 11:24:39 2019 +0000
Revision:
2:1d2a43e66b41
Parent:
0:454abaa26f3c
updated ip

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nadaanas1985 0:454abaa26f3c 1 /*
nadaanas1985 0:454abaa26f3c 2 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
nadaanas1985 0:454abaa26f3c 3 * SPDX-License-Identifier: Apache-2.0
nadaanas1985 0:454abaa26f3c 4 *
nadaanas1985 0:454abaa26f3c 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
nadaanas1985 0:454abaa26f3c 6 * not use this file except in compliance with the License.
nadaanas1985 0:454abaa26f3c 7 * You may obtain a copy of the License at
nadaanas1985 0:454abaa26f3c 8 *
nadaanas1985 0:454abaa26f3c 9 * http://www.apache.org/licenses/LICENSE-2.0
nadaanas1985 0:454abaa26f3c 10 *
nadaanas1985 0:454abaa26f3c 11 * Unless required by applicable law or agreed to in writing, software
nadaanas1985 0:454abaa26f3c 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
nadaanas1985 0:454abaa26f3c 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
nadaanas1985 0:454abaa26f3c 14 * See the License for the specific language governing permissions and
nadaanas1985 0:454abaa26f3c 15 * limitations under the License.
nadaanas1985 0:454abaa26f3c 16 *
nadaanas1985 0:454abaa26f3c 17 * This file is part of mbed TLS (https://tls.mbed.org)
nadaanas1985 0:454abaa26f3c 18 */
nadaanas1985 0:454abaa26f3c 19
nadaanas1985 0:454abaa26f3c 20 #include "select-demo.h"
nadaanas1985 0:454abaa26f3c 21
nadaanas1985 0:454abaa26f3c 22 /* Enable entropy for devices with TRNG. This means entropy is disabled for all other targets. */
nadaanas1985 0:454abaa26f3c 23 /* Do **NOT** deploy this code in production on other targets! */
nadaanas1985 0:454abaa26f3c 24 /* See https://tls.mbed.org/kb/how-to/add-entropy-sources-to-entropy-pool */
nadaanas1985 0:454abaa26f3c 25 #if defined(DEVICE_TRNG)
nadaanas1985 0:454abaa26f3c 26 #undef MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
nadaanas1985 0:454abaa26f3c 27 #undef MBEDTLS_TEST_NULL_ENTROPY
nadaanas1985 0:454abaa26f3c 28 #endif