no-OS
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
chibios_uart.h
Go to the documentation of this file.
1/***************************************************************************/
33#ifndef _CHIBIOS_UART_H_
34#define _CHIBIOS_UART_H_
35
36#include "no_os_uart.h"
37#include "hal.h"
38
39#if (HAL_USE_UART==TRUE)
40
47 SerialDriver *huart;
49 SerialConfig *sdconfig;
50};
51
58 SerialDriver *huart;
60 SerialConfig *sdconfig;
61};
62
67
68#endif //HAL_USE_UART==TRUE
69
70#endif //_CHIBIOS_UART_H_
const struct no_os_uart_platform_ops chibios_uart_ops
chibios platform specific UART platform ops structure
Definition chibios_uart.c:174
Header file of UART interface.
chibios platform specific UART descriptor
Definition chibios_uart.h:56
SerialDriver * huart
Definition chibios_uart.h:58
SerialConfig * sdconfig
Definition chibios_uart.h:60
Additional UART config parameters.
Definition chibios_uart.h:45
SerialConfig * sdconfig
Definition chibios_uart.h:49
SerialDriver * huart
Definition chibios_uart.h:47
Structure holding UART function pointers that point to the platform specific function.
Definition no_os_uart.h:143