Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Program C Ansi Programming Embedded Systems in C and C++ phần 8
Đang chuẩn bị liên kết để tải về tài liệu:
Program C Ansi Programming Embedded Systems in C and C++ phần 8
Tâm Nguyên
72
11
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Tham khảo tài liệu 'program c ansi programming embedded systems in c and c++ phần 8', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Method puts Description Copies the null-terminated string s to the serial port and appends a newline character. Notes In rare cases this function may return success though the newline was not actually sent. Returns The number of characters transmitted successfully. Otherwise -1 is returned to indicate error. int SerialPort puts const char s const char p Send each character of the string. for p s p 0 p if putchar p 0 break Add a newline character. putchar n return p - s 1 puts The receive method getchar is similar toputchar. It starts by checking if the receive buffer is empty. If so an error code is returned. Otherwise one byte of data is removed from the receive buffer and returned to the caller. The gets method calls getchar repeatedly until either a newline character is found or there is no more data available at the serial port. It then returns whatever string was found up to that point. The code for both of these methods follows Method getchar Description Read one character from the serial port. Notes Returns The next character found on this input stream. -1 is returned in the case of an error. int SerialPort getchar void int c if pRxQueue- isEmpty return -1 There is no input data available. int rxStalled pRxQueue- isFull Read the next byte out of the receive FIFO. c pRxQueue- remove If the receive engine is stalled restart it. if rxStalled scc.rxStart channel return c getchar Method gets Description Collects a string of characters terminated by a newline character from the serial port and places it in s. The newline character is replaced by a null character. Notes The caller is responsible for allocating adequate space for the string. Warnings This function does not block waiting for a newline. If a complete string is not found it will return whatever is available in the receive queue. Returns A pointer to the string. Otherwise NULL is returned to indicate an error. char SerialPort gets char s char p int c Read characters until a newline is found or no more
TÀI LIỆU LIÊN QUAN
Ebook C how to program 6th edition
How to program C (Seventh edition): Part 1
Lecture Charter 3: Structured program development in C
Lecture Charter 4: C Program Control
How to program C (Seventh edition): Part 2
Lecture C++ programming: from problem analysis to program design - Chapter 2: From problem analysis to program design
Visual C# 2012 How to program, Fifth Edition - Paul Deitel, Harvey Deitel]
Sams Teach Yourself C in 21 Days - Fourth Edition
C# 1 Introduction to programming and the C# language
Ebook Data Structures and Program Design in C++
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.