-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathmain.cpp
63 lines (54 loc) · 1.61 KB
/
main.cpp
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
/*
* Copyright (c) 2016-2018, Niklas Hauser
* Copyright (c) 2017, Sascha Schade
*
* This file is part of the modm project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// ----------------------------------------------------------------------------
#include <modm/board.hpp>
#include <modm/architecture/interface/memory.hpp>
#include <inttypes.h>
int main()
{
Board::initialize();
Board::Leds::setOutput();
// 600 pointers to allocated memories
uint8_t *d[600];
int free_ii = 0;
for (int ii=0; ii < 600; ii++)
{
d[ii] = nullptr;
uint32_t size = rand() % (1024 * 100);
d[ii] = new (modm::MemoryFastData) uint8_t[size];
// print what size we requested and if it succeeded
MODM_LOG_INFO.printf(" malloc(%3" PRId32 "kB) = ", size/1024);
if (d[ii]) MODM_LOG_INFO << d[ii];
else MODM_LOG_INFO << "NO MEMORY ";
if ((rand() % 100) >= 50) {
// only some memory is returned to the system
uint8_t *df;
while ((df = d[free_ii++]) == nullptr and free_ii <= ii) ;
MODM_LOG_INFO << " ...freeing " << df;
delete df;
}
MODM_LOG_INFO << modm::endl;
}
size_t total_size{0};
for (const auto [traits, start, end, size] : modm::platform::HeapTable())
{
MODM_LOG_INFO.printf("Memory section %#x @[0x%p,0x%p](%u)\n",
traits.value, start, end, size);
total_size += size;
}
MODM_LOG_INFO << "Total heap size (kB): " << (total_size >> 10) << modm::endl;
while (true)
{
Board::Leds::toggle();
modm::delay(500ms);
}
return 0;
}