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.
Dependents: m2x-demo-all M2X_MTS_ACCEL_DEMO M2X_MTS_Accel M2X_K64F_ACCEL ... more
Print.h
- Committer:
- citrusbyte
- Date:
- 2013-10-24
- Revision:
- 5:ea68c8980ad8
File content as of revision 5:ea68c8980ad8:
#ifndef Print_h
#define Print_h
#include <stddef.h>
#include <stdint.h>
class Print {
public:
size_t print(const char* s);
size_t print(char c);
size_t print(int n);
size_t print(long n);
size_t print(double n, int digits = 2);
size_t println(const char* s);
size_t println(char c);
size_t println(int n);
size_t println(long n);
size_t println(double n, int digits = 2);
size_t println();
virtual size_t write(uint8_t c) = 0;
virtual size_t write(const uint8_t* buf, size_t size);
};
#endif
AT&T M2X