Tweak spacing in utf8_mapper.h

This commit is contained in:
Scott Lahteine
2017-10-06 14:58:37 -05:00
parent 5e63ba970d
commit e287e14354
2 changed files with 16 additions and 16 deletions

View File

@@ -103,15 +103,15 @@
#else
typedef uint8_t ring_buffer_pos_t;
#endif
#if ENABLED(SERIAL_STATS_DROPPED_RX)
extern uint8_t rx_dropped_bytes;
#endif
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
extern ring_buffer_pos_t rx_max_enqueued;
#endif
#endif
class MarlinSerial { //: public Stream
public:
@@ -136,7 +136,7 @@
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
FORCE_INLINE static ring_buffer_pos_t rxMaxEnqueued() { return rx_max_enqueued; }
#endif
#endif
private:
static void printNumber(unsigned long, const uint8_t);