-
Ratematching_byylluo
LTE中速率匹配的代码,包括子块交织,比特搜集,比特选择和修剪(The code rate matching in LTE, including the sub-block interleaving and bit gather, bit selection and pruning)
- 2011-01-23 21:35:25下载
- 积分:1
-
C#实现Socket通讯Demo
c#通过Socket实现图片、文件和文字的通讯。
private void button1_Click(object sender, EventArgs e)
{
try
{
server = TxStart.startServer(int.Parse(textBox_port.Text));
server.AcceptString = new TxDelegate(acceptString);
server.AcceptByte = new TxDelegate(acceptBytes);
server.Connect = new TxDelegate(connect);
server.dateSuccess = new TxDelegate(dateSuccess);
server.Disconnection = new TxDelegate(disconnection);
server.EngineClose = new TxDelegate(engineClose);
server.EngineLost = new TxDelegate(engineLost);
//server.BufferSize=12048;
//server.FileLog = "C:\test.txt";
server.StartEngine();
this.button1.Enabled = false;
this.button2.Enabled = true;
this.button3.Enabled = true;
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 发送按钮
///
///
///
private void button2_Click(object sender, EventArgs e)
{
try
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.sendMessage(client, textBox_msg.Text);
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 下面显示的
///
///
///
private void show(IPEndPoint ipEndPoint, string str)
{
label_zt.Text = ipEndPoint.ToString() ":" str;
label_all.Text = "当前在线人数:" this.server.ClientNumber.ToString();
}
///
/// 当组合框按下的时候
///
///
///
private void comboBox1_DropDown_1(object sender, EventArgs e)
{
try
{
List list = this.server.ClientAll;
this.comboBox1.DataSource = list;
}
catch { }
}
///
/// 关闭客户端的按钮
///
///
///
private void button3_Click_1(object sender, EventArgs e)
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.clientClose(client);
}
#endregion
- 2021-08-22 00:31:02下载
- 积分:1
-
英飞凌BMS解决方案
说明: 英飞凌BMS解决方案的源码,可以作为一个行业的标准。(infineon bms solution.)
- 2020-06-21 07:40:02下载
- 积分:1
-
单片机时钟设计
本工程完成的是万年历的制作,万年历即时钟。摁S6键切换时钟,依次是时分秒,星期,年月日,闹钟。调表的时候,让时间暂停。摁S7让钟表小时,闹钟小时,年份加一,摁S8让钟表分钟,闹钟分钟, 月份加一,摁S9让钟表秒数,闹钟秒数,天数加一,摁S10让led灯全亮,摁S11让钟表小时, 闹钟小时, 年 份 减一 , 摁S12让钟表分钟, 闹钟分钟,月份减一,摁S9让钟表秒数, 闹钟秒数,天数减一
- 2023-01-18 12:55:04下载
- 积分:1
-
HUFFMAN
HUFFMAN编码在信息论中的应用实例!(Huffman coding in information theory in the application!)
- 2007-10-26 18:10:51下载
- 积分:1
-
STM32SourceCodeVC
STM代码+VC界面代码使用STM32的时候可以作为模板哦!(STM code+ VC interface code can be used as a template when STM32 Oh!)
- 2011-01-09 22:44:14下载
- 积分:1
-
Nokia5110
atmega16操作Nokia5110
编程语言为iccavr(atmega16 operation Nokia5110 programming language iccavr)
- 2013-05-29 10:02:28下载
- 积分:1
-
fdtd_2D_TE_PML
fdtd的2d算法,pml边界条件,二维TE波(fdtd the 2d algorithm, pml boundary conditions, 2D TE wave)
- 2007-02-02 16:43:27下载
- 积分:1
-
Web服务器和浏览器的设计
说明: 网络编程中C++ Web服务器和浏览器的设计源代码,用于网络编程实验。(The design source code of C++ Web server and browser in network programming is used for network programming experiment.)
- 2019-01-08 21:12:52下载
- 积分:1
-
dumpling
一种基于网络节点距离(节点间RTT值),将节点动态的划分在相应的聚类内,每个聚类有一个中心节点,其成员节点到它的距离不超过某一设定值(A network node based on distance (inter-node RTT value), the delineation of the dynamic nodes in the corresponding cluster, each cluster has a central node, the node of its members to its distance does not exceed a set value)
- 2008-07-06 11:39:45下载
- 积分:1