+ /* Pseudo-Function Macros: */\r
+ #if defined(__DOXYGEN__)\r
+ /** Indicates whether a character has been received through the USART.\r
+ *\r
+ * \return Boolean true if a character has been received, false otherwise\r
+ */\r
+ static inline bool Serial_IsCharReceived(void);\r
+ #else\r
+ #define Serial_IsCharReceived() ((UCSR1A & (1 << RXC1)) ? true : false)\r
+ #endif\r
+\r