Rename bridge_protocol_handler.[ch] to slave_protocol_handler.[ch]

This commit is contained in:
László Monda
2017-05-29 22:07:13 +02:00
parent 98701d1c85
commit 2e66d4bc21
3 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
#ifndef __SLAVE_PROTOCOL_HANDLER__
#define __SLAVE_PROTOCOL_HANDLER__
// Includes:
#include "fsl_port.h"
// Macros:
#define BRIDGE_RX_BUFFER_SIZE 100
#define BRIDGE_TX_BUFFER_SIZE 100
#define PROTOCOL_RESPONSE_SUCCESS 0
#define PROTOCOL_RESPONSE_GENERIC_ERROR 1
// Variables:
uint8_t BridgeRxBuffer[BRIDGE_RX_BUFFER_SIZE];
uint8_t BridgeTxBuffer[BRIDGE_TX_BUFFER_SIZE];
uint8_t BridgeTxSize;
// Functions:
extern void BridgeProtocolHandler(void);
#endif