-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathstm32-slcan.h
57 lines (46 loc) · 1.71 KB
/
stm32-slcan.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
* <[email protected]> wrote this file. As long as you retain this
* notice you can do whatever you want with this stuff. If we meet some day,
* and you think this stuff is worth it, you can buy me a beer in return
* Gerhard Bertelsmann
* ----------------------------------------------------------------------------
*/
#ifndef _STM32_SLCAN_H_
#define _STM32_SLCAN_H_
#include <libopencm3/cm3/nvic.h>
#include <libopencm3/cm3/systick.h>
#include <libopencm3/stm32/can.h>
#include <libopencm3/stm32/gpio.h>
#include <libopencm3/stm32/flash.h>
#include <libopencm3/stm32/rcc.h>
#include <libopencm3/stm32/usart.h>
#include <stdio.h>
#include <errno.h>
#define CAN_MAX_RETRY 10000
/******************************************************************************
* Simple ringbuffer implementation from open-bldc's libgovernor that
* you can find at:
* https://github.com/open-bldc/open-bldc/tree/master/source/libgovernor
*****************************************************************************/
typedef int32_t ring_size_t;
#define XON 0x11
#define XOFF 0x13
struct ring {
uint8_t *data;
ring_size_t size;
uint32_t begin;
uint32_t end;
};
/* usart */
void usart_setup(void);
int32_t ring_write_ch(struct ring *ring, uint8_t ch);
int32_t ring_write(struct ring *ring, uint8_t * data, ring_size_t size);
int32_t ring_read_ch(struct ring *ring, uint8_t * ch);
int32_t ring_bytes_free(const struct ring *ring);
uint8_t uart_read_blocking(void);
/* utils */
uint8_t nibble2bin(uint8_t s);
void bin2hex(uint8_t *dst, unsigned char c);
uint8_t hex2bin(char *s);
#endif /* _STM32_SLCAN_H_ */