Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FXOS8700CQ MODSERIAL mbed-rtos mbed
Fork of ATT_Cellular_IOT_Button by
Diff: itm_output.h
- Revision:
- 60:2aa16fd02dfd
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/itm_output.h Sat Jul 30 16:26:22 2016 +0000 @@ -0,0 +1,14 @@ +#ifndef __ITM_OUTPUT__ +#define __ITM_OUTPUT__ + +//This file is only used when building for ULINK output + +#define PRINTF(format, ...) { char xyz[80]; sprintf (xyz, format, ## __VA_ARGS__); ITM_puts(xyz);} +#define PUTS(st) ITM_puts((char*)st); + + +int ITM_putc (int ch); +int ITM_getc (void); +int ITM_puts ((char *) str); + +#endif