隊列(Queue)是限定只能在表的一端進行插入和在另一端進行刪除操作的線性表。在表中,允許插入的一端稱作"隊列尾(tail)",允許刪除的另一端稱作"隊列頭(front)"。
上傳時間: 2016-04-12
上傳用戶:330402686
This example describes how to use the ADC and DMA to transfer continuously converted data from ADC to a data buffer. The ADC is configured to converts continuously ADC channel14. Each time an end of conversion occurs the DMA transfers, in circular mode, the converted data from ADC1 DR register to the ADC_ConvertedValue variable. The ADC1 clock is set to 14 MHz.
標簽: continuously ADC describes converted
上傳時間: 2014-01-03
上傳用戶:徐孺
This example provides a description of how to use a DMA channel to transfer a word data buffer from memory (Flash) to memory (RAM). The dedicated DMA channel is configured to transfer once a time a 32 word data buffer stored as constant in the Flash memory to another buffer in the RAM memory. The received data are stored in the DST_Buffer. The DMA channel transfer complete interrupt is enabled to generate an interrupt at the end of the buffer transfer. As soon as the transfer is completed an interrupt is generated and in the DMA channel interrupt routine the transfer complete interrupt pending bit is cleared. The data counter is stored before and after the transfer to show that all data has been transfered. TransferStatus gives the data transfer status where it is PASSED if transmitted and received data are the same otherwise it is FAILED
標簽: description provides transfer example
上傳時間: 2016-04-24
上傳用戶:ecooo
mysql的安裝,mysql-front的安裝 以及里面有許多小程序
標簽: mysql
上傳時間: 2014-01-02
上傳用戶:lht618
基于UDP實現E-Mail傳輸 工作過程描述: 客戶端描述: 1. Client(以下簡稱C端)端將郵件以規定的大小封裝為符合要求的UDP包。 2. 將封裝好的UDP包發出,并等待Server(以下簡稱S端)端收到相應的UDP包后返回的回應Acknowledge(以下簡稱為ACK)。若收到的為Positive ACK,則繼續發包;若收到的為Negtive ACK,則將應發的包重發。 3. 直到C端將所有要發的包都發完,并都已經收到S端的回應,最后發一個End包,直接關閉此進程。 服務器端描述: 1. S端啟動服務進程,并監聽相應端口。 2. 若收到C端發出的有關請求,按如下情況給出相應的反映: a. 將收到的包進行檢測,若收到的包有錯則拋棄(discard),并發給C端一個negtive ACK。 b. 將收到的包進行檢測,若收到的包正常,則將此包進行解包,將內容輸出至一臨時文件;并發給C端一個positive ACK。 3.依次收到來自C斷的包,直到收到end為止,并關閉此進程,轉回監聽狀態。
上傳時間: 2014-12-08
上傳用戶:sxdtlqqjl
unit comm interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SPComm, StdCtrls, ExtCtrls type TFcomm = class(TForm) Comm1: TComm GroupBox1: TGroupBox Memo1: TMemo Memo2: TMemo GroupBox2: TGroupBox Button1: TButton Btn_send: TButton Button2: TButton procedure Button1Click(Sender: TObject) procedure Button2Click(Sender: TObject) procedure Btn_sendClick(Sender: TObject) procedure Comm1ReceiveData(Sender: TObject Buffer: Pointer BufferLength: Word) private { Private declarations } public { Public declarations } end
標簽: interface Messages Graphics Controls
上傳時間: 2016-06-10
上傳用戶:gxmm
symbian os手機程序開發,s60平臺http client end to end
上傳時間: 2016-06-13
上傳用戶:caixiaoxu26
Hospital queue is a regular met are very familiar with the phenomenon. It every day one way or another in the form in front of us. For example, patients to hospitals, pharmacies dispensing to patients, patients with transfusion to the infusion room, often need wait To some kind of service.
標簽: phenomenon Hospital familiar regular
上傳時間: 2013-12-26
上傳用戶:四只眼
求標準偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=t+x(i,j)*x(i,j) end end c=sqrt(t/(m*n-1
標簽: gt myfunction function numel
上傳時間: 2014-01-15
上傳用戶:hongmo
求標準偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=t+x(i,j)*x(i,j) end end c=sqrt(t/(m*n-1
標簽: gt myfunction function numel
上傳時間: 2013-12-26
上傳用戶:dreamboy36