-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathSTM32Hardware.h
128 lines (107 loc) · 3.68 KB
/
STM32Hardware.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2018, Kenta Yonekura (a.k.a. yoneken)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Willow Garage, Inc. nor the names of its
* contributors may be used to endorse or promote prducts derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef ROS_STM32_HARDWARE_H_
#define ROS_STM32_HARDWARE_H_
#define STM32F3xx // Change for your device
#ifdef STM32F3xx
#include "stm32f3xx_hal.h"
#include "stm32f3xx_hal_uart.h"
#endif /* STM32F3xx */
#ifdef STM32F4xx
#include "stm32f4xx_hal.h"
#include "stm32f4xx_hal_uart.h"
#endif /* STM32F4xx */
#ifdef STM32F7xx
#include "stm32f7xx_hal.h"
#include "stm32f7xx_hal_uart.h"
#endif /* STM32F7xx */
extern UART_HandleTypeDef huart2;
class STM32Hardware {
protected:
UART_HandleTypeDef *huart;
const static uint16_t rbuflen = 512;
uint8_t rbuf[rbuflen];
uint32_t rind;
inline uint32_t getRdmaInd(void){ return (rbuflen - __HAL_DMA_GET_COUNTER(huart->hdmarx)) & (rbuflen - 1); }
const static uint16_t tbuflen = 512;
uint8_t tbuf[tbuflen];
uint32_t twind, tfind;
public:
STM32Hardware():
huart(&huart2), rind(0), twind(0), tfind(0){
}
STM32Hardware(UART_HandleTypeDef *huart_):
huart(huart_), rind(0), twind(0), tfind(0){
}
void init(){
reset_rbuf();
}
void reset_rbuf(void){
HAL_UART_Receive_DMA(huart, rbuf, rbuflen);
}
int read(){
int c = -1;
if(rind != getRdmaInd()){
c = rbuf[rind++];
rind &= rbuflen - 1;
}
return c;
}
void flush(void){
static bool mutex = false;
if((huart->gState == HAL_UART_STATE_READY) && !mutex){
mutex = true;
if(twind != tfind){
uint16_t len = tfind < twind ? twind - tfind : tbuflen - tfind;
HAL_UART_Transmit_DMA(huart, &(tbuf[tfind]), len);
tfind = (tfind + len) & (tbuflen - 1);
}
mutex = false;
}
}
void write(uint8_t* data, int length){
int n = length;
n = n <= tbuflen ? n : tbuflen;
int n_tail = n <= tbuflen - twind ? n : tbuflen - twind;
memcpy(&(tbuf[twind]), data, n_tail);
twind = (twind + n) & (tbuflen - 1);
if(n != n_tail){
memcpy(tbuf, &(data[n_tail]), n - n_tail);
}
flush();
}
unsigned long time(){ return HAL_GetTick();; }
protected:
};
#endif