Skip to content

Commit 53aa967

Browse files
committed
Fix renaming for better PR readability.
1 parent dbf38e9 commit 53aa967

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupt.ino renamed to libraries/ESP32/examples/GPIO/Functional/Functional.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <Arduino.h>
22
#include "Schedule.h"
3-
#include "FunctionalInterrupts.h"
3+
#include "FunctionalInterrupt.h"
44

55
#if defined(ESP32)
66
#define BUTTON1 16

libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupts.cpp renamed to libraries/ESP32/examples/GPIO/Functional/FunctionalInterrupt.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "FunctionalInterrupts.h"
1+
#include "FunctionalInterrupt.h"
22
#include "Schedule.h"
33
#include <Arduino.h>
44

libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupts.h renamed to libraries/ESP32/examples/GPIO/Functional/FunctionalInterrupt.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef FUNCTIONALINTERRUPTS_H
2-
#define FUNCTIONALINTERRUPTS_H
1+
#ifndef FUNCTIONALINTERRUPT_H
2+
#define FUNCTIONALINTERRUPT_H
33

44
#include <functional>
55

@@ -34,4 +34,4 @@ void attachInterrupt(uint8_t pin, std::function<void(void)> intRoutine, int mode
3434
void attachScheduledInterrupt(uint8_t pin, std::function<void(InterruptInfo)> scheduledIntRoutine, int mode);
3535
void detachFunctionalInterrupt(uint8_t pin);
3636

37-
#endif //INTERRUPTS_H
37+
#endif //FUNCTIONALINTERRUPT_H

0 commit comments

Comments
 (0)