21 lines
344 B
C
21 lines
344 B
C
#ifndef __SLAVE_PROTOCOL_HANDLER_H__
|
|
#define __SLAVE_PROTOCOL_HANDLER_H__
|
|
|
|
// Includes:
|
|
|
|
#include "fsl_port.h"
|
|
#include "crc16.h"
|
|
#include "slave_protocol.h"
|
|
|
|
// Variables:
|
|
|
|
extern i2c_message_t RxMessage;
|
|
extern i2c_message_t TxMessage;
|
|
|
|
// Functions:
|
|
|
|
void SlaveRxHandler(void);
|
|
void SlaveTxHandler(void);
|
|
|
|
#endif
|