- /* Function Prototypes: */\r
- /** Transmits a given string located in program space (FLASH) through the USART.\r
- *\r
- * \param[in] FlashStringPtr Pointer to a string located in program space\r
- */\r
- void Serial_TxString_P(const char *FlashStringPtr) ATTR_NON_NULL_PTR_ARG(1);\r
-\r
- /** Transmits a given string located in SRAM memory through the USART.\r
- *\r
- * \param[in] StringPtr Pointer to a string located in SRAM space\r
- */\r
- void Serial_TxString(const char *StringPtr) ATTR_NON_NULL_PTR_ARG(1);\r
-\r