| 다운로드 | 방명록 | 디렉토리
digtak다운로드Communications / MobileOther Communications / Mobile
Download Navigate
Top download this category
검색:
 Other Communications / Mobile   437         6   7   8   9   10         6/18   GO 
126.p2pdemo
P2P 프로그램, NAT, 서버 및 클라이언트 통신의 데모
time: 2011-01-16   size:818 KB KB    tool:Delphi    down: 0
as.jpg
127.PocketLift18180911142004
포켓 용 코딩 시연. 그것은 사람들은 포켓 PC 프로그래밍에 새 그것은 너무 많은 문제없이 할 수있다는 것을 보여주기 때문에 정말 그것은 좋은 것입니다. 또 GDI는 그래픽 아니라 OpenGL을 같이 좋은하지만 사용하는 좋은을 많이 사용합니다. 전체 소스는 분명히 포함되어 있습니다.
time: 2011-01-13   size:357 KB KB    tool:C++    down: 0
PocketLift.ico
128.SendMsg
제어 모듈은 GSM Faduanxiaoxi 코드를 플래시의 소스 코드의 무결성을 발행, 그리고 문자의 기능을 달성할 수있는 직접 사용될 수있습니다.
time: 2011-01-11   size:45.0 KB KB    tool:Visual C++    down: 1
129.spread-communication
스펙트럼 확산 통신 시스템의 MATLAB 시뮬레이션, CDMA의 시스템 시뮬레이션을위한 완전한 소스 코드를 matlab에
time: 2011-01-11   size:75.0 KB KB    tool:matlab    down: 0
130.8ChannelVisualMeter
8 채널 가상 오실로스코프, VB, 소스 코드에 의해 작성 된 소스 코드의 무결성, 실행 하 고 직접 사용할 수 있습니다.
time: 2011-01-07   size:61.0 KB KB    tool:Visual Basic    down: 0
RESCUE.ICO
131.Serial test program
시리얼 테스트 프로그램 입니다.
time: 2011-01-06   size:5.22 MB KB    tool:VC    down: 2
SerialCom.ico
132.httptunneling
http tunneling 프로그램
time: 2011-01-03   size:87.0 KB KB    tool:VC    down: 0
133.zip_code_client
using indy10zip code client example
time: 2011-01-02   size:197 KB KB    tool:VC    down: 0
App.ico
134.tcp_ip_example_using_indy10
tcp_ip_example_using_indy10server_on_excute
time: 2011-01-02   size:196 KB KB    tool:Delphi    down: 0
App.ico
135.tcp_ip_example
indy10_example server_schesuler
time: 2011-01-02   size:9.00 KB KB    tool:Delphi    down: 0
136.TCP/Chating Program
this is tcp/Chating Program
time: 2011-01-01   size:86.0 KB KB    tool:VC    down: 0
137.ofdm_ls_mmse_compare
LS는 및 MMSE 채널 추정 절차는 OFDM 시뮬레이션, 비교, 조정할 수있습니다 - 작업 패스
time: 2010-12-03   size:9.00 KB KB    tool:matlab    down: 0
138.IIRfilter
IIR 필터 및 도입의 원칙을 달성하기 위해 필터를 MATLAB 구현을 기반으로 디자인을 달성했다.
time: 2010-12-03   size:1.68 MB KB    tool:matlab    down: 0
139.DSP Board
DSP Board에 관한 자료입니다.
time: 2010-11-28   size:2.52 MB KB    tool:VC    down: 0
140.Satellite communications
Satellite communications 에 관한 DSP 보트 자료입니다.
time: 2010-11-28   size:1.31 MB KB    tool:VC    down: 0
141.Galaxy S Android sdk skins
android sdk의 갤럭시 스킨사용법은 압축풀면 나와있어요많은 개발자들에게 도움이 되길 바랍니다.
time: 2010-11-27   size:418 KB KB    tool:Java    down: 0
捞固瘤_3.png
142.android smsmessage control
안드로이드 sms 메세지 컨트롤 하는 소스 입니다.
time: 2010-11-14   size:38.0 KB KB    tool:Java    down: 0
icon.png
143.android camera control
직접 만든 안드로이드 카메라 컨트롤 예제 입니다.
time: 2010-11-14   size:80.0 KB KB    tool:Java    down: 1
icon.png
144.Server, Client, connection, Command, Data Channel between Channel Flow Control implementation with mutually Go-Back-N
Server, Client간에 Data Channel, Command Channel을 연결, 상호간에 Go-Back-N을 이용한 Flow Control을 구현 1) CRC-16를 계산하는데 있어 본래에는 각 8bit 마다 Polynomial로 나눈 나머지들을 전부 더해 나가야 한다. 하지만 그것은 Frame, 그리고 전체 데이터의 길이가 길어질수록 많은 동작을 필요로 하게 된다. -> 그리하여 8bit(256개)에 대한 CRC 나눗셈 결과를 미리 계산하여 table로서 제작을 한다. (위는 Server, Client측이 접속 완료 이후 동일하게 제작한다.) 2) Command, Data, ACK 전송을 위한 Frame을 구조체로 제작, 각 단계에서 Server와 Client 간에 데이터를 주고받을 때는 이 Frame을 주고받는다. 4) 명령어 전송 가. Client 1. 사용자로부터 명령어를 콘솔상에서 입력받는다. 이 중 list, get, put 세 개를 제외한 다른 명령어는 전부 무시된다. 2. list, get, put 명령어가 발생 시 이를 Command Frame으로 만든다. Frame으로 만들 때, Command Frame의 구성은 과제의 제한사항을 준수하였다. 3. Frame을 구성 후, 마지막으로 CRC-16을 계산하여 Error Check Code를 생성한다. 이 때, SeqenceNo는 CRC 구성에서 제외한다. 4. 구성된 Frame을 Server측에 전달하고 ACK를 기다린다. ACK가 전달되기 전 에는 다른 명령어를 받을 수 없다. 나. Server 1. Server 시작 후, 바로 사용자로부터 Command Frame이 전달되기를 기다린다. 사용자로부터 명령어가 전송되기 이전에는 다른 동작을 할 수 없기에 Data Channel에 대한 전송은 필요없다. 2. Command Channel로부터 명령어가 전송되었다면, 전송된 명령어의 CRC-16에 의한 코드를 ...
time: 2010-11-10   size:12.0 KB KB    tool:C-C++    down: 3
145.Receiver, Sender communication program
Socket Programming, Receiver 와 Sender간의 File upload & Download 기능을 수행
time: 2010-11-10   size:5.00 KB KB    tool:C-C++    down: 0
146.CAN communication example
임베디드 프로그래밍 중 CAN통신의 기본 알고리즘에 대한 내용Xilinx보드상에서 쓸수 있음
time: 2010-11-10   size:31.0 KB KB    tool:VC    down: 0
147.remotedroid
android remote control pc program
time: 2010-11-04   size:1.51 MB KB    tool:Java    down: 0
icon.gif
148.Chat
VC 기반 LAN 채팅 프로그램을 받을 수 있습니다, UCP-소스 코드 무결성, 그리고 직접적으로 사용 될 수 있습니다.
time: 2010-11-04   size:200 KB KB    tool:Visual C++    down: 0
Chat.ico
149.swiftp
android ftp server
time: 2010-11-03   size:1.45 MB KB    tool:Java    down: 0
notification.png
150.M-PSK
남 - PSK 심볼 에러 비율과 비의 비율 - matlab에 소스 - 남 - PSK 심볼 에러 비율과 비 율 matlab에 소스
time: 2010-10-29   size:53.0 KB KB    tool:matlab    down: 1
 Other Communications / Mobile   437         6   7   8   9   10         6/18   GO 
About - Advertise - Sitemap