Platform debend implementation file

Change-Id: If72db0475395442041a3cf626269363a40806c5b
pull/3240/head
Erno Törmikoski 2015-06-03 14:45:45 +03:00
parent 5f0d7c3d7d
commit c191fdea9d
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
/*
* Copyright (c) 2015 ARM. All rights reserved.
*/
/*
* \file -
* \brief Platform specifig implementation file
*
*/
#ifndef COAP_SERVER_IMPL_H_
#define COAP_SERVER_IMPL_H_
#include "ns_types.h"
#include "eventOS_event.h"
#include "coap_service_api.h"
int8_t coap_server_start(void);
void *memory_allocation(uint16_t size);
void memory_free(void* ptr);
static int8_t coap_server_service_tasklet_generated(void);
void coap_server_service_tasklet(arm_event_s * event);
uint16_t socket_open(uint16_t listen_port, coap_service_request_recv_cb *requst_recv_cb);
#endif /* COAP_SERVER_IMPL_H_ */