Skip to content

Commit 685ca19

Browse files
committed
rename examples/ directory to meshcore/
1 parent 39b3336 commit 685ca19

118 files changed

Lines changed: 795 additions & 795 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/pr-build-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
branches: [main, dev]
66
paths:
77
- 'src/**'
8-
- 'examples/**'
8+
- 'meshcore/**'
99
- 'variants/**'
1010
- 'platformio.ini'
1111
- '.github/workflows/pr-build-check.yml'
1212
push:
1313
branches: [main, dev]
1414
paths:
1515
- 'src/**'
16-
- 'examples/**'
16+
- 'meshcore/**'
1717
- 'variants/**'
1818
- 'platformio.ini'
1919
- '.github/workflows/pr-build-check.yml'

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 6 additions & 6 deletions

build_as_lib.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@
4141
# INCLUDE EXAMPLE CODE IN BUILD (to provide your own support files without touching the tree)
4242
elif isinstance(item, tuple) and item[0] == "BUILD_EXAMPLE":
4343
example_name = item[1]
44-
src_filter.append(f"+<../examples/{example_name}/*.cpp>")
44+
src_filter.append(f"+<../meshcore/{example_name}/*.cpp>")
4545

4646
# EXCLUDE A SOURCE FILE FROM AN EXAMPLE (must be placed after example name or boom)
4747
elif isinstance(item, tuple) and item[0] == "EXCLUDE_FROM_EXAMPLE":
4848
exclude_name = item[1]
4949
if example_name is None:
5050
print("***** PLEASE DEFINE EXAMPLE FIRST *****")
5151
break
52-
src_filter.append(f"-<../examples/{example_name}/{exclude_name}>")
52+
src_filter.append(f"-<../meshcore/{example_name}/{exclude_name}>")
5353

5454
# DEAL WITH UI VARIANT FOR AN EXAMPLE
5555
elif isinstance(item, tuple) and item[0] == "MC_UI_FLAVOR":
5656
ui_flavor = item[1]
5757
if example_name is None:
5858
print("***** PLEASE DEFINE EXAMPLE FIRST *****")
5959
break
60-
src_filter.append(f"+<../examples/{example_name}/{ui_flavor}/*.cpp>")
60+
src_filter.append(f"+<../meshcore/{example_name}/{ui_flavor}/*.cpp>")
6161

6262
menv.Replace(SRC_FILTER=src_filter)
6363

docs/companion_protocol.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)