Revision 0339e6fd
modules/BI-Vital_5-1/Makefile | ||
---|---|---|
130 | 130 |
DEPDIR := $(dir $(BUILDDIR)).dep |
131 | 131 |
|
132 | 132 |
# Linker script. |
133 |
LDSCRIPT := $(MODULE_DIR)/STM32L476xG.ld
|
|
133 |
LDSCRIPT := $(MODULE_DIR)/STM32L476JE.ld
|
|
134 | 134 |
|
135 | 135 |
# General AMiRo-OS files. |
136 | 136 |
include ../../amiro-os.mk |
modules/BI-Vital_5-1/STM32L476JE.ld | ||
---|---|---|
1 |
/* |
|
2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform. |
|
3 |
Copyright (C) 2016..2020 Thomas Schöpping et al. |
|
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU General Public License as published by |
|
7 |
the Free Software Foundation, either version 3 of the License, or |
|
8 |
(at your option) any later version. |
|
9 |
|
|
10 |
This program is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
GNU General Public License for more details. |
|
14 |
|
|
15 |
You should have received a copy of the GNU General Public License |
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
|
|
19 |
/* |
|
20 |
* STM32L476JE memory setup. |
|
21 |
*/ |
|
22 |
MEMORY |
|
23 |
{ |
|
24 |
flash0 : org = 0x08000000, len = 512K |
|
25 |
flash1 : org = 0x00000000, len = 0 |
|
26 |
flash2 : org = 0x00000000, len = 0 |
|
27 |
flash3 : org = 0x00000000, len = 0 |
|
28 |
flash4 : org = 0x00000000, len = 0 |
|
29 |
flash5 : org = 0x00000000, len = 0 |
|
30 |
flash6 : org = 0x00000000, len = 0 |
|
31 |
flash7 : org = 0x00000000, len = 0 |
|
32 |
ram0 : org = 0x20000000, len = 96k |
|
33 |
ram1 : org = 0x00000000, len = 0 |
|
34 |
ram2 : org = 0x00000000, len = 0 |
|
35 |
ram3 : org = 0x00000000, len = 0 |
|
36 |
ram4 : org = 0x10000000, len = 32k |
|
37 |
ram5 : org = 0x00000000, len = 0 |
|
38 |
ram6 : org = 0x00000000, len = 0 |
|
39 |
ram7 : org = 0x00000000, len = 0 |
|
40 |
} |
|
41 |
|
|
42 |
/* For each data/text section two region are defined, a virtual region |
|
43 |
and a load region (_LMA suffix).*/ |
|
44 |
|
|
45 |
/* Flash region to be used for exception vectors.*/ |
|
46 |
REGION_ALIAS("VECTORS_FLASH", flash0); |
|
47 |
REGION_ALIAS("VECTORS_FLASH_LMA", flash0); |
|
48 |
|
|
49 |
/* Flash region to be used for constructors and destructors.*/ |
|
50 |
REGION_ALIAS("XTORS_FLASH", flash0); |
|
51 |
REGION_ALIAS("XTORS_FLASH_LMA", flash0); |
|
52 |
|
|
53 |
/* Flash region to be used for code text.*/ |
|
54 |
REGION_ALIAS("TEXT_FLASH", flash0); |
|
55 |
REGION_ALIAS("TEXT_FLASH_LMA", flash0); |
|
56 |
|
|
57 |
/* Flash region to be used for read only data.*/ |
|
58 |
REGION_ALIAS("RODATA_FLASH", flash0); |
|
59 |
REGION_ALIAS("RODATA_FLASH_LMA", flash0); |
|
60 |
|
|
61 |
/* Flash region to be used for various.*/ |
|
62 |
REGION_ALIAS("VARIOUS_FLASH", flash0); |
|
63 |
REGION_ALIAS("VARIOUS_FLASH_LMA", flash0); |
|
64 |
|
|
65 |
/* Flash region to be used for RAM(n) initialization data.*/ |
|
66 |
REGION_ALIAS("RAM_INIT_FLASH_LMA", flash0); |
|
67 |
|
|
68 |
/* RAM region to be used for Main stack. This stack accommodates the processing |
|
69 |
of all exceptions and interrupts.*/ |
|
70 |
REGION_ALIAS("MAIN_STACK_RAM", ram0); |
|
71 |
|
|
72 |
/* RAM region to be used for the process stack. This is the stack used by |
|
73 |
the main() function.*/ |
|
74 |
REGION_ALIAS("PROCESS_STACK_RAM", ram0); |
|
75 |
|
|
76 |
/* RAM region to be used for data segment.*/ |
|
77 |
REGION_ALIAS("DATA_RAM", ram0); |
|
78 |
REGION_ALIAS("DATA_RAM_LMA", flash0); |
|
79 |
|
|
80 |
/* RAM region to be used for BSS segment.*/ |
|
81 |
REGION_ALIAS("BSS_RAM", ram0); |
|
82 |
|
|
83 |
/* RAM region to be used for the default heap.*/ |
|
84 |
REGION_ALIAS("HEAP_RAM", ram0); |
|
85 |
|
|
86 |
/* RAM region with parity check. */ |
|
87 |
REGION_ALIAS("PARCHECK_RAM", ram4); |
|
88 |
|
|
89 |
/* RAM region retainable in Standby mode. */ |
|
90 |
REGION_ALIAS("TANDBY_RAM", ram4); |
|
91 |
|
|
92 |
/* RAM region that is write-protectable. */ |
|
93 |
REGION_ALIAS("WPROTECTED_RAM", ram4); |
|
94 |
|
|
95 |
/* Generic rules inclusion.*/ |
|
96 |
INCLUDE rules.ld |
modules/BI-Vital_5-1/STM32L476xJ.ld | ||
---|---|---|
1 |
/* |
|
2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform. |
|
3 |
Copyright (C) 2016..2020 Thomas Schöpping et al. |
|
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU General Public License as published by |
|
7 |
the Free Software Foundation, either version 3 of the License, or |
|
8 |
(at your option) any later version. |
|
9 |
|
|
10 |
This program is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
GNU General Public License for more details. |
|
14 |
|
|
15 |
You should have received a copy of the GNU General Public License |
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
|
|
19 |
/* |
|
20 |
* STM32L476xJ memory setup. |
|
21 |
*/ |
|
22 |
MEMORY |
|
23 |
{ |
|
24 |
flash0 : org = 0x08000000, len = 512K |
|
25 |
flash1 : org = 0x00000000, len = 0 |
|
26 |
flash2 : org = 0x00000000, len = 0 |
|
27 |
flash3 : org = 0x00000000, len = 0 |
|
28 |
flash4 : org = 0x00000000, len = 0 |
|
29 |
flash5 : org = 0x00000000, len = 0 |
|
30 |
flash6 : org = 0x00000000, len = 0 |
|
31 |
flash7 : org = 0x00000000, len = 0 |
|
32 |
ram0 : org = 0x20000000, len = 96k |
|
33 |
ram1 : org = 0x00000000, len = 0 |
|
34 |
ram2 : org = 0x00000000, len = 0 |
|
35 |
ram3 : org = 0x00000000, len = 0 |
|
36 |
ram4 : org = 0x10000000, len = 32k |
|
37 |
ram5 : org = 0x00000000, len = 0 |
|
38 |
ram6 : org = 0x00000000, len = 0 |
|
39 |
ram7 : org = 0x00000000, len = 0 |
|
40 |
} |
|
41 |
|
|
42 |
/* For each data/text section two region are defined, a virtual region |
|
43 |
and a load region (_LMA suffix).*/ |
|
44 |
|
|
45 |
/* Flash region to be used for exception vectors.*/ |
|
46 |
REGION_ALIAS("VECTORS_FLASH", flash0); |
|
47 |
REGION_ALIAS("VECTORS_FLASH_LMA", flash0); |
|
48 |
|
|
49 |
/* Flash region to be used for constructors and destructors.*/ |
|
50 |
REGION_ALIAS("XTORS_FLASH", flash0); |
|
51 |
REGION_ALIAS("XTORS_FLASH_LMA", flash0); |
|
52 |
|
|
53 |
/* Flash region to be used for code text.*/ |
|
54 |
REGION_ALIAS("TEXT_FLASH", flash0); |
|
55 |
REGION_ALIAS("TEXT_FLASH_LMA", flash0); |
|
56 |
|
|
57 |
/* Flash region to be used for read only data.*/ |
|
58 |
REGION_ALIAS("RODATA_FLASH", flash0); |
|
59 |
REGION_ALIAS("RODATA_FLASH_LMA", flash0); |
|
60 |
|
|
61 |
/* Flash region to be used for various.*/ |
|
62 |
REGION_ALIAS("VARIOUS_FLASH", flash0); |
|
63 |
REGION_ALIAS("VARIOUS_FLASH_LMA", flash0); |
|
64 |
|
|
65 |
/* Flash region to be used for RAM(n) initialization data.*/ |
|
66 |
REGION_ALIAS("RAM_INIT_FLASH_LMA", flash0); |
|
67 |
|
|
68 |
/* RAM region to be used for Main stack. This stack accommodates the processing |
|
69 |
of all exceptions and interrupts.*/ |
|
70 |
REGION_ALIAS("MAIN_STACK_RAM", ram0); |
|
71 |
|
|
72 |
/* RAM region to be used for the process stack. This is the stack used by |
|
73 |
the main() function.*/ |
|
74 |
REGION_ALIAS("PROCESS_STACK_RAM", ram0); |
|
75 |
|
|
76 |
/* RAM region to be used for data segment.*/ |
|
77 |
REGION_ALIAS("DATA_RAM", ram0); |
|
78 |
REGION_ALIAS("DATA_RAM_LMA", flash0); |
|
79 |
|
|
80 |
/* RAM region to be used for BSS segment.*/ |
|
81 |
REGION_ALIAS("BSS_RAM", ram0); |
|
82 |
|
|
83 |
/* RAM region to be used for the default heap.*/ |
|
84 |
REGION_ALIAS("HEAP_RAM", ram0); |
|
85 |
|
|
86 |
/* RAM region with parity check. */ |
|
87 |
REGION_ALIAS("PARCHECK_RAM", ram4); |
|
88 |
|
|
89 |
/* RAM region retainable in Standby mode. */ |
|
90 |
REGION_ALIAS("TANDBY_RAM", ram4); |
|
91 |
|
|
92 |
/* RAM region that is write-protectable. */ |
|
93 |
REGION_ALIAS("WPROTECTED_RAM", ram4); |
|
94 |
|
|
95 |
/* Generic rules inclusion.*/ |
|
96 |
INCLUDE rules.ld |
modules/BI-Vital_5-1/board.h | ||
---|---|---|
24 | 24 |
/*===========================================================================*/ |
25 | 25 |
|
26 | 26 |
/* |
27 |
* Setup for BI-Vital (BGv5.1) board. |
|
27 |
* Setup for BI-Vital (BG v5.1) board.
|
|
28 | 28 |
*/ |
29 | 29 |
|
30 | 30 |
/* |
31 | 31 |
* Board identifier. |
32 | 32 |
*/ |
33 |
#define BOARD_BIVITAL_BG51
|
|
34 |
#define BOARD_NAME "BI-Vital (BGv5.1)" |
|
33 |
#define BOARD_BIVITAL_51 |
|
34 |
#define BOARD_NAME "BI-Vital (BG v5.1)"
|
|
35 | 35 |
|
36 | 36 |
/* |
37 | 37 |
* Board oscillators-related settings. |
Also available in: Unified diff