f806c5829b
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2004 Steve Karg
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0
|
|
*
|
|
*********************************************************************/
|
|
#ifndef RS485_H
|
|
#define RS485_H
|
|
|
|
#include <stdint.h>
|
|
#include "bacnet/datalink/mstp.h"
|
|
#include "bacport.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Set_Interface(char *ifname);
|
|
BACNET_STACK_EXPORT
|
|
const char *RS485_Interface(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Initialize(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Send_Frame(
|
|
struct mstp_port_struct_t *mstp_port, /* port specific data */
|
|
const uint8_t *buffer, /* frame to send (up to 501 bytes of data) */
|
|
uint16_t nbytes); /* number of bytes of data (up to 501) */
|
|
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Check_UART_Data(
|
|
struct mstp_port_struct_t *mstp_port); /* port specific data */
|
|
|
|
BACNET_STACK_EXPORT
|
|
uint32_t RS485_Get_Baud_Rate(void);
|
|
BACNET_STACK_EXPORT
|
|
bool RS485_Set_Baud_Rate(uint32_t baud);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Print_Error(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
bool RS485_Interface_Valid(unsigned port_number);
|
|
BACNET_STACK_EXPORT
|
|
void RS485_Print_Ports(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif
|