Skip to content

Commit 21066ce

Browse files
committed
Fix compiler warning: implicit declaration of function
Fix #44 cores/arduino/wiring_digital.c:37:8: warning: implicit declaration of function 'is_pin_configured' [-Wimplicit-function-declaration] if(is_pin_configured(p, g_anOutputPinConfigured)) { Signed-off-by: Frederic.Pillon <[email protected]>
1 parent a7ffd7b commit 21066ce

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

cores/arduino/wiring_analog.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
#include "Arduino.h"
20+
#include "PinConfigured.h"
2021

2122
#ifdef __cplusplus
2223
extern "C" {

cores/arduino/wiring_digital.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
#include "Arduino.h"
20+
#include "PinConfigured.h"
2021

2122
#ifdef __cplusplus
2223
extern "C" {

0 commit comments

Comments
 (0)