Loading...
Searching...
No Matches
usbcomm.h
1#ifndef _USBTRANSCEIVE_H
2#define _USBTRANSCEIVE_H
3
4#include "FreeRTOS.h"
5#include "message_buffer.h"
6#include "stdint.h"
7#include "stm32f439xx.h"
8
9#include "shell.h"
10#include "uart.h"
11
12#define USB_TX_SIZE 4096
13#define USB_RX_SIZE 128
14
15void vUsbReceive(void *);
16void vUsbTransmit(void *);
17void vShellExec(void *);
18
19typedef struct {
20 UART usb;
22
23typedef struct {
24 UART usb;
25 Shell shell;
27
28#endif
Struct definition for UART interface.
Definition uart.h:53
Definition shell.h:34