mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Wed Feb 20 22:31:08 2019 +0000
Revision:
189:f392fc9709a3
Parent:
187:0387e8f68319
mbed library release version 165

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 187:0387e8f68319 1 /*
AnnaBridge 187:0387e8f68319 2 * Copyright (c) 2018, Arm Limited and affiliates.
AnnaBridge 187:0387e8f68319 3 * SPDX-License-Identifier: Apache-2.0
AnnaBridge 187:0387e8f68319 4 *
AnnaBridge 187:0387e8f68319 5 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 187:0387e8f68319 6 * you may not use this file except in compliance with the License.
AnnaBridge 187:0387e8f68319 7 * You may obtain a copy of the License at
AnnaBridge 187:0387e8f68319 8 *
AnnaBridge 187:0387e8f68319 9 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 187:0387e8f68319 10 *
AnnaBridge 187:0387e8f68319 11 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 187:0387e8f68319 12 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 187:0387e8f68319 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 187:0387e8f68319 14 * See the License for the specific language governing permissions and
AnnaBridge 187:0387e8f68319 15 * limitations under the License.
AnnaBridge 187:0387e8f68319 16 */
AnnaBridge 187:0387e8f68319 17
AnnaBridge 187:0387e8f68319 18 #include "RTWInterface.h"
AnnaBridge 187:0387e8f68319 19
AnnaBridge 187:0387e8f68319 20 WiFiInterface *WiFiInterface::get_target_default_instance()
AnnaBridge 187:0387e8f68319 21 {
AnnaBridge 187:0387e8f68319 22 static RTWInterface wifi;
AnnaBridge 187:0387e8f68319 23 return &wifi;
AnnaBridge 187:0387e8f68319 24 }