1 Star 3 Fork 1

Kono/USBComposite_stm32f1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
usb_multi_serial.h 3.42 KB
一键复制 编辑 原始数据 按行查看 历史
/******************************************************************************
* The MIT License
*
* Copyright (c) 2011 LeafLabs LLC.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*****************************************************************************/
/**
* @file libmaple/include/libmaple/usb_device.h
* @brief USB Composite with CDC ACM and HID support
*
* IMPORTANT: this API is unstable, and may change without notice.
*/
#ifndef _USB_MULTI_SERIAL_H_
#define _USB_MULTI_SERIAL_H_
#include <libmaple/libmaple_types.h>
#include <libmaple/usb.h>
#include "usb_generic.h"
#include "usb_composite_serial.h"
#ifdef __cplusplus
extern "C" {
#endif
#define USB_MULTI_SERIAL_MAX_PORTS 3
#define USB_MULTI_SERIAL_DEFAULT_TX_SIZE 24
#define USB_MULTI_SERIAL_DEFAULT_RX_SIZE 64 // must be pwoer of 2 for mysterious reasons
#define USB_MULTI_SERIAL_BUFFER_SIZE 256 // must be power of 2 due to code structure
#define USB_MULTI_SERIAL_BUFFERS_SIZE(numPorts) ((numPorts)*2*USB_MULTI_SERIAL_BUFFER_SIZE)
void multi_serial_initialize_port_data(uint32 numPorts, uint8* buffers);
extern USBCompositePart usbMultiSerialPart;
/*
* CDC ACM interface
*/
uint32 multi_serial_tx(uint32 port, const uint8* buf, uint32 len);
uint32 multi_serial_rx(uint32 port, uint8* buf, uint32 len);
uint32 multi_serial_peek(uint32 port, uint8* buf, uint32 len);
uint32 multi_serial_peek_ex(uint32 port, uint8* buf, uint32 offset, uint32 len);
void multi_serial_setTXEPSize(uint32 port, uint16_t size);
void multi_serial_setRXEPSize(uint32 port, uint16_t size);
uint32 multi_serial_data_available(uint32 port); /* in RX buffer */
uint16 multi_serial_get_pending(uint32 port);
uint8 multi_serial_get_dtr(uint32 port);
uint8 multi_serial_get_rts(uint32 port);
/* Retrieve a copy of the current line coding structure. */
void multi_serial_get_line_coding(uint32, composite_cdcacm_line_coding*);
/* Line coding conveniences. */
int multi_serial_get_baud(uint32 port); /* dwDTERate */
int multi_serial_get_stop_bits(uint32 port); /* bCharFormat */
int multi_serial_get_parity(uint32 port); /* bParityType */
int multi_serial_get_n_data_bits(uint32 port); /* bDataBits */
/*
* Hack: hooks for bootloader reset signalling
*/
void multi_serial_set_hooks(uint32 port, unsigned hook_flags, void (*hook)(unsigned, void*));
#define multi_serial_remove_hooks(port, hook_flags) multi_serial_remove_hooks(port, hook_flags, 0)
#ifdef __cplusplus
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Kono2019/USBComposite_stm32f1.git
git@gitee.com:Kono2019/USBComposite_stm32f1.git
Kono2019
USBComposite_stm32f1
USBComposite_stm32f1
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385