We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb63f1c commit e9ff657Copy full SHA for e9ff657
avr/cores/picocore/constants.h
@@ -1,10 +1,10 @@
1
// global constants
2
#include <stdint.h>
3
4
-const uint8_t LOW = 0;
5
-const uint8_t HIGH = 1;
6
-const uint8_t LED_BUILTIN = 2;
7
-const uint8_t NUM_DIGITAL_PINS = 6;
+static const uint8_t LOW = 0;
+static const uint8_t HIGH = 1;
+static const uint8_t LED_BUILTIN = 2;
+static const uint8_t NUM_DIGITAL_PINS = 6;
8
9
typedef enum {MSBFIRST = 0, LSBFIRST} _bitOrder;
10
0 commit comments