Person-to-person realtime IP communications, like Presence, VoIP and video applications, offer clear benefits for the enterprise as time- and money-savers. Unified functionality is now available, where all of the above are integrated into one streamlined application and interconnect with other networks. This creates a very important business tool and usage is increasing.
標簽: Person-to-person communications applications realtime
上傳時間: 2015-06-28
上傳用戶:維子哥哥
Integrated Services in the Presence of Compressible Flows
標簽: Compressible Integrated Services Presence
上傳時間: 2015-07-05
上傳用戶:lhc9102
有關IMS SIP及Presence應用的RFC文檔包
上傳時間: 2015-09-29
上傳用戶:zhuoying119
jsip開發文檔,對于開發SIP軟電話和Presence服務很有用
上傳時間: 2014-01-21
上傳用戶:tianyi223
//芯片資料請到www.elecfans.com查找 //DS1820 C51 子程序//這里以11.0592M晶體為例,不同的晶體速度可能需要調整延時的時間//sbit DQ =P2^1;//根據實際情況定義端口 typedef unsigned char byte;typedef unsigned int word; //延時void delay(word useconds){ for(;useconds>0;useconds--);} //復位byte ow_reset(void){ byte Presence; DQ = 0; //pull DQ line low delay(29); // leave it low for 480us DQ = 1; // allow line to return high delay(3); // wait for Presence Presence = DQ; // get Presence signal delay(25); // wait for end of timeslot return(Presence); // Presence signal returned} // 0=Presence, 1 = no part //從 1-wire 總線上讀取一個字節byte read_byte(void){ byte i; byte value = 0; for (i=8;i>0;i--) { value>>=1; DQ = 0; // pull DQ low to start timeslot DQ = 1; // then return high delay(1); //for (i=0; i<3; i++); if(DQ)value|=0x80; delay(6); // wait for rest of timeslot } return(value);} //向 1-WIRE 總線上寫一個字節void write_byte(char val){ byte i; for (i=8; i>0; i--) // writes byte, one bit at a time { DQ = 0; // pull DQ low to start timeslot DQ = val&0x01; delay(5); // hold value for remainder of timeslot DQ = 1; val=val/2; } delay(5);} //讀取溫度char Read_Temperature(void){ union{ byte c[2]; int x; }temp; ow_reset(); write_byte(0xCC); // Skip ROM write_byte(0xBE); // Read Scratch Pad temp.c[1]=read_byte(); temp.c[0]=read_byte(); ow_reset(); write_byte(0xCC); //Skip ROM write_byte(0x44); // Start Conversion return temp.x/2;}
上傳時間: 2013-11-03
上傳用戶:hongmo
Automobiles, aircraft, marine vehicles, uninterruptiblepower supplies and telecom hardware represent areasutilizing series connected battery stacks. These stacksof individual cells may contain many units, reaching potentialsof hundreds of volts. In such systems it is oftendesirable to accurately determine each individual cell’svoltage. Obtaining this information in the Presence of thehigh “common mode” voltage generated by the batterystack is more diffi cult than might be supposed.
上傳時間: 2013-10-24
上傳用戶:kang1923
This little program shows how to use COM technology in Win32Asm. When it s run it lets the user freely decide about the Presence of the program with the WS_EX_TOOLWINDOW style on the taskbar. The main goal is to show the easiest possible example instead of killing people with the details about virtual tables, polymorphism, inheritance and using nested macros etc., etc.
標簽: technology program little shows
上傳時間: 2015-05-03
上傳用戶:kernaling
KphoneSI (kpsi) is a SIP (Session Initiation Protocol) user agent for Linux, with which you can initiate VoIP (Voice over IP) connections over the Internet, send Instant Messages, subscribe your friends Presence information and start other applications of your choice
標簽: Initiation KphoneSI Protocol Session
上傳時間: 2015-09-13
上傳用戶:sy_jiadeyi
一個支持眾多rfc的開源sip協議棧,包括Presence應用,SIMPLE。
上傳時間: 2015-09-29
上傳用戶:llandlu
使用開源SIP協議棧編寫的一個小測試程序,包括UA和UAS兩部分,完成最基本的publish會話。注:簡單起見,publish沒有設置消息體。 PJSIP,一個用C編寫,功能強大的開源SIP協議棧,采用優秀的內存分配機制編寫,運行速度快,支持IM、Presence、PIDF、rPIDF等最新RFC,可以用來實現各種SIP應用。 PJSIP下載見本站。
上傳時間: 2013-12-20
上傳用戶:hoperingcong