Skip to content

Commit 9bd2b4e

Browse files
screamerbg0xc0170
authored andcommitted
Align paths config (paths.py) with the new directory layout. Also rename the output build folder to .build
1 parent d9734e5 commit 9bd2b4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

workspace_tools/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
TOOLS_BOOTLOADERS = join(TOOLS, "bootloaders")
3232

3333
# mbed libraries
34-
MBED_BASE = join(LIB_DIR, "mbed")
34+
MBED_BASE = join(ROOT, "hal")
3535

3636
MBED_API = join(MBED_BASE, "api")
3737
MBED_COMMON = join(MBED_BASE, "common")
@@ -50,7 +50,7 @@
5050
RPC_LIBRARY = join(BUILD_DIR, "rpc")
5151

5252
# mbed RTOS
53-
RTOS = join(LIB_DIR, "rtos")
53+
RTOS = join(ROOT, "rtos")
5454
MBED_RTX = join(RTOS, "rtx")
5555
RTOS_ABSTRACTION = join(RTOS, "rtos")
5656

workspace_tools/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
##############################################################################
2525
# Build System Settings
2626
##############################################################################
27-
BUILD_DIR = abspath(join(ROOT, "build"))
27+
BUILD_DIR = abspath(join(ROOT, ".build"))
2828

2929
# ARM
3030
armcc = "standalone" # "keil", or "standalone", or "ds-5"

0 commit comments

Comments
 (0)