MRMS
mrm-common.h
1 #pragma once
2 #define RADIO 1 // 0 - no radio, 1 Bluetooth, 2 WiFi
3 #include <Arduino.h>
4 #if RADIO == 1
5 #include <BluetoothSerial.h>
6 #endif
7 
8 extern char errorMessage[60];
9 
17 void print(const char* fmt, ...);
18 
21 void vprint(const char* fmt, va_list argp);