Avoid including Arduino.h where possible

This commit is contained in:
2024-04-10 21:10:31 +10:00
parent 746d0fad6f
commit 7f7e02a8b7
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
#ifndef BUFFERFILLER_H
#define BUFFERFILLER_H
#include <Arduino.h>
#include <stdint.h>
#include "PacketCRC.h"
#include "PacketTypes.h"

View File

@@ -1,7 +1,7 @@
#ifndef PACKET_PARSER_H
#define PACKET_PARSER_H
#include <Arduino.h>
#include <vector>
#include "PacketTypes.h"
class PacketParser {

View File

@@ -1,7 +1,7 @@
#ifndef PACKET_TYPES_H
#define PACKET_TYPES_H
#include <Arduino.h>
#include <stdint.h>
#include <variant>
// Define packet types

View File

@@ -1,7 +1,7 @@
#ifndef RFPOWERVIEW_H
#define RFPOWERVIEW_H
#include <Arduino.h>
#include <stdint.h>
#include <RF24.h>
#include "PacketReceiver.h"
#include "PacketParser.h"