bldc/packet.h

52 lines
1.7 KiB
C
Raw Normal View History

/*
2021-01-13 12:51:55 -08:00
Copyright 2016 - 2021 Benjamin Vedder benjamin@vedder.se
2016-11-04 07:18:34 -07:00
This file is part of the VESC firmware.
2021-01-13 12:51:55 -08:00
2016-11-04 07:18:34 -07:00
The VESC firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2021-01-13 12:51:55 -08:00
2016-11-04 07:18:34 -07:00
The VESC firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2021-01-13 12:51:55 -08:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2014-01-09 06:20:26 -08:00
#ifndef PACKET_H_
#define PACKET_H_
#include <stdint.h>
2019-02-18 10:30:19 -08:00
#include <stdbool.h>
2014-01-09 06:20:26 -08:00
// Settings
2019-02-18 10:30:19 -08:00
#ifndef PACKET_MAX_PL_LEN
#define PACKET_MAX_PL_LEN 512
#endif
2021-01-13 09:05:16 -08:00
#define PACKET_BUFFER_LEN (PACKET_MAX_PL_LEN + 8)
// Types
typedef struct {
void(*send_func)(unsigned char *data, unsigned int len);
void(*process_func)(unsigned char *data, unsigned int len);
unsigned int rx_read_ptr;
unsigned int rx_write_ptr;
int bytes_left;
unsigned char rx_buffer[PACKET_BUFFER_LEN];
unsigned char tx_buffer[PACKET_BUFFER_LEN];
} PACKET_STATE_t;
2014-01-09 06:20:26 -08:00
// Functions
void packet_init(void (*s_func)(unsigned char *data, unsigned int len),
2021-01-13 09:05:16 -08:00
void (*p_func)(unsigned char *data, unsigned int len), PACKET_STATE_t *state);
void packet_reset(PACKET_STATE_t *state);
void packet_process_byte(uint8_t rx_data, PACKET_STATE_t *state);
void packet_send_packet(unsigned char *data, unsigned int len, PACKET_STATE_t *state);
2014-01-09 06:20:26 -08:00
#endif /* PACKET_H_ */