Skip to content

Revert "Enable stats reporting with a flag in targets.json" #11510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions targets/targets.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"public": false,
"default_lib": "std",
"bootloader_supported": false,
"static_memory_defines": true,
"config": {
"console-uart": {
"help": "Target has UART console on pins STDIO_UART_TX, STDIO_UART_RX. Value is only significant if target has SERIAL device.",
Expand Down Expand Up @@ -7342,7 +7341,6 @@
"MCU_NRF52832": {
"inherits": ["Target"],
"core": "Cortex-M4F",
"static_memory_defines": false,
"macros": [
"BOARD_PCA10040",
"NRF52",
Expand Down Expand Up @@ -7644,7 +7642,6 @@
"inherits": ["Target"],
"components_add": ["QSPIF"],
"core": "Cortex-M4F",
"static_memory_defines": false,
"macros": [
"BOARD_PCA10056",
"NRF52840_XXAA",
Expand Down
4 changes: 0 additions & 4 deletions tools/toolchains/mbed_toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,8 +920,6 @@ def add_regions(self):

try:
# Add all available ROM regions to build profile
if not getattr(self.target, "static_memory_defines", False):
raise ConfigException()
rom_available_regions = self.config.get_all_active_memories(
ROM_ALL_MEMORIES
)
Expand All @@ -936,8 +934,6 @@ def add_regions(self):
pass
try:
# Add all available RAM regions to build profile
if not getattr(self.target, "static_memory_defines", False):
raise ConfigException()
ram_available_regions = self.config.get_all_active_memories(
RAM_ALL_MEMORIES
)
Expand Down