File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hardware/arduino/avr/libraries/SoftwareSerial Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ class SoftwareSerial : public Stream
72
72
static SoftwareSerial *active_object;
73
73
74
74
// private methods
75
- void recv () __attribute__((__always_inline__));
75
+ inline void recv () __attribute__((__always_inline__));
76
76
uint8_t rx_pin_read ();
77
77
void tx_pin_write (uint8_t pin_state) __attribute__((__always_inline__));
78
78
void setTX (uint8_t transmitPin);
79
79
void setRX (uint8_t receivePin);
80
- void setRxIntMsk (bool enable) __attribute__((__always_inline__));
80
+ inline void setRxIntMsk (bool enable) __attribute__((__always_inline__));
81
81
82
82
// Return num - sub, or 1 if the result would be < 1
83
83
static uint16_t subtract_cap (uint16_t num, uint16_t sub);
You can’t perform that action at this time.
0 commit comments