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: DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_USB_Rx ... more
Fork of SX1276Lib by
Revision 74:66223d437a25, committed 2017-07-23
- Comitter:
- Helmut Tschemernjak
- Date:
- Sun Jul 23 18:04:39 2017 +0200
- Parent:
- 73:23cc8ba412e0
- Child:
- 75:7330dd86cdea
- Commit message:
- added dprintf and dump helpers for Arduino
Changed in this revision
Binary file Arduino-mbed-APIs/arduino-util.cpp has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Arduino-mbed-APIs/arduino-util.h Sun Jul 23 18:04:39 2017 +0200 @@ -0,0 +1,17 @@ +#ifdef ARDUINO +#ifndef __ARDUINO_UTIL_H__ +#define __ARDUINO_UTIL_H__ + +/* + * The file is Licensed under the Apache License, Version 2.0 + * (c) 2017 Helmut Tschemernjak + * 30826 Garbsen (Hannover) Germany + */ + +extern void dprintf(const char *format, ...); + +extern void dump(const char *title, const void *data, int len); + +#endif // __ARDUINO_UTIL_H__ + +#endif

