We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 291b7f7 commit e5fd810Copy full SHA for e5fd810
cores/arduino/HardwareSerial.h
@@ -140,7 +140,7 @@ class HardwareSerial : public Stream
140
inline void _rx_complete_irq(void);
141
void _tx_udr_empty_irq(void);
142
143
- typedef void (* isr_t)( uint8_t d=0x00, uint8_t s=0x00 );
+ typedef void (* isr_t)( uint8_t d, uint8_t s );
144
void attachInterrupt( isr_t fn );
145
void detachInterrupt() { attachInterrupt( (isr_t) NULL ); };
146
private:
0 commit comments