Revision b93c5d98
| modules/NUCLEO-F401RE/Makefile | ||
|---|---|---|
| 1 |
################################################################################ |
|
| 2 |
# AMiRo-OS is an operating system designed for the Autonomous Mini Robot # |
|
| 3 |
# (AMiRo) platform. # |
|
| 4 |
# Copyright (C) 2016..2019 Thomas Schöpping et al. # |
|
| 5 |
# # |
|
| 6 |
# This program is free software: you can redistribute it and/or modify # |
|
| 7 |
# it under the terms of the GNU General Public License as published by # |
|
| 8 |
# the Free Software Foundation, either version 3 of the License, or # |
|
| 9 |
# (at your option) any later version. # |
|
| 10 |
# # |
|
| 11 |
# This program is distributed in the hope that it will be useful, # |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of # |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
|
| 14 |
# GNU General Public License for more details. # |
|
| 15 |
# # |
|
| 16 |
# You should have received a copy of the GNU General Public License # |
|
| 17 |
# along with this program. If not, see <http://www.gnu.org/licenses/>. # |
|
| 18 |
# # |
|
| 19 |
# This research/work was supported by the Cluster of Excellence Cognitive # |
|
| 20 |
# Interaction Technology 'CITEC' (EXC 277) at Bielefeld University, which is # |
|
| 21 |
# funded by the German Research Foundation (DFG). # |
|
| 22 |
################################################################################ |
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
################################################################################ |
|
| 27 |
# Build global options # |
|
| 28 |
# NOTE: Can be overridden externally. # |
|
| 29 |
# # |
|
| 30 |
|
|
| 31 |
# Compiler options here. |
|
| 32 |
ifeq ($(USE_OPT),) |
|
| 33 |
USE_OPT = -O2 -fomit-frame-pointer -falign-functions=16 -fstack-usage |
|
| 34 |
endif |
|
| 35 |
|
|
| 36 |
# C specific options here (added to USE_OPT). |
|
| 37 |
ifeq ($(USE_COPT),) |
|
| 38 |
USE_COPT = -std=c17 |
|
| 39 |
endif |
|
| 40 |
|
|
| 41 |
# C++ specific options here (added to USE_OPT). |
|
| 42 |
ifeq ($(USE_CPPOPT),) |
|
| 43 |
USE_CPPOPT = -fno-rtti -std=c++17 |
|
| 44 |
endif |
|
| 45 |
|
|
| 46 |
# Enable this if you want the linker to remove unused code and data. |
|
| 47 |
ifeq ($(USE_LINK_GC),) |
|
| 48 |
USE_LINK_GC = yes |
|
| 49 |
endif |
|
| 50 |
|
|
| 51 |
# Linker extra options here. |
|
| 52 |
ifeq ($(USE_LDOPT),) |
|
| 53 |
USE_LDOPT = |
|
| 54 |
endif |
|
| 55 |
|
|
| 56 |
# Enable this if you want link time optimizations (LTO). |
|
| 57 |
ifeq ($(USE_LTO),) |
|
| 58 |
USE_LTO = yes |
|
| 59 |
endif |
|
| 60 |
|
|
| 61 |
# Enable this if you want to see the full log while compiling. |
|
| 62 |
ifeq ($(USE_VERBOSE_COMPILE),) |
|
| 63 |
USE_VERBOSE_COMPILE = no |
|
| 64 |
endif |
|
| 65 |
|
|
| 66 |
# If enabled, this option makes the build process faster by not compiling |
|
| 67 |
# modules not used in the current configuration. |
|
| 68 |
ifeq ($(USE_SMART_BUILD),) |
|
| 69 |
USE_SMART_BUILD = no |
|
| 70 |
endif |
|
| 71 |
|
|
| 72 |
# # |
|
| 73 |
# Build global options # |
|
| 74 |
################################################################################ |
|
| 75 |
|
|
| 76 |
################################################################################ |
|
| 77 |
# Architecture or project specific options # |
|
| 78 |
# # |
|
| 79 |
|
|
| 80 |
# Stack size to be allocated to the Cortex-M process stack. This stack is |
|
| 81 |
# the stack used by the main() thread. |
|
| 82 |
ifeq ($(USE_PROCESS_STACKSIZE),) |
|
| 83 |
USE_PROCESS_STACKSIZE = 0x400 |
|
| 84 |
endif |
|
| 85 |
|
|
| 86 |
# Stack size to the allocated to the Cortex-M main/exceptions stack. This |
|
| 87 |
# stack is used for processing interrupts and exceptions. |
|
| 88 |
ifeq ($(USE_EXCEPTIONS_STACKSIZE),) |
|
| 89 |
USE_EXCEPTIONS_STACKSIZE = 0x400 |
|
| 90 |
endif |
|
| 91 |
|
|
| 92 |
# Enables the use of FPU. |
|
| 93 |
# Possible selections are: |
|
| 94 |
# no - no FPU is used (probably equals 'soft') |
|
| 95 |
# soft - does not use the FPU, thus all floating point operations are emulated |
|
| 96 |
# softfp - uses the FPU, but uses the integer registers only |
|
| 97 |
# hard - uses the FPU and passes data via the FPU registers |
|
| 98 |
ifeq ($(USE_FPU),) |
|
| 99 |
USE_FPU = softfp |
|
| 100 |
endif |
|
| 101 |
|
|
| 102 |
# FPU-related options. |
|
| 103 |
ifeq ($(USE_FPU_OPT),) |
|
| 104 |
USE_FPU_OPT = -mfloat-abi=$(USE_FPU) -mfpu=fpv4-sp-d16 |
|
| 105 |
endif |
|
| 106 |
|
|
| 107 |
# # |
|
| 108 |
# Architecture or project specific options # |
|
| 109 |
################################################################################ |
|
| 110 |
|
|
| 111 |
################################################################################ |
|
| 112 |
# Project, target, sources and paths # |
|
| 113 |
# # |
|
| 114 |
|
|
| 115 |
# Absolute path to the project |
|
| 116 |
PROJECT_PATH := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST))))) |
|
| 117 |
|
|
| 118 |
# Define project name here |
|
| 119 |
PROJECT := $(patsubst $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST))))..)/%,%,$(PROJECT_PATH)) |
|
| 120 |
|
|
| 121 |
# Target settings. |
|
| 122 |
MCU = cortex-m4 |
|
| 123 |
|
|
| 124 |
# Imported source files and paths. |
|
| 125 |
include ../../kernel/kernel.mk |
|
| 126 |
CHIBIOS := $(AMIROOS_KERNEL) |
|
| 127 |
CONFDIR := . |
|
| 128 |
ifeq ($(BUILDDIR),) |
|
| 129 |
BUILDDIR := $(PROJECT_PATH)/build |
|
| 130 |
endif |
|
| 131 |
DEPDIR := $(dir $(BUILDDIR)).dep |
|
| 132 |
AMIROOS := ../.. |
|
| 133 |
# Licensing files. |
|
| 134 |
include $(CHIBIOS)/os/license/license.mk |
|
| 135 |
# Startup files. |
|
| 136 |
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk |
|
| 137 |
# HAL-OSAL files (optional). |
|
| 138 |
include $(CHIBIOS)/os/hal/hal.mk |
|
| 139 |
include $(CHIBIOS)/os/hal/ports/STM32/STM32F4xx/platform.mk |
|
| 140 |
include $(CHIBIOS)/os/hal/osal/rt/osal.mk |
|
| 141 |
include $(CHIBIOS)/os/hal/lib/streams/streams.mk |
|
| 142 |
# RTOS files (optional). |
|
| 143 |
include $(CHIBIOS)/os/rt/rt.mk |
|
| 144 |
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk |
|
| 145 |
# Auto-build files in ./source recursively. |
|
| 146 |
include $(CHIBIOS)/tools/mk/autobuild.mk |
|
| 147 |
# Other files (optional). |
|
| 148 |
include $(CHIBIOS)/test/lib/test.mk |
|
| 149 |
include $(CHIBIOS)/test/rt/rt_test.mk |
|
| 150 |
include $(CHIBIOS)/test/oslib/oslib_test.mk |
|
| 151 |
# AMiRo-BLT files |
|
| 152 |
include ../../bootloader/bootloader.mk |
|
| 153 |
# AMiRo-LLD files |
|
| 154 |
include ../../periphery-lld/periphery-lld.mk |
|
| 155 |
# AMiRo-OS files |
|
| 156 |
include ../modules.mk |
|
| 157 |
include $(AMIROOS)/core/core.mk |
|
| 158 |
include $(AMIROOS)/unittests/unittests.mk |
|
| 159 |
|
|
| 160 |
# Define linker script file here |
|
| 161 |
LDSCRIPT= STM32F401xE.ld |
|
| 162 |
|
|
| 163 |
# C sources that can be compiled in ARM or THUMB mode depending on the global |
|
| 164 |
# setting. |
|
| 165 |
CSRC = $(ALLCSRC) \ |
|
| 166 |
$(CHIBIOS)/os/various/syscalls.c \ |
|
| 167 |
$(CHIBIOS)/os/various/evtimer.c \ |
|
| 168 |
$(TESTSRC) \ |
|
| 169 |
board.c \ |
|
| 170 |
$(PERIPHERYLLDCSRC) \ |
|
| 171 |
$(UNITTESTSCSRC) \ |
|
| 172 |
$(AMIROOSCORECSRC) \ |
|
| 173 |
$(MODULESCSRC) \ |
|
| 174 |
module.c \ |
|
| 175 |
$(APPSCSRC) |
|
| 176 |
|
|
| 177 |
# C++ sources that can be compiled in ARM or THUMB mode depending on the global |
|
| 178 |
# setting. |
|
| 179 |
CPPSRC = $(ALLCPPSRC) \ |
|
| 180 |
$(CHIBIOS)/os/various/cpp_wrappers/syscalls_cpp.cpp \ |
|
| 181 |
$(AMIROOSCORECPPSRC) \ |
|
| 182 |
$(APPSCPPSRC) |
|
| 183 |
|
|
| 184 |
# List ASM source files here. |
|
| 185 |
ASMSRC = $(ALLASMSRC) \ |
|
| 186 |
$(APPSASMSRC) |
|
| 187 |
|
|
| 188 |
# List ASM with preprocessor source files here. |
|
| 189 |
ASMXSRC = $(ALLXASMSRC) \ |
|
| 190 |
$(APPSASMXSRC) |
|
| 191 |
|
|
| 192 |
# Inclusion directories. |
|
| 193 |
INCDIR = $(CONFDIR) \ |
|
| 194 |
$(ALLINC) \ |
|
| 195 |
$(TESTINC) \ |
|
| 196 |
$(CHIBIOS)/os/hal/lib/streams \ |
|
| 197 |
$(BOOTLOADERINC) \ |
|
| 198 |
$(PERIPHERYLLDINC) \ |
|
| 199 |
$(AMIROOS) \ |
|
| 200 |
$(UNITTESTSINC) \ |
|
| 201 |
$(AMIROOSCOREINC) \ |
|
| 202 |
$(MODULESINC) \ |
|
| 203 |
$(APPSINC) |
|
| 204 |
|
|
| 205 |
# Define C warning options here. |
|
| 206 |
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes |
|
| 207 |
|
|
| 208 |
# Define C++ warning options here. |
|
| 209 |
CPPWARN = -Wall -Wextra -Wundef |
|
| 210 |
|
|
| 211 |
# # |
|
| 212 |
# Project, target, sources and paths # |
|
| 213 |
################################################################################ |
|
| 214 |
|
|
| 215 |
################################################################################ |
|
| 216 |
# Start of user section # |
|
| 217 |
# # |
|
| 218 |
|
|
| 219 |
# List all user C define here, like -D_DEBUG=1 |
|
| 220 |
UDEFS += |
|
| 221 |
|
|
| 222 |
# Define ASM defines here |
|
| 223 |
UADEFS += |
|
| 224 |
|
|
| 225 |
# List all user directories here |
|
| 226 |
UINCDIR += |
|
| 227 |
|
|
| 228 |
# List the user directory to look for the libraries here |
|
| 229 |
ULIBDIR += |
|
| 230 |
|
|
| 231 |
# List all user libraries here |
|
| 232 |
ULIBS += |
|
| 233 |
|
|
| 234 |
# # |
|
| 235 |
# End of user section # |
|
| 236 |
################################################################################ |
|
| 237 |
|
|
| 238 |
################################################################################ |
|
| 239 |
# Common rules # |
|
| 240 |
# # |
|
| 241 |
|
|
| 242 |
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk |
|
| 243 |
include $(RULESPATH)/arm-none-eabi.mk |
|
| 244 |
include $(RULESPATH)/rules.mk |
|
| 245 |
|
|
| 246 |
# # |
|
| 247 |
# Common rules # |
|
| 248 |
################################################################################ |
|
| 249 |
|
|
| 250 |
################################################################################ |
|
| 251 |
# Custom rules # |
|
| 252 |
# # |
|
| 253 |
|
|
| 254 |
flash: $(BUILDDIR)/$(PROJECT).elf |
|
| 255 |
openocd -f interface/stlink-v2-1.cfg -c "set WORKAREASIZE 0x2000" -f target/stm32f4x.cfg -c "program $(BUILDDIR)/$(PROJECT).elf verify reset exit" |
|
| 256 |
|
|
| 257 |
# # |
|
| 258 |
# Custom rules # |
|
| 259 |
################################################################################ |
|
| 260 |
|
|
| modules/NUCLEO-F401RE/STM32F401xE.ld | ||
|---|---|---|
| 1 |
/* |
|
| 2 |
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio |
|
| 3 |
|
|
| 4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 |
you may not use this file except in compliance with the License. |
|
| 6 |
You may obtain a copy of the License at |
|
| 7 |
|
|
| 8 |
http://www.apache.org/licenses/LICENSE-2.0 |
|
| 9 |
|
|
| 10 |
Unless required by applicable law or agreed to in writing, software |
|
| 11 |
distributed under the License is distributed on an "AS IS" BASIS, |
|
| 12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 13 |
See the License for the specific language governing permissions and |
|
| 14 |
limitations under the License. |
|
| 15 |
*/ |
|
| 16 |
|
|
| 17 |
/* |
|
| 18 |
* STM32F401xE memory setup. |
|
| 19 |
*/ |
|
| 20 |
MEMORY |
|
| 21 |
{
|
|
| 22 |
flash0 : org = 0x08000000, len = 512k |
|
| 23 |
flash1 : org = 0x00000000, len = 0 |
|
| 24 |
flash2 : org = 0x00000000, len = 0 |
|
| 25 |
flash3 : org = 0x00000000, len = 0 |
|
| 26 |
flash4 : org = 0x00000000, len = 0 |
|
| 27 |
flash5 : org = 0x00000000, len = 0 |
|
| 28 |
flash6 : org = 0x00000000, len = 0 |
|
| 29 |
flash7 : org = 0x00000000, len = 0 |
|
| 30 |
ram0 : org = 0x20000000, len = 96k |
|
| 31 |
ram1 : org = 0x00000000, len = 0 |
|
| 32 |
ram2 : org = 0x00000000, len = 0 |
|
| 33 |
ram3 : org = 0x00000000, len = 0 |
|
| 34 |
ram4 : org = 0x00000000, len = 0 |
|
| 35 |
ram5 : org = 0x00000000, len = 0 |
|
| 36 |
ram6 : org = 0x00000000, len = 0 |
|
| 37 |
ram7 : org = 0x00000000, len = 0 |
|
| 38 |
} |
|
| 39 |
|
|
| 40 |
/* For each data/text section two region are defined, a virtual region |
|
| 41 |
and a load region (_LMA suffix).*/ |
|
| 42 |
|
|
| 43 |
/* Flash region to be used for exception vectors.*/ |
|
| 44 |
REGION_ALIAS("VECTORS_FLASH", flash0);
|
|
| 45 |
REGION_ALIAS("VECTORS_FLASH_LMA", flash0);
|
|
| 46 |
|
|
| 47 |
/* Flash region to be used for constructors and destructors.*/ |
|
| 48 |
REGION_ALIAS("XTORS_FLASH", flash0);
|
|
| 49 |
REGION_ALIAS("XTORS_FLASH_LMA", flash0);
|
|
| 50 |
|
|
| 51 |
/* Flash region to be used for code text.*/ |
|
| 52 |
REGION_ALIAS("TEXT_FLASH", flash0);
|
|
| 53 |
REGION_ALIAS("TEXT_FLASH_LMA", flash0);
|
|
| 54 |
|
|
| 55 |
/* Flash region to be used for read only data.*/ |
|
| 56 |
REGION_ALIAS("RODATA_FLASH", flash0);
|
|
| 57 |
REGION_ALIAS("RODATA_FLASH_LMA", flash0);
|
|
| 58 |
|
|
| 59 |
/* Flash region to be used for various.*/ |
|
| 60 |
REGION_ALIAS("VARIOUS_FLASH", flash0);
|
|
| 61 |
REGION_ALIAS("VARIOUS_FLASH_LMA", flash0);
|
|
| 62 |
|
|
| 63 |
/* Flash region to be used for RAM(n) initialization data.*/ |
|
| 64 |
REGION_ALIAS("RAM_INIT_FLASH_LMA", flash0);
|
|
| 65 |
|
|
| 66 |
/* RAM region to be used for Main stack. This stack accommodates the processing |
|
| 67 |
of all exceptions and interrupts.*/ |
|
| 68 |
REGION_ALIAS("MAIN_STACK_RAM", ram0);
|
|
| 69 |
|
|
| 70 |
/* RAM region to be used for the process stack. This is the stack used by |
|
| 71 |
the main() function.*/ |
|
| 72 |
REGION_ALIAS("PROCESS_STACK_RAM", ram0);
|
|
| 73 |
|
|
| 74 |
/* RAM region to be used for data segment.*/ |
|
| 75 |
REGION_ALIAS("DATA_RAM", ram0);
|
|
| 76 |
REGION_ALIAS("DATA_RAM_LMA", flash0);
|
|
| 77 |
|
|
| 78 |
/* RAM region to be used for BSS segment.*/ |
|
| 79 |
REGION_ALIAS("BSS_RAM", ram0);
|
|
| 80 |
|
|
| 81 |
/* RAM region to be used for the default heap.*/ |
|
| 82 |
REGION_ALIAS("HEAP_RAM", ram0);
|
|
| 83 |
|
|
| 84 |
/* Generic rules inclusion.*/ |
|
| 85 |
INCLUDE rules.ld |
|
| modules/NUCLEO-F401RE/alldconf.h | ||
|---|---|---|
| 1 |
/* |
|
| 2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform. |
|
| 3 |
Copyright (C) 2016..2019 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 |
* @file |
|
| 21 |
* @brief AMiRo-LLD configuration file for the NUCLEO-F401RE board. |
|
| 22 |
* @details Contains the application specific AMiRo-LLD settings. |
|
| 23 |
* |
|
| 24 |
* @addtogroup NUCLEO-F401RE_lld_config |
|
| 25 |
* @{
|
|
| 26 |
*/ |
|
| 27 |
|
|
| 28 |
#ifndef ALLDCONF_H |
|
| 29 |
#define ALLDCONF_H |
|
| 30 |
|
|
| 31 |
/* |
|
| 32 |
* compatibility guards |
|
| 33 |
*/ |
|
| 34 |
#define _AMIRO_LLD_CFG_ |
|
| 35 |
#define AMIRO_LLD_CFG_VERSION_MAJOR 1 |
|
| 36 |
#define AMIRO_LLD_CFG_VERSION_MINOR 0 |
|
| 37 |
|
|
| 38 |
/** |
|
| 39 |
* @brief Width of the apalTime_t data type. |
|
| 40 |
* |
|
| 41 |
* @details Possible values are 8, 16, 32, and 64 bits. |
|
| 42 |
* By definition time is represented at microsecond precision. |
|
| 43 |
*/ |
|
| 44 |
#define AMIROLLD_CFG_TIME_SIZE 32 |
|
| 45 |
|
|
| 46 |
#endif /* ALLDCONF_H */ |
|
| 47 |
|
|
| 48 |
/** @} */ |
|
| modules/NUCLEO-F401RE/aosconf.h | ||
|---|---|---|
| 1 |
/* |
|
| 2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform. |
|
| 3 |
Copyright (C) 2016..2019 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 |
* @file |
|
| 21 |
* @brief AMiRo-OS Configuration file for the NUCLEO-F401RE module. |
|
| 22 |
* @details Contains the application specific AMiRo-OS settings. |
|
| 23 |
* |
|
| 24 |
* @addtogroup NUCLEO-F401RE_aos_config |
|
| 25 |
* @{
|
|
| 26 |
*/ |
|
| 27 |
|
|
| 28 |
#ifndef AOSCONF_H |
|
| 29 |
#define AOSCONF_H |
|
| 30 |
|
|
| 31 |
/* |
|
| 32 |
* compatibility guards |
|
| 33 |
*/ |
|
| 34 |
#define _AMIRO_OS_CFG_ |
|
| 35 |
#define AMIRO_OS_CFG_VERSION_MAJOR 2 |
|
| 36 |
#define AMIRO_OS_CFG_VERSION_MINOR 0 |
|
| 37 |
|
|
| 38 |
#include <stdbool.h> |
|
| 39 |
|
|
| 40 |
/* |
|
| 41 |
* Include an external configuration file to override the following default settings only if required. |
|
| 42 |
*/ |
|
| 43 |
#if defined(AMIRO_APPS) && (AMIRO_APPS == true) |
|
| 44 |
#include <osconf.h> |
|
| 45 |
#endif /* defined(AMIRO_APPS) && (AMIRO_APPS == true) */ |
|
| 46 |
|
|
| 47 |
/*===========================================================================*/ |
|
| 48 |
/** |
|
| 49 |
* @name Kernel parameters and options |
|
| 50 |
* @{
|
|
| 51 |
*/ |
|
| 52 |
/*===========================================================================*/ |
|
| 53 |
|
|
| 54 |
/** |
|
| 55 |
* @brief Flag to enable/disable debug API and logic. |
|
| 56 |
*/ |
|
| 57 |
#if !defined(OS_CFG_DBG) |
|
| 58 |
#define AMIROOS_CFG_DBG true |
|
| 59 |
#else /* !defined(OS_CFG_DBG) */ |
|
| 60 |
#define AMIROOS_CFG_DBG OS_CFG_DBG |
|
| 61 |
#endif /* !defined(OS_CFG_DBG) */ |
|
| 62 |
|
|
| 63 |
/** |
|
| 64 |
* @brief Flag to enable/disable unit tests. |
|
| 65 |
* @note Setting this flag will implicitely enable the shell. |
|
| 66 |
*/ |
|
| 67 |
#if !defined(OS_CFG_TESTS_ENABLE) |
|
| 68 |
#define AMIROOS_CFG_TESTS_ENABLE true |
|
| 69 | ||