Skip to content

Commit adbfd7c

Browse files
committed
ypdated dosc and edflt value
1 parent 0f536f7 commit adbfd7c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

FprimeZephyrReference/Components/Burnwire/Burnwire.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Burnwire final : public BurnwireComponentBase {
6969
Fw::On m_state = Fw::On::OFF; // keeps track if burnwire is on or off
7070
std::atomic<U32> m_safetyCounter; // makes this an atomic variable (so its set only in one command),
7171
// you read and write half the value bc a corrupted read could be dangerouts
72-
U32 m_safetyMaxCount = 10; // max count for safety timer (default 10 seconds)
72+
U32 m_safetyMaxCount = 3; // max count for safety timer - 3 seconds for now, change to be very large before flight
7373
};
7474

7575
} // namespace Components

FprimeZephyrReference/Components/Burnwire/docs/sdd.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Add sequence diagrams here
1111
Add requirements in the chart below
1212
| Name | Description | Validation |
1313
| ---- | ----------- | ------ |
14-
|BW-001|The burnwire shall turn on and off in response to a port calls |Hardware Test|
14+
|BW-001|The burnwire shall turn on and off in response to a port calls (TBR for antenna deployer component) |Hardware Test|
1515
|BW-002|The burnwire shall turn on and off in response to commands (TBR for testing for now) |Hardware Test|
16-
|BW-003|The burnwire component shall provide an Event when it is turned on and off |Integration Test|
17-
|BW-004|The burnwire component shall activate by turning the GPIO pins on one at a time |Integration Test|
16+
|BW-003|The burnwire component shall provide an event when it is turned on and off |Integration Test|
17+
|BW-004|The burnwire component shall activate by turning both the GPIO pins that activate the burnwire | Hardware Test|
1818
|BW-005|The burnwire component shall be controlled by a safety timeout attached to a 1Hz rate group |Integration Test|
1919
|BW-006|The safety timeout shall emit an event when it is changes | Integration test|
2020
|BW-007|The burnwire safety time shall emit an event when it starts and stops |Integration Test|
@@ -37,9 +37,9 @@ Name | Type | Description |
3737
## Events
3838
| Name | Description |
3939
|---|---|
40-
|SetBurnwireState|Emits whether the burnwire turns off or on when it changes state|
41-
|SafetyTimerStatus|Emits when the Safety Time has stopped or started|
42-
|SafetyTimerState|Emits the safety timer argument when it starts|
40+
|SetBurnwireState| Emits burnwire state when the burnwire turns on or off|
41+
|SafetyTimerStatus| Emits safety timer state when the Safety Time has stopped or started|
42+
|SafetyTimerState| Emits the amount of time the safety time will run for when it starts|
4343

4444

4545
## Component States
@@ -48,7 +48,6 @@ Add component states in the chart below
4848
|----|---|
4949
|m_state|Keeps track if the burnwire is on or off|
5050

51-
5251
## Unit Tests
5352
Add unit test descriptions in the chart below
5453
| Name | Description | Output | Coverage |

0 commit comments

Comments
 (0)