forked from vedderb/vesc_bms_fw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mempools.c
72 lines (56 loc) · 1.66 KB
/
mempools.c
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
/*
Copyright 2019 - 2020 Benjamin Vedder [email protected]
This file is part of the VESC BMS firmware.
The VESC BMS 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.
The VESC BMS 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mempools.h"
// Private types
typedef struct {
volatile bool is_taken;
main_config_t conf;
} conf_container_t;
// Private variables
static conf_container_t m_confs[MEMPOOLS_CONF_NUM] = {{0}};
static int m_conf_highest = 0;
main_config_t *mempools_alloc_conf(void) {
for (int i = 0;i < MEMPOOLS_CONF_NUM;i++) {
if (i > m_conf_highest) {
m_conf_highest = i;
}
if (!m_confs[i].is_taken) {
m_confs[i].is_taken = true;
return &m_confs[i].conf;
}
}
m_conf_highest++;
return 0;
}
void mempools_free_conf(main_config_t *conf) {
for (int i = 0;i < MEMPOOLS_CONF_NUM;i++) {
if (&m_confs[i].conf == conf) {
m_confs[i].is_taken = false;
return;
}
}
}
int mempools_conf_highest(void) {
return m_conf_highest;
}
int mempools_conf_allocated_num(void) {
int res = 0;
for (int i = 0;i < MEMPOOLS_CONF_NUM;i++) {
if (m_confs[i].is_taken) {
res++;
}
}
return res;
}