⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usb_cdc.h

📁 USB 通信,使用的是Freescale公司的CMX协议栈
💻 H
字号:
/****************************************************************************
*
*            Copyright (c) 2006 by CMX Systems, Inc.
*
* This software is copyrighted by and is the sole property of
* CMX.  All rights, title, ownership, or other interests
* in the software remain the property of CMX.  This
* software may only be used in accordance with the corresponding
* license agreement.  Any unauthorized use, duplication, transmission,
* distribution, or disclosure of this software is expressly forbidden.
*
* This Copyright notice may not be removed or modified without prior
* written consent of CMX.
*
* CMX reserves the right to modify this software without notice.
*
* CMX Systems, Inc.
* 12276 San Jose Blvd. #511
* Jacksonville, FL 32223
* USA
*
* Tel:  (904) 880-1840
* Fax:  (904) 880-1632
* http: www.cmx.com
* email: cmx@cmx.com
*
***************************************************************************/

#ifndef _USB_CDC_H_
#define _USB_CDC_H_

typedef struct {
  hcc_u32 bps;
  hcc_u8 ndata;
  hcc_u8 nstp;
  hcc_u8 parity;
  hcc_u8 pad1;
} line_coding_t;

extern int cdc_putch(hcc_u8 c);
extern int cdc_input_ready(void);
extern char cdc_getch(void);
extern void cdc_init(void);
extern cdc_line_coding_changed(void);
extern void cdc_get_line_coding(line_coding_t *l);
extern void cdc_putbuf(void);
#endif

/****************************** END OF FILE **********************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -