OpenWSN Firmware
ohlone.h
Go to the documentation of this file.
1 #ifndef __OHLONE_H
2 #define __OHLONE_H
3 
11 #include "opentcp.h"
12 
13 //=========================== define ==========================================
14 
15 //=========================== typedef =========================================
16 
17 //=========================== module variables ================================
18 
19 typedef struct {
21  bool sending;
22  uint16_t httpChunk;
23  uint8_t getRequest[TCP_DEFAULT_WINDOW_SIZE];
25 
26 //=========================== prototypes ======================================
27 
28 void ohlone_init(void);
29 bool ohlone_shouldIlisten(void);
32 void ohlone_connectDone(owerror_t error);
33 bool ohlone_debugPrint(void);
34 
40 #endif
void ohlone_connectDone(owerror_t error)
Definition: ohlone.c:106
void ohlone_receive(OpenQueueEntry_t *msg)
Definition: ohlone.c:75
uint16_t httpChunk
Definition: ohlone.h:22
uint8_t owerror_t
Definition: openwsn.h:265
bool ohlone_debugPrint()
Definition: ohlone.c:109
bool ohlone_shouldIlisten()
Definition: ohlone.c:28
Definition: ohlone.h:19
bool sending
Definition: ohlone.h:21
void ohlone_init()
Definition: ohlone.c:21
void ohlone_sendDone(OpenQueueEntry_t *msg, owerror_t error)
Definition: ohlone.c:94
Definition: openwsn.h:288
OpenQueueEntry_t * pkt
Definition: ohlone.h:20
Definition: opentcp.h:47