Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Fri Oct 12 10:03:37 2012 +0000
Revision:
53:54b2d3a0c7bf
Parent:
14:d7bf58146337
File download test, now tests files between 128 bytes and 1MB in successive powers of 2.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 14:d7bf58146337 1 #pragma once
donatien 14:d7bf58146337 2 #define LOGGER
donatien 14:d7bf58146337 3 #ifdef LOGGER
donatien 14:d7bf58146337 4 #define LOG(...) { fprintf(stdout,"[LOG] "); fprintf(stdout,__VA_ARGS__); fprintf(stdout,"\r\n"); }
ashleymills 53:54b2d3a0c7bf 5 #define LOGX(...) { fprintf(stdout,"[LOG] "); fprintf(stdout,__VA_ARGS__); }
donatien 14:d7bf58146337 6 #else
donatien 14:d7bf58146337 7 #define LOG(...)
donatien 14:d7bf58146337 8 #define LOGX(...)
ashleymills 2:ea883307d02f 9 #endif