diff --git a/examples/BasicUsage/BasicUsage.ino b/examples/BasicUsage/BasicUsage.ino index 2c75b31..322614d 100644 --- a/examples/BasicUsage/BasicUsage.ino +++ b/examples/BasicUsage/BasicUsage.ino @@ -2,7 +2,7 @@ * Demonstrate basic library usage. */ -#include +#include void setup() { PMIC.begin(); diff --git a/examples/C33-Low-Power/C33-Low-Power.ino b/examples/C33-Low-Power/C33-Low-Power.ino index b5e5c80..3cf3e6b 100644 --- a/examples/C33-Low-Power/C33-Low-Power.ino +++ b/examples/C33-Low-Power/C33-Low-Power.ino @@ -2,7 +2,7 @@ * Test low power capability of Portenta C33. */ -#include +#include #include diff --git a/examples/ReadWriteRegs/ReadWriteRegs.ino b/examples/ReadWriteRegs/ReadWriteRegs.ino index 4dce7dd..2c0bc98 100644 --- a/examples/ReadWriteRegs/ReadWriteRegs.ino +++ b/examples/ReadWriteRegs/ReadWriteRegs.ino @@ -2,7 +2,7 @@ * Read and write some registers from the PF1550 PMIC. */ -#include +#include //#define Serial Serial1 diff --git a/src/Arduino_PF1550.h b/src/Arduino_PF1550.h new file mode 100644 index 0000000..742001f --- /dev/null +++ b/src/Arduino_PF1550.h @@ -0,0 +1,28 @@ +/* + Copyright (c) 2019 Arduino. All right reserved. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#ifndef ARDUINO_PF1550_H +#define ARDUINO_PF1550_H + +/****************************************************************************** + INCLUDE + ******************************************************************************/ + +#include "PF1550.h" + +#endif /* ARDUINO_PF1550_H */