mirror of https://github.com/ARMmbed/mbed-os.git
Platform debend implementation file
Change-Id: If72db0475395442041a3cf626269363a40806c5bpull/3240/head
parent
5f0d7c3d7d
commit
c191fdea9d
|
@ -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_ */
|
Loading…
Reference in New Issue