* Add TLS (https) support * Add NTP server * Clean up include path, add BearSSL headers * Allow 2 NTP servers, add ESP8266 compat define * Add MFLN SSL example, free/used/total heap getters * Enable stack thunking * Add tested SSL examples * Add BSSL_validation demo * Add Client Certificate example * Add RP2040 helper docs * Clean up doc errors, missing doc version info * Add WiFiClientSecure documentation * Add NTP docs Fixes #679
19 lines
439 B
C
19 lines
439 B
C
/*
|
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
// ---------------------------------------
|
|
// THIS FILE IS AUTOGENERATED; DO NOT EDIT
|
|
// ---------------------------------------
|
|
|
|
#ifndef _PICO_VERSION_H
|
|
#define _PICO_VERSION_H
|
|
|
|
#define PICO_SDK_VERSION_MAJOR 1
|
|
#define PICO_SDK_VERSION_MINOR 4
|
|
#define PICO_SDK_VERSION_REVISION 0
|
|
#define PICO_SDK_VERSION_STRING "1.4.0"
|
|
|
|
#endif
|