@@ -29,7 +29,7 @@ along with this program. If not, see <h
#include "dvb_frontend.h"
#include "smscoreapi.h"
-/*#include "smsendian.h"*/
+#include "smsendian.h"
#include "sms-cards.h"
#ifndef DVB_DEFINE_MOD_OPT_ADAPTER_NR
@@ -116,7 +116,7 @@ static int smsdvb_onresponse(void *conte
u32 *pMsgData = (u32 *) phdr + 1;
/*u32 MsgDataLen = phdr->msgLength - sizeof(struct SmsMsgHdr_ST);*/
- /*smsendian_handle_rx_message((struct SmsMsgData_ST *) phdr);*/
+ smsendian_handle_rx_message((struct SmsMsgData_ST *) phdr);
switch (phdr->msgType) {
case MSG_SMS_DVBT_BDA_DATA:
@@ -293,7 +293,7 @@ static int smsdvb_stop_feed(struct dvb_d
PidMsg.xMsgHeader.msgLength = sizeof(PidMsg);
PidMsg.msgData[0] = feed->pid;
- /* smsendian_handle_tx_message((struct SmsMsgHdr_ST *)&PidMsg); */
+ smsendian_handle_tx_message((struct SmsMsgHdr_ST *)&PidMsg);
return smsclient_sendrequest(client->smsclient, &PidMsg,
sizeof(PidMsg));
}
@@ -304,7 +304,7 @@ static int smsdvb_sendrequest_and_wait(s
{
int rc;
- /* smsendian_handle_tx_message((struct SmsMsgHdr_ST *)buffer); */
+ smsendian_handle_tx_message((struct SmsMsgHdr_ST *)buffer);
rc = smsclient_sendrequest(client->smsclient, buffer, size);
if (rc < 0)
return rc;