Library for Firebase, PUT, PATCH, POST, GET, DELETE operations supported, (others are available, todo). Based on Mbed's https-example. Tested on STM32F767 using ETHERNET and ESP8266 WIFI interfaces and STM32F446 using ESP8266 WIFI interface.

Dependents:   Firebase-Example

Committer:
star297
Date:
Sun May 10 08:08:23 2020 +0000
Revision:
3:4d7c08734a91
Parent:
0:768ae9838086
added PATCH function

Who changed what in which revision?

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