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

CC1110F32RHHR 参数 Datasheet PDF下载

CC1110F32RHHR图片预览
型号: CC1110F32RHHR
PDF下载: 下载PDF文件 查看货源
内容描述: 低功耗的SoC (系统级芯片)与MCU,存储器,低于1GHz的射频收发器和USB控制器 [Low-Power SoC (System-on-Chip) with MCU, Memory, Sub-1 GHz RF Transceiver, and USB Controller]
分类和应用: 存储射频控制器
文件页数/大小: 249 页 / 3133 K
品牌: TI [ TEXAS INSTRUMENTS ]
 浏览型号CC1110F32RHHR的Datasheet PDF文件第61页浏览型号CC1110F32RHHR的Datasheet PDF文件第62页浏览型号CC1110F32RHHR的Datasheet PDF文件第63页浏览型号CC1110F32RHHR的Datasheet PDF文件第64页浏览型号CC1110F32RHHR的Datasheet PDF文件第66页浏览型号CC1110F32RHHR的Datasheet PDF文件第67页浏览型号CC1110F32RHHR的Datasheet PDF文件第68页浏览型号CC1110F32RHHR的Datasheet PDF文件第69页  
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  
Field Name  
Reset  
R/W  
Description  
7
0
R/W  
H0  
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.  
SWRS033H  
Page 65 of 246  
 
 复制成功!