pull/274/head
jgromes 2021-03-13 19:06:04 +01:00
rodzic d3e492ea90
commit 1903cfa898
3 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
#ifndef _RADIOLIB_ISERIAL_H
#if !defined(_RADIOLIB_ISERIAL_H)
#define _RADIOLIB_ISERIAL_H
#include "Module.h"
@ -20,7 +20,7 @@ class ISerial {
int available();
void flush();
#ifndef ARDUINO_ARCH_MEGAAVR
#if !defined(ARDUINO_ARCH_MEGAAVR)
size_t print(const __FlashStringHelper *);
#endif
size_t print(const String &);
@ -34,7 +34,7 @@ class ISerial {
size_t print(double, int = 2);
size_t print(const Printable&);
#ifndef ARDUINO_ARCH_MEGAAVR
#if !defined(ARDUINO_ARCH_MEGAAVR)
size_t println(const __FlashStringHelper *);
#endif
size_t println(const String &s);
@ -49,7 +49,7 @@ class ISerial {
size_t println(const Printable&);
size_t println(void);
#ifndef RADIOLIB_GODMODE
#if !(defined(RADIOLIB_LOW_LEVEL) || defined(RADIOLIB_GODMODE))
protected:
#endif
Module* _mod;

Wyświetl plik

@ -1,4 +1,4 @@
#ifndef _RADIOLIB_H
#if !defined(_RADIOLIB_H)
#define _RADIOLIB_H
/*!

Wyświetl plik

@ -1,4 +1,4 @@
#ifndef _RADIOLIB_TYPES_H
#if !defined(_RADIOLIB_TYPES_H)
#define _RADIOLIB_TYPES_H
#include "BuildOpt.h"