AT&T IoT hackster.io contest Carpal2

Dependencies:   Pubnub_c_core

Fork of Pubnub_c_core_mbed2_pal by Srdjan Veljkovic

pubnub_version_mbed.cpp

Committer:
sveljko
Date:
2016-12-06
Revision:
5:be58f6801809
Parent:
0:389a44951c54

File content as of revision 5:be58f6801809:

/* -*- c-file-style:"stroustrup"; indent-tabs-mode: nil -*- */
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "mbed2"
#define PUBNUB_SDK_VERSION "2.2.0"


char const *pubnub_sdk_name(void)
{ 
    return PUBNUB_SDK_NAME;
}


char const *pubnub_version(void)
{
    return PUBNUB_SDK_VERSION;
}


char const *pubnub_uname(void)
{
    return PUBNUB_SDK_NAME "%2F" PUBNUB_SDK_VERSION;
}