Skip to content

Commit 77e9339

Browse files
author
Zimri Leisher
committed
Merge branch 'devel' of github.com:zimri-leisher/fprime into 3023-adv-sequencer
2 parents 39475c8 + 5be3b19 commit 77e9339

File tree

359 files changed

+5925
-8693
lines changed

Some content is hidden

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

359 files changed

+5925
-8693
lines changed

.github/actions/autodoc.bash

-20
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
set timeout 180
2+
spawn fprime-bootstrap project
3+
expect -re {.*Project name.*}
4+
send "MyProject\r"
5+
expect eof
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
set timeout 60
2+
spawn fprime-util new --component
3+
expect -re {.*Component name.*}
4+
send "MyComponent\r"
5+
expect -re {.*Component short description.*}
6+
send "test component\r"
7+
expect -re {.*Component namespace.*}
8+
send "Components\r"
9+
expect -re {.*Select component kind}
10+
send "1\r"
11+
expect -re {.*Enable Commands.*}
12+
send "1\r"
13+
expect -re {.*Enable Telemetry.*}
14+
send "1\r"
15+
expect -re {.*Enable Events.*}
16+
send "1\r"
17+
expect -re {.*Enable Parameters.*}
18+
send "1\r"
19+
expect -re {Add MyComponent to.*}
20+
send "yes\r"
21+
expect -re {Generate implementation files.*}
22+
send "yes\r"
23+
expect -re {.*Created new component.*}
24+
expect eof
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
set timeout 60
2+
spawn fprime-util new --deployment
3+
expect -re {Deployment name.*}
4+
send "MyDeployment\r"
5+
expect -re {.*Select communication driver type}
6+
send "1\r"
7+
expect -re "Add .*MyDeployment.*"
8+
send "yes\r"
9+
expect eof

.github/actions/entrypoint.sh

-12
This file was deleted.

.github/actions/markdown-check/mlc-config.json

+3-7
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
},
66
{
77
"pattern": "https?://"
8-
}
9-
],
10-
"replacementPatterns": [
8+
},
119
{
12-
"pattern": "^[./]*api/cmake/",
13-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/cmake/"
10+
"pattern": "./tutorials-"
1411
},
1512
{
16-
"pattern": "^[./]*api/c\\+\\+/",
17-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/c++/"
13+
"pattern": "^\\.\\./tree/HEAD/"
1814
}
1915
]
2016
}

.github/actions/spelling/advice.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ If items relate to a ...
99
File paths are Perl 5 Regular Expressions - you can [test](
1010
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your files.
1111

12-
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude README.md (on whichever branch you're using).
12+
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
13+
../tree/HEAD/README.md) (on whichever branch you're using).
1314

1415
* well-formed pattern.
1516

.github/actions/spelling/allow.txt

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
AUTOGEN
2+
atype
13
github
24
https
35
ssh
46
ubuntu
5-
usec
6-
usecs
7-
workaround
87
workarounds
9-
DEVICESM
10-
HACKSM

0 commit comments

Comments
 (0)