欢迎访问ic37.com |
会员登录 免费注册
发布采购

CC1110FX 参数 Datasheet PDF下载

CC1110FX图片预览
型号: CC1110FX
PDF下载: 下载PDF文件 查看货源
内容描述: 低功耗低于1 GHz的射频系统级芯片(SoC )与MCU,存储器,收发器和USB控制器 [Low-power sub-1 GHz RF System-on-Chip (SoC) with MCU, memory, transceiver, and USB controller]
分类和应用: 存储射频控制器
文件页数/大小: 240 页 / 2823 K
品牌: TAOS [ TEXAS ADVANCED OPTOELECTRONIC SOLUTIONS ]
 浏览型号CC1110FX的Datasheet PDF文件第62页浏览型号CC1110FX的Datasheet PDF文件第63页浏览型号CC1110FX的Datasheet PDF文件第64页浏览型号CC1110FX的Datasheet PDF文件第65页浏览型号CC1110FX的Datasheet PDF文件第67页浏览型号CC1110FX的Datasheet PDF文件第68页浏览型号CC1110FX的Datasheet PDF文件第69页浏览型号CC1110FX的Datasheet PDF文件第70页  
CC1110Fx / CC1111Fx  
module flag. When any module flag is cleared  
the chip will check if there are any module  
interrupt flags left that are both enabled and  
asserted, if so the CPU interrupt flag will be  
asserted and a new interrupt triggered.  
The following code example shows how only  
one module flag is handled and cleared each  
time the interrupt occurs:  
#pragma vector = RF_VECTOR  
__interrupt void rf_interrupt (void)  
{
S1CON &= ~0x03;  
if(RFIF & 0x80)  
// Clear CPU interrupt flag  
// TX underflow  
{
irq_txunf();  
// Handle TX underflow  
RFIF = ~0x80;  
// Clear module interrupt flag  
}
else if(RFIF & 0x40)  
// RX overflow  
{
irq_rxovf();  
RFIF = ~0x40;  
}
// Handle RX overflow  
// Clear module interrupt flag  
// Use ”else if” to check and handle other RFIF flags  
}
TCON (0x88) – CPU Interrupt Flag 1  
Bit  
Name  
Reset  
R/W  
R/W  
H0  
Description  
7
0
USART1 RX interrupt flag / I2S RX interrupt flag  
URX1IF /  
I2SRXIF  
Set to 1 when USART1 RX interrupt occurs and cleared when CPU vectors  
to the interrupt service routine.  
0
1
Interrupt not pending  
Interrupt pending  
6
5
0
0
R/W  
Not used  
R/W  
H0  
ADC interrupt flag. Set to 1 when ADC interrupt occurs and cleared when  
CPU vectors to the interrupt service routine.  
ADCIF  
0
1
Interrupt not pending  
Interrupt pending  
4
3
0
0
R/W  
Not used  
R/W  
H0  
USART0 RX interrupt flag. Set to 1 when USART0 interrupt occurs and  
cleared when CPU vectors to the interrupt service routine.  
URX0IF  
RFTXRXIF  
0
1
Interrupt not pending  
Interrupt pending  
2
1
1
0
R/W  
Reserved. Must always be set to 1.  
R/W  
H0  
RF TX/RX complete interrupt flag. Set to 1 when RFTXRX interrupt occurs  
and cleared when CPU vectors to the interrupt service routine.  
0
1
Interrupt not pending  
Interrupt pending  
0
1
R/W  
Reserved. Must always be set to 1.  
SWRS033E  
Page 66 of 239  
 
 复制成功!