mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-16 00:43:00 +03:00
fixes
This commit is contained in:
@ -28,8 +28,8 @@ struct ArgStructure {
|
||||
FunctionInfo* functionInfo = nullptr;
|
||||
};
|
||||
|
||||
void attachInterrupt(uint8_t pin, std::function<void(void)> intRoutine, int mode);
|
||||
void attachScheduledInterrupt(uint8_t pin, std::function<void(InterruptInfo)> scheduledIntRoutine, int mode);
|
||||
bool attachInterrupt(uint8_t pin, std::function<void(void)> intRoutine, int mode);
|
||||
bool attachScheduledInterrupt(uint8_t pin, std::function<void(InterruptInfo)> scheduledIntRoutine, int mode);
|
||||
|
||||
|
||||
#endif //INTERRUPTS_H
|
||||
|
@ -18,6 +18,7 @@
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <new> // std::nothrow
|
||||
#include "cbuf.h"
|
||||
#include "c_types.h"
|
||||
|
||||
|
Reference in New Issue
Block a user