Merge pull request 'condition code bugfix' (#110) from cfdp-cond-code-bugfix into main
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
Reviewed-on: #110
This commit is contained in:
commit
448b76be91
@ -36,6 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- Fixed an error in the EOF writer which wrote the fault location to the wrong buffer position.
|
- Fixed an error in the EOF writer which wrote the fault location to the wrong buffer position.
|
||||||
|
- cfdp `ConditionCode::CheckLimitReached` previous had the wrong numerical value of `0b1001` (9)
|
||||||
|
and now has the correct value of `0b1010` (10).
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ pub enum ConditionCode {
|
|||||||
FileSizeError = 0b0110,
|
FileSizeError = 0b0110,
|
||||||
NakLimitReached = 0b0111,
|
NakLimitReached = 0b0111,
|
||||||
InactivityDetected = 0b1000,
|
InactivityDetected = 0b1000,
|
||||||
CheckLimitReached = 0b1001,
|
CheckLimitReached = 0b1010,
|
||||||
UnsupportedChecksumType = 0b1011,
|
UnsupportedChecksumType = 0b1011,
|
||||||
/// Not an actual fault condition for which fault handler overrides can be specified
|
/// Not an actual fault condition for which fault handler overrides can be specified
|
||||||
SuspendRequestReceived = 0b1110,
|
SuspendRequestReceived = 0b1110,
|
||||||
|
Loading…
Reference in New Issue
Block a user