+ /* External Variables: */
+ extern volatile bool srx_done;
+ extern volatile uint8_t stx_count;
+
+ /* Inline Functions: */
+ static inline bool SoftUART_IsReady(void)
+ {
+ return !(stx_count);
+ }
+
+ static inline bool SoftUART_IsReceived(void)
+ {
+ return srx_done;
+ }
+