- * \param[in] RFCOMMChannel RFCOMM channel that the data was directed to\r
- * \param[in] DataLen Length of the received data, in bytes\r
- * \param[in] Data Pointer to a buffer where the received data is stored\r
+ * \param[in] RFCOMMChannel RFCOMM channel that was opened\r
+ */ \r
+void RFCOMM_ChannelOpened(RFCOMM_Channel_t* const RFCOMMChannel)\r
+{\r
+ /* Save the serial port RFCOMM logical channel for later use */\r
+ SerialChannel_RFCOMM = RFCOMMChannel;\r
+}\r
+\r
+/** RFCOMM layer callback event for when a packet is received on an open RFCOMM channel.\r
+ *\r
+ * \param[in] ACLChannel RFCOMM ACL channel that the data was directed to\r
+ * \param[in] DataLen Length of the received data, in bytes\r
+ * \param[in] Data Pointer to a buffer where the received data is stored\r