Skip to content

Commit 14f79ba

Browse files
committed
Merge with devel
2 parents fe6bd86 + 34a4e2c commit 14f79ba

File tree

1,100 files changed

+24688
-10757
lines changed

Some content is hidden

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

1,100 files changed

+24688
-10757
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ labels: bug
66
assignees: ''
77

88
---
9+
910
| | |
1011
|:---|:---|
1112
|**_F´ Version_**| |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: ROSES Pattern
3+
about: A standard pattern funded for documentation via ROSES.
4+
title: ROSES - [Pattern]
5+
labels: ROSES
6+
assignees: ''
7+
8+
---
9+
10+
### Description
11+
[Describe pattern here].
12+
13+
### Deliverables (completed before closing issue):
14+
- [ ] Select deliverable type
15+
- [ ] Reference
16+
- [ ] User Guide
17+
- [ ] How-To
18+
- [ ] Tutorial
19+
- [ ] Other (tool, fill-in, etc)
20+
- [ ] Create documentation
21+
- [ ] Create example in examples repository
22+
- [ ] Pass expert review
23+
- [ ] Pass user review

.github/actions/autodoc.bash

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
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
Lines changed: 24 additions & 0 deletions
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
Lines changed: 9 additions & 0 deletions
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

Lines changed: 0 additions & 12 deletions
This file was deleted.

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

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@
55
},
66
{
77
"pattern": "https?://"
8-
}
9-
],
10-
"replacementPatterns": [
8+
},
9+
{
10+
"pattern": "./tutorials-"
11+
},
12+
{
13+
"pattern": "^\\.\\./tree/HEAD/"
14+
},
1115
{
12-
"pattern": "^[./]*api/cmake/",
13-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/cmake/"
16+
"pattern": ".*\\.[chf]pp"
1417
},
1518
{
16-
"pattern": "^[./]*api/c\\+\\+/",
17-
"replacement": "https://nasa.github.io/fprime/UsersGuide/api/c++/"
19+
"pattern": "../../../.."
1820
}
1921
]
2022
}

.github/actions/spelling/advice.md

Lines changed: 2 additions & 1 deletion
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

Lines changed: 2 additions & 5 deletions
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)