Test C027 with Xively and Ethernet

Dependencies:   C027 EthernetInterface libxively mbed-rtos mbed HTTPClient

Fork of C027_Xively_Ethernet by Chau Vo

Committer:
olympux
Date:
Sat May 03 13:47:05 2014 +0000
Revision:
9:11148ee67ba0
Parent:
6:f1477813f212
Xively api with location

Who changed what in which revision?

UserRevisionLine numberNew contents of line
olympux 6:f1477813f212 1 #ifndef __XI_USER_CONFIG_H__
olympux 6:f1477813f212 2 #define __XI_USER_CONFIG_H__
olympux 6:f1477813f212 3
olympux 6:f1477813f212 4 // The following settings should lower memory footprint.
olympux 6:f1477813f212 5 // The library currently allows one to send batch datapoint
olympux 6:f1477813f212 6 // and feed updates, but it's not needed in most use cases
olympux 6:f1477813f212 7 #define XI_MAX_DATAPOINTS 1
olympux 6:f1477813f212 8 // The number of channels can be increased if needed
olympux 6:f1477813f212 9 #define XI_MAX_DATASTREAMS 5
olympux 6:f1477813f212 10
olympux 6:f1477813f212 11 // Below are optimisations that reduce some minor functionality
olympux 6:f1477813f212 12 #define XI_OPT_NO_ERROR_STRINGS
olympux 6:f1477813f212 13
olympux 6:f1477813f212 14 // If you wish to enable assertions, set this to 1
olympux 6:f1477813f212 15 #define XI_DEBUG_ASSERT 0
olympux 6:f1477813f212 16 // If you wish to disable debug output, set this to 0
olympux 6:f1477813f212 17 #define XI_DEBUG_OUTPUT 0
olympux 6:f1477813f212 18
olympux 6:f1477813f212 19
olympux 6:f1477813f212 20 #endif /* __XI_USER_CONFIG_H__ */