ELEC-C7222
Libraries for ELEC C7222 Course Work
Loading...
Searching...
No Matches
ble_utils.hpp
Go to the documentation of this file.
1#ifndef _BLE_UTILS_H_
2#define _BLE_UTILS_H_
3
4#include <cstdio>
5
6#if defined(C7222_BLE_DEBUG)
7#define C7222_BLE_DEBUG_PRINT(...) std::printf(__VA_ARGS__)
8#else
9#define C7222_BLE_DEBUG_PRINT(...) do { } while(0)
10#endif
11
12namespace c7222 {
13}
14
15#endif
C7222 course abstractions namespace.
Definition ble.hpp:20