Home |
RTTarget-32 Programming Manual Function RTSendBlock System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) |
Function RTSendBlockRTSendBlock transfers a block of data to the send buffer: void RTSendBlock(int Port, const void * Data, int Length); ParametersDataA pointer to the data to be transmitted. LengthSpecifies the size of the block in bytes. This function is equivalent to for(i=0; i<Length; i++) RTSendChar(P, Data[i]); but is faster.
|