summaryrefslogtreecommitdiffstats
path: root/data/mnet/GP10/Host/rm/Src/intg_SendChanDeActivation.cpp
blob: 8d72ba83fde5da41751be020d38a0bb4eae80fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
********************************************************************
**
** (c) Copyright Cisco 2000
** All Rights Reserved
**
*********************************************************************
*/
#ifndef __INTG_SENDCHANDEACTIVATION_CPP__
#define __INTG_SENDCHANDEACTIVATION_CPP__

#include "rm\rm_head.h"

void intg_SendChanDeActivation( u8 trx, u8 chan)
{
   rm_ItcTxMsg_t 	    msgToL1;
   u16			    length;

   RDEBUG__(("ENTER-rm_SendChanDeActivation\n"));
   length = 0;
   msgToL1.buffer[length++] = RM_L1MG_DEDMGMT;
   msgToL1.buffer[length++] = RM_L1MT_RFCHANREL_MSB;
   msgToL1.buffer[length++] = RM_L1MT_RFCHANREL_LSB;
   msgToL1.buffer[length++] = trx;
   msgToL1.buffer[length++] = (0x08|chan);
   msgToL1.buffer[length++] = 0;
   msgToL1.msgLength = length;
   api_SendMsgFromRmToL1(msgToL1.msgLength, msgToL1.buffer);

} 
	
#endif /*__INTG_SENDCHANDEACTIVATION_CPP__*/