Updates and additions required by mbed-os 5.2.2

Dependencies:   SPWF01SA-lapi-1

Dependents:   x-nucleo-iks01a1-test x-nucleo-iks01a1-test

Fork of X_NUCLEO_IDW01M1v2 by ST

SpwfInterface.h

Committer:
lapi
Date:
2016-11-20
Revision:
14:aadc322f10db
Parent:
13:3d28a8c18182

File content as of revision 14:aadc322f10db:

/* mbed Microcontroller Library
* Copyright (c) 20015 ARM Limited
*
* 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.
*/

/**
  ******************************************************************************
  * @file    SpwfInterface.h 
  * @author  STMicroelectronics
  * @brief   Header file of the NetworkStack for the SPWF Device
  ******************************************************************************
  * @copy
  *
  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  *
  * <h2><center>&copy; COPYRIGHT 2016 STMicroelectronics</center></h2>
  ******************************************************************************
  */
  
#ifndef SPWFSA_INTERFACE_H
#define SPWFSA_INTERFACE_H

#include "WiFiInterface.h"
#include "SPWFSA01.h"
 
#define SPWFSA_SOCKET_COUNT 8
#define SERVER_SOCKET_NO    9
 
/** SpwfSAInterface class
 *  Implementation of the NetworkStack for the SPWF Device
 */
class SpwfSAInterface : public NetworkStack, public WiFiInterface
{
public:
 
    SpwfSAInterface(PinName tx, PinName rx, bool debug = false);
    virtual ~SpwfSAInterface();
 
    // Implementation of WiFiInterface
    virtual nsapi_error_t set_credentials(const char *ssid, const char *pass,
                    nsapi_security_t security = NSAPI_SECURITY_NONE);
    virtual nsapi_error_t connect(const char *ssid,
                            const char *pass,
                            nsapi_security_t security = NSAPI_SECURITY_NONE,
                            uint8_t channel = 0);
    virtual nsapi_error_t connect() {
        if (_ssid == 0 || _pass == 0) return NSAPI_ERROR_PARAMETER;
        return connect(_ssid, _pass, _security, _channel);
    }
    virtual nsapi_error_t set_channel(uint8_t channel) {
        _channel = channel;
        return NSAPI_ERROR_OK;
    }
    virtual int8_t get_rssi();
    virtual int disconnect();
    virtual nsapi_size_or_error_t scan(WiFiAccessPoint *res, nsapi_size_t count) {
        return NSAPI_ERROR_UNSUPPORTED; // TODO! Add scan support
    }
     
    virtual const char *get_mac_address();    
    void debug(const char * string);
    
    //Implementation of NetworkStack
    virtual const char *get_ip_address();
    
protected:
    //Implementation of NetworkStack
    virtual int socket_open(void **handle, nsapi_protocol_t proto);    
    virtual int socket_close(void *handle);    
    virtual int socket_bind(void *handle, const SocketAddress &address);  //not supported  
    virtual int socket_listen(void *handle, int backlog);
    virtual int socket_connect(void *handle, const SocketAddress &address);
    virtual nsapi_error_t socket_accept(nsapi_socket_t server,
                    nsapi_socket_t *handle, SocketAddress *address=0);
    virtual int socket_send(void *handle, const void *data, unsigned size);  
    virtual int socket_recv(void *handle, void *data, unsigned size);    
    virtual int socket_sendto(void *handle, const SocketAddress &address, const void *data, unsigned size);    
    virtual int socket_recvfrom(void *handle, SocketAddress *address, void *buffer, unsigned size);    
    virtual void socket_attach(void *handle, void (*callback)(void *), void *data);
    virtual NetworkStack* get_stack() {return this;}       
private:
    int init(void);
        
    SPWFSA01 _spwf;
    bool _ids[SPWFSA_SOCKET_COUNT];
    bool isListening;
    bool isInitialized;
    const char *_ssid;
    const char *_pass;
    nsapi_security_t _security;
    uint8_t _channel;
};


#endif