Compare commits
55 Commits
e227b5dead
...
v2.0.1
Author | SHA1 | Date | |
---|---|---|---|
e6a7108614 | |||
08926f9b70 | |||
52f0c29e99 | |||
d2371b3e71 | |||
ffa38a81b7 | |||
ae689408f3 | |||
155432663b | |||
ecdbf98ca4 | |||
54a6c1b0aa | |||
9efe9e78d8 | |||
ab906fa534 | |||
146e1e3282 | |||
f11957d827 | |||
a977302a53 | |||
53400c8bfa | |||
f2d0a0d9ee | |||
9e12f59707 | |||
2439613f21 | |||
1c8f86364d | |||
4e1c52f465 | |||
9f856761e2 | |||
2f119f102d | |||
afb472996c | |||
f76f462022 | |||
0f90d50065 | |||
b0cbd40e64 | |||
1c1433e797 | |||
7671c93095 | |||
ba4249d658 | |||
de7542c9c1 | |||
5a30dd969f | |||
0a2c912f29 | |||
2b15f9e644 | |||
42b5f8a79d | |||
358ee0fbf2 | |||
4f08b2d342 | |||
4b62c8aa81 | |||
1b38f84edc | |||
5064d44999 | |||
322c14d4bb | |||
8ec35f158c | |||
9a25f08fef | |||
f3caa122ae | |||
6e88f8f400 | |||
01762ad222 | |||
71d66c406f | |||
42df77ff32 | |||
85c04dee23 | |||
4c96db847d | |||
0246dccbe9 | |||
52b3d9473e | |||
fc9b85d5db | |||
bfae25ff2d | |||
ea3812fbbd | |||
f40f783cb4 |
@@ -26,7 +26,8 @@ enum GpioOperation {
|
|||||||
|
|
||||||
enum GpioTypes {
|
enum GpioTypes {
|
||||||
NONE,
|
NONE,
|
||||||
GPIO_REGULAR,
|
GPIO_REGULAR_BY_CHIP,
|
||||||
|
GPIO_REGULAR_BY_LABEL,
|
||||||
CALLBACK
|
CALLBACK
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -68,28 +69,57 @@ public:
|
|||||||
int initValue = 0;
|
int initValue = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
class GpiodRegular: public GpioBase {
|
class GpiodRegularBase: public GpioBase {
|
||||||
public:
|
public:
|
||||||
GpiodRegular() :
|
GpiodRegularBase(gpio::GpioTypes gpioType, std::string consumer, gpio::Direction direction,
|
||||||
GpioBase(gpio::GpioTypes::GPIO_REGULAR, std::string(), gpio::Direction::IN, 0) {
|
int initValue, int lineNum): GpioBase(gpioType, consumer, direction, initValue),
|
||||||
|
lineNum(lineNum) {
|
||||||
}
|
}
|
||||||
;
|
|
||||||
|
|
||||||
GpiodRegular(std::string chipname_, int lineNum_, std::string consumer_,
|
|
||||||
gpio::Direction direction_, int initValue_) :
|
|
||||||
GpioBase(gpio::GpioTypes::GPIO_REGULAR, consumer_, direction_, initValue_),
|
|
||||||
chipname(chipname_), lineNum(lineNum_) {
|
|
||||||
}
|
|
||||||
|
|
||||||
GpiodRegular(std::string chipname_, int lineNum_, std::string consumer_) :
|
|
||||||
GpioBase(gpio::GpioTypes::GPIO_REGULAR, consumer_, gpio::Direction::IN, 0),
|
|
||||||
chipname(chipname_), lineNum(lineNum_) {
|
|
||||||
}
|
|
||||||
std::string chipname;
|
|
||||||
int lineNum = 0;
|
int lineNum = 0;
|
||||||
struct gpiod_line* lineHandle = nullptr;
|
struct gpiod_line* lineHandle = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class GpiodRegularByChip: public GpiodRegularBase {
|
||||||
|
public:
|
||||||
|
GpiodRegularByChip() :
|
||||||
|
GpiodRegularBase(gpio::GpioTypes::GPIO_REGULAR_BY_CHIP,
|
||||||
|
std::string(), gpio::Direction::IN, gpio::LOW, 0) {
|
||||||
|
}
|
||||||
|
|
||||||
|
GpiodRegularByChip(std::string chipname_, int lineNum_, std::string consumer_,
|
||||||
|
gpio::Direction direction_, int initValue_) :
|
||||||
|
GpiodRegularBase(gpio::GpioTypes::GPIO_REGULAR_BY_CHIP,
|
||||||
|
consumer_, direction_, initValue_, lineNum_),
|
||||||
|
chipname(chipname_){
|
||||||
|
}
|
||||||
|
|
||||||
|
GpiodRegularByChip(std::string chipname_, int lineNum_, std::string consumer_) :
|
||||||
|
GpiodRegularBase(gpio::GpioTypes::GPIO_REGULAR_BY_CHIP, consumer_,
|
||||||
|
gpio::Direction::IN, gpio::LOW, lineNum_),
|
||||||
|
chipname(chipname_) {
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string chipname;
|
||||||
|
};
|
||||||
|
|
||||||
|
class GpiodRegularByLabel: public GpiodRegularBase {
|
||||||
|
public:
|
||||||
|
GpiodRegularByLabel(std::string label_, int lineNum_, std::string consumer_,
|
||||||
|
gpio::Direction direction_, int initValue_) :
|
||||||
|
GpiodRegularBase(gpio::GpioTypes::GPIO_REGULAR_BY_LABEL, consumer_,
|
||||||
|
direction_, initValue_, lineNum_),
|
||||||
|
label(label_) {
|
||||||
|
}
|
||||||
|
|
||||||
|
GpiodRegularByLabel(std::string label_, int lineNum_, std::string consumer_) :
|
||||||
|
GpiodRegularBase(gpio::GpioTypes::GPIO_REGULAR_BY_LABEL, consumer_,
|
||||||
|
gpio::Direction::IN, gpio::LOW, lineNum_),
|
||||||
|
label(label_) {
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string label;
|
||||||
|
};
|
||||||
|
|
||||||
class GpioCallback: public GpioBase {
|
class GpioCallback: public GpioBase {
|
||||||
public:
|
public:
|
||||||
GpioCallback(std::string consumer, gpio::Direction direction_, int initValue_,
|
GpioCallback(std::string consumer, gpio::Direction direction_, int initValue_,
|
||||||
|
@@ -2,7 +2,6 @@
|
|||||||
#define MISSION_DEVICES_MGMRM3100HANDLER_H_
|
#define MISSION_DEVICES_MGMRM3100HANDLER_H_
|
||||||
|
|
||||||
#include "fsfw/FSFW.h"
|
#include "fsfw/FSFW.h"
|
||||||
#include "devices/powerSwitcherList.h"
|
|
||||||
#include "devicedefinitions/MgmRM3100HandlerDefs.h"
|
#include "devicedefinitions/MgmRM3100HandlerDefs.h"
|
||||||
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
|
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
|
||||||
|
|
||||||
|
@@ -49,7 +49,7 @@ static constexpr uint8_t TMRC_DEFAULT_VALUE = TMRC_DEFAULT_37HZ_VALUE;
|
|||||||
|
|
||||||
static constexpr uint8_t MEASUREMENT_REG_START = 0x24;
|
static constexpr uint8_t MEASUREMENT_REG_START = 0x24;
|
||||||
static constexpr uint8_t BIST_REGISTER = 0x33;
|
static constexpr uint8_t BIST_REGISTER = 0x33;
|
||||||
static constexpr uint8_t DATA_READY_VAL = 0b1000'0000;
|
static constexpr uint8_t DATA_READY_VAL = 0b10000000;
|
||||||
static constexpr uint8_t STATUS_REGISTER = 0x34;
|
static constexpr uint8_t STATUS_REGISTER = 0x34;
|
||||||
static constexpr uint8_t REVID_REGISTER = 0x36;
|
static constexpr uint8_t REVID_REGISTER = 0x36;
|
||||||
|
|
||||||
|
@@ -20,7 +20,7 @@ LinuxLibgpioIF::~LinuxLibgpioIF() {
|
|||||||
ReturnValue_t LinuxLibgpioIF::addGpios(GpioCookie* gpioCookie) {
|
ReturnValue_t LinuxLibgpioIF::addGpios(GpioCookie* gpioCookie) {
|
||||||
ReturnValue_t result;
|
ReturnValue_t result;
|
||||||
if(gpioCookie == nullptr) {
|
if(gpioCookie == nullptr) {
|
||||||
sif::error << "LinuxLibgpioIF::initialize: Invalid cookie" << std::endl;
|
sif::error << "LinuxLibgpioIF::addGpios: Invalid cookie" << std::endl;
|
||||||
return RETURN_FAILED;
|
return RETURN_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,16 +45,25 @@ ReturnValue_t LinuxLibgpioIF::addGpios(GpioCookie* gpioCookie) {
|
|||||||
|
|
||||||
ReturnValue_t LinuxLibgpioIF::configureGpios(GpioMap& mapToAdd) {
|
ReturnValue_t LinuxLibgpioIF::configureGpios(GpioMap& mapToAdd) {
|
||||||
for(auto& gpioConfig: mapToAdd) {
|
for(auto& gpioConfig: mapToAdd) {
|
||||||
switch(gpioConfig.second->gpioType) {
|
auto& gpioType = gpioConfig.second->gpioType;
|
||||||
|
switch(gpioType) {
|
||||||
case(gpio::GpioTypes::NONE): {
|
case(gpio::GpioTypes::NONE): {
|
||||||
return GPIO_INVALID_INSTANCE;
|
return GPIO_INVALID_INSTANCE;
|
||||||
}
|
}
|
||||||
case(gpio::GpioTypes::GPIO_REGULAR): {
|
case(gpio::GpioTypes::GPIO_REGULAR_BY_CHIP): {
|
||||||
GpiodRegular* regularGpio = dynamic_cast<GpiodRegular*>(gpioConfig.second);
|
auto regularGpio = dynamic_cast<GpiodRegularByChip*>(gpioConfig.second);
|
||||||
if(regularGpio == nullptr) {
|
if(regularGpio == nullptr) {
|
||||||
return GPIO_INVALID_INSTANCE;
|
return GPIO_INVALID_INSTANCE;
|
||||||
}
|
}
|
||||||
configureRegularGpio(gpioConfig.first, regularGpio);
|
configureGpioByChip(gpioConfig.first, *regularGpio);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case(gpio::GpioTypes::GPIO_REGULAR_BY_LABEL):{
|
||||||
|
auto regularGpio = dynamic_cast<GpiodRegularByLabel*>(gpioConfig.second);
|
||||||
|
if(regularGpio == nullptr) {
|
||||||
|
return GPIO_INVALID_INSTANCE;
|
||||||
|
}
|
||||||
|
configureGpioByLabel(gpioConfig.first, *regularGpio);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case(gpio::GpioTypes::CALLBACK): {
|
case(gpio::GpioTypes::CALLBACK): {
|
||||||
@@ -70,41 +79,59 @@ ReturnValue_t LinuxLibgpioIF::configureGpios(GpioMap& mapToAdd) {
|
|||||||
return RETURN_OK;
|
return RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
ReturnValue_t LinuxLibgpioIF::configureRegularGpio(gpioId_t gpioId, GpiodRegular *regularGpio) {
|
ReturnValue_t LinuxLibgpioIF::configureGpioByLabel(gpioId_t gpioId,
|
||||||
std::string chipname;
|
GpiodRegularByLabel &gpioByLabel) {
|
||||||
|
std::string& label = gpioByLabel.label;
|
||||||
|
struct gpiod_chip* chip = gpiod_chip_open_by_label(label.c_str());
|
||||||
|
if (chip == nullptr) {
|
||||||
|
sif::warning << "LinuxLibgpioIF::configureRegularGpio: Failed to open gpio from gpio "
|
||||||
|
<< "group with label " << label << ". Gpio ID: " << gpioId << std::endl;
|
||||||
|
return RETURN_FAILED;
|
||||||
|
|
||||||
|
}
|
||||||
|
std::string failOutput = "label: " + label;
|
||||||
|
return configureRegularGpio(gpioId, gpioByLabel.gpioType, chip, gpioByLabel, failOutput);
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnValue_t LinuxLibgpioIF::configureGpioByChip(gpioId_t gpioId,
|
||||||
|
GpiodRegularByChip &gpioByChip) {
|
||||||
|
std::string& chipname = gpioByChip.chipname;
|
||||||
|
struct gpiod_chip* chip = gpiod_chip_open_by_name(chipname.c_str());
|
||||||
|
if (chip == nullptr) {
|
||||||
|
sif::warning << "LinuxLibgpioIF::configureRegularGpio: Failed to open chip "
|
||||||
|
<< chipname << ". Gpio ID: " << gpioId << std::endl;
|
||||||
|
return RETURN_FAILED;
|
||||||
|
}
|
||||||
|
std::string failOutput = "chipname: " + chipname;
|
||||||
|
return configureRegularGpio(gpioId, gpioByChip.gpioType, chip, gpioByChip, failOutput);
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnValue_t LinuxLibgpioIF::configureRegularGpio(gpioId_t gpioId, gpio::GpioTypes gpioType,
|
||||||
|
struct gpiod_chip* chip, GpiodRegularBase& regularGpio, std::string failOutput) {
|
||||||
unsigned int lineNum;
|
unsigned int lineNum;
|
||||||
struct gpiod_chip *chip;
|
|
||||||
gpio::Direction direction;
|
gpio::Direction direction;
|
||||||
std::string consumer;
|
std::string consumer;
|
||||||
struct gpiod_line *lineHandle;
|
struct gpiod_line *lineHandle;
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
|
||||||
chipname = regularGpio->chipname;
|
lineNum = regularGpio.lineNum;
|
||||||
chip = gpiod_chip_open_by_name(chipname.c_str());
|
|
||||||
if (!chip) {
|
|
||||||
sif::warning << "LinuxLibgpioIF::configureRegularGpio: Failed to open chip "
|
|
||||||
<< chipname << ". Gpio ID: " << gpioId << std::endl;
|
|
||||||
return RETURN_FAILED;
|
|
||||||
}
|
|
||||||
|
|
||||||
lineNum = regularGpio->lineNum;
|
|
||||||
lineHandle = gpiod_chip_get_line(chip, lineNum);
|
lineHandle = gpiod_chip_get_line(chip, lineNum);
|
||||||
if (!lineHandle) {
|
if (!lineHandle) {
|
||||||
sif::debug << "LinuxLibgpioIF::configureRegularGpio: Failed to open line " << std::endl;
|
sif::warning << "LinuxLibgpioIF::configureRegularGpio: Failed to open line " << std::endl;
|
||||||
sif::debug << "GPIO ID: " << gpioId << ", line number: " << lineNum <<
|
sif::warning << "GPIO ID: " << gpioId << ", line number: " << lineNum <<
|
||||||
", chipname: " << chipname << std::endl;
|
", " << failOutput << std::endl;
|
||||||
sif::debug << "Check if linux GPIO configuration has changed. " << std::endl;
|
sif::warning << "Check if Linux GPIO configuration has changed. " << std::endl;
|
||||||
gpiod_chip_close(chip);
|
gpiod_chip_close(chip);
|
||||||
return RETURN_FAILED;
|
return RETURN_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
direction = regularGpio->direction;
|
direction = regularGpio.direction;
|
||||||
consumer = regularGpio->consumer;
|
consumer = regularGpio.consumer;
|
||||||
/* Configure direction and add a description to the GPIO */
|
/* Configure direction and add a description to the GPIO */
|
||||||
switch (direction) {
|
switch (direction) {
|
||||||
case(gpio::OUT): {
|
case(gpio::OUT): {
|
||||||
result = gpiod_line_request_output(lineHandle, consumer.c_str(),
|
result = gpiod_line_request_output(lineHandle, consumer.c_str(),
|
||||||
regularGpio->initValue);
|
regularGpio.initValue);
|
||||||
if (result < 0) {
|
if (result < 0) {
|
||||||
sif::error << "LinuxLibgpioIF::configureRegularGpio: Failed to request line " << lineNum <<
|
sif::error << "LinuxLibgpioIF::configureRegularGpio: Failed to request line " << lineNum <<
|
||||||
" from GPIO instance with ID: " << gpioId << std::endl;
|
" from GPIO instance with ID: " << gpioId << std::endl;
|
||||||
@@ -134,7 +161,7 @@ ReturnValue_t LinuxLibgpioIF::configureRegularGpio(gpioId_t gpioId, GpiodRegular
|
|||||||
* Write line handle to GPIO configuration instance so it can later be used to set or
|
* Write line handle to GPIO configuration instance so it can later be used to set or
|
||||||
* read states of GPIOs.
|
* read states of GPIOs.
|
||||||
*/
|
*/
|
||||||
regularGpio->lineHandle = lineHandle;
|
regularGpio.lineHandle = lineHandle;
|
||||||
return RETURN_OK;
|
return RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -145,8 +172,14 @@ ReturnValue_t LinuxLibgpioIF::pullHigh(gpioId_t gpioId) {
|
|||||||
return UNKNOWN_GPIO_ID;
|
return UNKNOWN_GPIO_ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(gpioMapIter->second->gpioType == gpio::GpioTypes::GPIO_REGULAR) {
|
auto gpioType = gpioMapIter->second->gpioType;
|
||||||
return driveGpio(gpioId, dynamic_cast<GpiodRegular*>(gpioMapIter->second), 1);
|
if(gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_CHIP or
|
||||||
|
gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_LABEL) {
|
||||||
|
auto regularGpio = dynamic_cast<GpiodRegularBase*>(gpioMapIter->second);
|
||||||
|
if(regularGpio == nullptr) {
|
||||||
|
return GPIO_TYPE_FAILURE;
|
||||||
|
}
|
||||||
|
return driveGpio(gpioId, *regularGpio, gpio::HIGH);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
auto gpioCallback = dynamic_cast<GpioCallback*>(gpioMapIter->second);
|
auto gpioCallback = dynamic_cast<GpioCallback*>(gpioMapIter->second);
|
||||||
@@ -167,8 +200,14 @@ ReturnValue_t LinuxLibgpioIF::pullLow(gpioId_t gpioId) {
|
|||||||
return UNKNOWN_GPIO_ID;
|
return UNKNOWN_GPIO_ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(gpioMapIter->second->gpioType == gpio::GpioTypes::GPIO_REGULAR) {
|
auto& gpioType = gpioMapIter->second->gpioType;
|
||||||
return driveGpio(gpioId, dynamic_cast<GpiodRegular*>(gpioMapIter->second), 0);
|
if(gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_CHIP or
|
||||||
|
gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_LABEL) {
|
||||||
|
auto regularGpio = dynamic_cast<GpiodRegularBase*>(gpioMapIter->second);
|
||||||
|
if(regularGpio == nullptr) {
|
||||||
|
return GPIO_TYPE_FAILURE;
|
||||||
|
}
|
||||||
|
return driveGpio(gpioId, *regularGpio, gpio::LOW);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
auto gpioCallback = dynamic_cast<GpioCallback*>(gpioMapIter->second);
|
auto gpioCallback = dynamic_cast<GpioCallback*>(gpioMapIter->second);
|
||||||
@@ -183,12 +222,8 @@ ReturnValue_t LinuxLibgpioIF::pullLow(gpioId_t gpioId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ReturnValue_t LinuxLibgpioIF::driveGpio(gpioId_t gpioId,
|
ReturnValue_t LinuxLibgpioIF::driveGpio(gpioId_t gpioId,
|
||||||
GpiodRegular* regularGpio, unsigned int logicLevel) {
|
GpiodRegularBase& regularGpio, gpio::Levels logicLevel) {
|
||||||
if(regularGpio == nullptr) {
|
int result = gpiod_line_set_value(regularGpio.lineHandle, logicLevel);
|
||||||
return GPIO_TYPE_FAILURE;
|
|
||||||
}
|
|
||||||
|
|
||||||
int result = gpiod_line_set_value(regularGpio->lineHandle, logicLevel);
|
|
||||||
if (result < 0) {
|
if (result < 0) {
|
||||||
sif::warning << "LinuxLibgpioIF::driveGpio: Failed to pull GPIO with ID " << gpioId <<
|
sif::warning << "LinuxLibgpioIF::driveGpio: Failed to pull GPIO with ID " << gpioId <<
|
||||||
" to logic level " << logicLevel << std::endl;
|
" to logic level " << logicLevel << std::endl;
|
||||||
@@ -204,9 +239,10 @@ ReturnValue_t LinuxLibgpioIF::readGpio(gpioId_t gpioId, int* gpioState) {
|
|||||||
sif::warning << "LinuxLibgpioIF::readGpio: Unknown GPIOD ID " << gpioId << std::endl;
|
sif::warning << "LinuxLibgpioIF::readGpio: Unknown GPIOD ID " << gpioId << std::endl;
|
||||||
return UNKNOWN_GPIO_ID;
|
return UNKNOWN_GPIO_ID;
|
||||||
}
|
}
|
||||||
|
auto gpioType = gpioMapIter->second->gpioType;
|
||||||
if(gpioMapIter->second->gpioType == gpio::GpioTypes::GPIO_REGULAR) {
|
if(gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_CHIP or
|
||||||
GpiodRegular* regularGpio = dynamic_cast<GpiodRegular*>(gpioMapIter->second);
|
gpioType == gpio::GpioTypes::GPIO_REGULAR_BY_LABEL) {
|
||||||
|
auto regularGpio = dynamic_cast<GpiodRegularBase*>(gpioMapIter->second);
|
||||||
if(regularGpio == nullptr) {
|
if(regularGpio == nullptr) {
|
||||||
return GPIO_TYPE_FAILURE;
|
return GPIO_TYPE_FAILURE;
|
||||||
}
|
}
|
||||||
@@ -225,13 +261,14 @@ ReturnValue_t LinuxLibgpioIF::checkForConflicts(GpioMap& mapToAdd){
|
|||||||
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
||||||
for(auto& gpioConfig: mapToAdd) {
|
for(auto& gpioConfig: mapToAdd) {
|
||||||
switch(gpioConfig.second->gpioType) {
|
switch(gpioConfig.second->gpioType) {
|
||||||
case(gpio::GpioTypes::GPIO_REGULAR): {
|
case(gpio::GpioTypes::GPIO_REGULAR_BY_CHIP):
|
||||||
auto regularGpio = dynamic_cast<GpiodRegular*>(gpioConfig.second);
|
case(gpio::GpioTypes::GPIO_REGULAR_BY_LABEL): {
|
||||||
|
auto regularGpio = dynamic_cast<GpiodRegularBase*>(gpioConfig.second);
|
||||||
if(regularGpio == nullptr) {
|
if(regularGpio == nullptr) {
|
||||||
return GPIO_TYPE_FAILURE;
|
return GPIO_TYPE_FAILURE;
|
||||||
}
|
}
|
||||||
/* Check for conflicts and remove duplicates if necessary */
|
/* Check for conflicts and remove duplicates if necessary */
|
||||||
result = checkForConflictsRegularGpio(gpioConfig.first, regularGpio, mapToAdd);
|
result = checkForConflictsRegularGpio(gpioConfig.first, *regularGpio, mapToAdd);
|
||||||
if(result != HasReturnvaluesIF::RETURN_OK) {
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
||||||
status = result;
|
status = result;
|
||||||
}
|
}
|
||||||
@@ -259,17 +296,19 @@ ReturnValue_t LinuxLibgpioIF::checkForConflicts(GpioMap& mapToAdd){
|
|||||||
|
|
||||||
|
|
||||||
ReturnValue_t LinuxLibgpioIF::checkForConflictsRegularGpio(gpioId_t gpioIdToCheck,
|
ReturnValue_t LinuxLibgpioIF::checkForConflictsRegularGpio(gpioId_t gpioIdToCheck,
|
||||||
GpiodRegular* gpioToCheck, GpioMap& mapToAdd) {
|
GpiodRegularBase& gpioToCheck, GpioMap& mapToAdd) {
|
||||||
/* Cross check with private map */
|
/* Cross check with private map */
|
||||||
gpioMapIter = gpioMap.find(gpioIdToCheck);
|
gpioMapIter = gpioMap.find(gpioIdToCheck);
|
||||||
if(gpioMapIter != gpioMap.end()) {
|
if(gpioMapIter != gpioMap.end()) {
|
||||||
if(gpioMapIter->second->gpioType != gpio::GpioTypes::GPIO_REGULAR) {
|
auto& gpioType = gpioMapIter->second->gpioType;
|
||||||
|
if(gpioType != gpio::GpioTypes::GPIO_REGULAR_BY_CHIP and
|
||||||
|
gpioType != gpio::GpioTypes::GPIO_REGULAR_BY_LABEL) {
|
||||||
sif::warning << "LinuxLibgpioIF::checkForConflicts: ID already exists for different "
|
sif::warning << "LinuxLibgpioIF::checkForConflicts: ID already exists for different "
|
||||||
"GPIO type" << gpioIdToCheck << ". Removing duplicate." << std::endl;
|
"GPIO type" << gpioIdToCheck << ". Removing duplicate." << std::endl;
|
||||||
mapToAdd.erase(gpioIdToCheck);
|
mapToAdd.erase(gpioIdToCheck);
|
||||||
return HasReturnvaluesIF::RETURN_OK;
|
return HasReturnvaluesIF::RETURN_OK;
|
||||||
}
|
}
|
||||||
auto ownRegularGpio = dynamic_cast<GpiodRegular*>(gpioMapIter->second);
|
auto ownRegularGpio = dynamic_cast<GpiodRegularBase*>(gpioMapIter->second);
|
||||||
if(ownRegularGpio == nullptr) {
|
if(ownRegularGpio == nullptr) {
|
||||||
return GPIO_TYPE_FAILURE;
|
return GPIO_TYPE_FAILURE;
|
||||||
}
|
}
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
#include <fsfw/objectmanager/SystemObject.h>
|
#include <fsfw/objectmanager/SystemObject.h>
|
||||||
|
|
||||||
class GpioCookie;
|
class GpioCookie;
|
||||||
|
class GpiodRegularIF;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class implements the GpioIF for a linux based system. The
|
* @brief This class implements the GpioIF for a linux based system. The
|
||||||
@@ -47,9 +48,13 @@ private:
|
|||||||
* @param gpioId The GPIO ID of the GPIO to drive.
|
* @param gpioId The GPIO ID of the GPIO to drive.
|
||||||
* @param logiclevel The logic level to set. O or 1.
|
* @param logiclevel The logic level to set. O or 1.
|
||||||
*/
|
*/
|
||||||
ReturnValue_t driveGpio(gpioId_t gpioId, GpiodRegular* regularGpio, unsigned int logiclevel);
|
ReturnValue_t driveGpio(gpioId_t gpioId, GpiodRegularBase& regularGpio,
|
||||||
|
gpio::Levels logicLevel);
|
||||||
|
|
||||||
ReturnValue_t configureRegularGpio(gpioId_t gpioId, GpiodRegular* regularGpio);
|
ReturnValue_t configureGpioByLabel(gpioId_t gpioId, GpiodRegularByLabel& gpioByLabel);
|
||||||
|
ReturnValue_t configureGpioByChip(gpioId_t gpioId, GpiodRegularByChip& gpioByChip);
|
||||||
|
ReturnValue_t configureRegularGpio(gpioId_t gpioId, gpio::GpioTypes gpioType,
|
||||||
|
struct gpiod_chip* chip, GpiodRegularBase& regularGpio, std::string failOutput);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This function checks if GPIOs are already registered and whether
|
* @brief This function checks if GPIOs are already registered and whether
|
||||||
@@ -62,7 +67,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
ReturnValue_t checkForConflicts(GpioMap& mapToAdd);
|
ReturnValue_t checkForConflicts(GpioMap& mapToAdd);
|
||||||
|
|
||||||
ReturnValue_t checkForConflictsRegularGpio(gpioId_t gpiodId, GpiodRegular* regularGpio,
|
ReturnValue_t checkForConflictsRegularGpio(gpioId_t gpiodId, GpiodRegularBase& regularGpio,
|
||||||
GpioMap& mapToAdd);
|
GpioMap& mapToAdd);
|
||||||
ReturnValue_t checkForConflictsCallbackGpio(gpioId_t gpiodId, GpioCallback* regularGpio,
|
ReturnValue_t checkForConflictsCallbackGpio(gpioId_t gpiodId, GpioCallback* regularGpio,
|
||||||
GpioMap& mapToAdd);
|
GpioMap& mapToAdd);
|
||||||
|
@@ -12,7 +12,7 @@ ReturnValue_t gpio::createRpiGpioConfig(GpioCookie* cookie, gpioId_t gpioId, int
|
|||||||
return HasReturnvaluesIF::RETURN_FAILED;
|
return HasReturnvaluesIF::RETURN_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
GpiodRegular* config = new GpiodRegular();
|
auto config = new GpiodRegularByChip();
|
||||||
/* Default chipname for Raspberry Pi. There is still gpiochip1 for expansion, but most users
|
/* Default chipname for Raspberry Pi. There is still gpiochip1 for expansion, but most users
|
||||||
will not need this */
|
will not need this */
|
||||||
config->chipname = "gpiochip0";
|
config->chipname = "gpiochip0";
|
||||||
|
@@ -141,8 +141,8 @@ ReturnValue_t SpiComIF::sendMessage(CookieIF *cookie, const uint8_t *sendData, s
|
|||||||
if(sendLen > spiCookie->getMaxBufferSize()) {
|
if(sendLen > spiCookie->getMaxBufferSize()) {
|
||||||
#if FSFW_VERBOSE_LEVEL >= 1
|
#if FSFW_VERBOSE_LEVEL >= 1
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
sif::warning << "SpiComIF::sendMessage: Too much data sent, send length" << sendLen <<
|
sif::warning << "SpiComIF::sendMessage: Too much data sent, send length " << sendLen <<
|
||||||
"larger than maximum buffer length" << spiCookie->getMaxBufferSize() << std::endl;
|
"larger than maximum buffer length " << spiCookie->getMaxBufferSize() << std::endl;
|
||||||
#else
|
#else
|
||||||
sif::printWarning("SpiComIF::sendMessage: Too much data sent, send length %lu larger "
|
sif::printWarning("SpiComIF::sendMessage: Too much data sent, send length %lu larger "
|
||||||
"than maximum buffer length %lu!\n", static_cast<unsigned long>(sendLen),
|
"than maximum buffer length %lu!\n", static_cast<unsigned long>(sendLen),
|
||||||
@@ -197,12 +197,26 @@ ReturnValue_t SpiComIF::performRegularSendOperation(SpiCookie *spiCookie, const
|
|||||||
if(gpioId != gpio::NO_GPIO) {
|
if(gpioId != gpio::NO_GPIO) {
|
||||||
result = spiMutex->lockMutex(timeoutType, timeoutMs);
|
result = spiMutex->lockMutex(timeoutType, timeoutMs);
|
||||||
if (result != RETURN_OK) {
|
if (result != RETURN_OK) {
|
||||||
|
#if FSFW_VERBOSE_LEVEL >= 1
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
sif::error << "SpiComIF::sendMessage: Failed to lock mutex" << std::endl;
|
sif::error << "SpiComIF::sendMessage: Failed to lock mutex" << std::endl;
|
||||||
|
#else
|
||||||
|
sif::printError("SpiComIF::sendMessage: Failed to lock mutex\n");
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
ReturnValue_t result = gpioComIF->pullLow(gpioId);
|
||||||
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
||||||
|
#if FSFW_VERBOSE_LEVEL >= 1
|
||||||
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
|
sif::warning << "SpiComIF::sendMessage: Pulling low CS pin failed" << std::endl;
|
||||||
|
#else
|
||||||
|
sif::printWarning("SpiComIF::sendMessage: Pulling low CS pin failed");
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
gpioComIF->pullLow(gpioId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Execute transfer */
|
/* Execute transfer */
|
||||||
@@ -213,7 +227,7 @@ ReturnValue_t SpiComIF::performRegularSendOperation(SpiCookie *spiCookie, const
|
|||||||
utility::handleIoctlError("SpiComIF::sendMessage: ioctl error.");
|
utility::handleIoctlError("SpiComIF::sendMessage: ioctl error.");
|
||||||
result = FULL_DUPLEX_TRANSFER_FAILED;
|
result = FULL_DUPLEX_TRANSFER_FAILED;
|
||||||
}
|
}
|
||||||
#if FSFW_HAL_LINUX_SPI_WIRETAPPING == 1
|
#if FSFW_HAL_SPI_WIRETAPPING == 1
|
||||||
performSpiWiretapping(spiCookie);
|
performSpiWiretapping(spiCookie);
|
||||||
#endif /* FSFW_LINUX_SPI_WIRETAPPING == 1 */
|
#endif /* FSFW_LINUX_SPI_WIRETAPPING == 1 */
|
||||||
}
|
}
|
||||||
@@ -384,11 +398,11 @@ GpioIF* SpiComIF::getGpioInterface() {
|
|||||||
void SpiComIF::setSpiSpeedAndMode(int spiFd, spi::SpiModes mode, uint32_t speed) {
|
void SpiComIF::setSpiSpeedAndMode(int spiFd, spi::SpiModes mode, uint32_t speed) {
|
||||||
int retval = ioctl(spiFd, SPI_IOC_WR_MODE, reinterpret_cast<uint8_t*>(&mode));
|
int retval = ioctl(spiFd, SPI_IOC_WR_MODE, reinterpret_cast<uint8_t*>(&mode));
|
||||||
if(retval != 0) {
|
if(retval != 0) {
|
||||||
utility::handleIoctlError("SpiTestClass::performRm3100Test: Setting SPI mode failed!");
|
utility::handleIoctlError("SpiComIF::setSpiSpeedAndMode: Setting SPI mode failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
retval = ioctl(spiFd, SPI_IOC_WR_MAX_SPEED_HZ, &speed);
|
retval = ioctl(spiFd, SPI_IOC_WR_MAX_SPEED_HZ, &speed);
|
||||||
if(retval != 0) {
|
if(retval != 0) {
|
||||||
utility::handleIoctlError("SpiTestClass::performRm3100Test: Setting SPI speed failed!");
|
utility::handleIoctlError("SpiComIF::setSpiSpeedAndMode: Setting SPI speed failed");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,6 +16,11 @@
|
|||||||
#cmakedefine FSFW_ADD_MONITORING
|
#cmakedefine FSFW_ADD_MONITORING
|
||||||
#cmakedefine FSFW_ADD_SGP4_PROPAGATOR
|
#cmakedefine FSFW_ADD_SGP4_PROPAGATOR
|
||||||
|
|
||||||
|
// Can be used for low-level debugging of the SPI bus
|
||||||
|
#ifndef FSFW_HAL_SPI_WIRETAPPING
|
||||||
|
#define FSFW_HAL_SPI_WIRETAPPING 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef FSFW_HAL_L3GD20_GYRO_DEBUG
|
#ifndef FSFW_HAL_L3GD20_GYRO_DEBUG
|
||||||
#define FSFW_HAL_L3GD20_GYRO_DEBUG 0
|
#define FSFW_HAL_L3GD20_GYRO_DEBUG 0
|
||||||
#endif /* FSFW_HAL_L3GD20_GYRO_DEBUG */
|
#endif /* FSFW_HAL_L3GD20_GYRO_DEBUG */
|
||||||
|
@@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
const char* const FSFW_VERSION_NAME = "ASTP";
|
const char* const FSFW_VERSION_NAME = "ASTP";
|
||||||
|
|
||||||
#define FSFW_VERSION 1
|
#define FSFW_VERSION 2
|
||||||
#define FSFW_SUBVERSION 2
|
#define FSFW_SUBVERSION 0
|
||||||
#define FSFW_REVISION 0
|
#define FSFW_REVISION 0
|
||||||
|
|
||||||
#endif /* FSFW_VERSION_H_ */
|
#endif /* FSFW_VERSION_H_ */
|
||||||
|
@@ -165,11 +165,9 @@ ReturnValue_t DleEncoder::decodeStreamEscaped(const uint8_t *sourceStream, size_
|
|||||||
if (sourceStream[encodedIndex++] != STX_CHAR) {
|
if (sourceStream[encodedIndex++] != STX_CHAR) {
|
||||||
return DECODING_ERROR;
|
return DECODING_ERROR;
|
||||||
}
|
}
|
||||||
while ((encodedIndex < sourceStreamLen)
|
while ((encodedIndex < sourceStreamLen) and (decodedIndex < maxDestStreamlen)) {
|
||||||
and (decodedIndex < maxDestStreamlen)
|
switch(sourceStream[encodedIndex]) {
|
||||||
and (sourceStream[encodedIndex] != ETX_CHAR)
|
case(DLE_CHAR): {
|
||||||
and (sourceStream[encodedIndex] != STX_CHAR)) {
|
|
||||||
if (sourceStream[encodedIndex] == DLE_CHAR) {
|
|
||||||
if(encodedIndex + 1 >= sourceStreamLen) {
|
if(encodedIndex + 1 >= sourceStreamLen) {
|
||||||
//reached the end of the sourceStream
|
//reached the end of the sourceStream
|
||||||
*readLen = sourceStreamLen;
|
*readLen = sourceStreamLen;
|
||||||
@@ -197,29 +195,33 @@ ReturnValue_t DleEncoder::decodeStreamEscaped(const uint8_t *sourceStream, size_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
++encodedIndex;
|
++encodedIndex;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else {
|
case(STX_CHAR): {
|
||||||
|
*readLen = encodedIndex;
|
||||||
|
return DECODING_ERROR;
|
||||||
|
}
|
||||||
|
case(ETX_CHAR): {
|
||||||
|
*readLen = ++encodedIndex;
|
||||||
|
*decodedLen = decodedIndex;
|
||||||
|
return RETURN_OK;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
destStream[decodedIndex] = sourceStream[encodedIndex];
|
destStream[decodedIndex] = sourceStream[encodedIndex];
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
++encodedIndex;
|
++encodedIndex;
|
||||||
++decodedIndex;
|
++decodedIndex;
|
||||||
}
|
}
|
||||||
if (sourceStream[encodedIndex] != ETX_CHAR) {
|
|
||||||
if(decodedIndex == maxDestStreamlen) {
|
if(decodedIndex == maxDestStreamlen) {
|
||||||
//so far we did not find anything wrong here, so let user try again
|
//so far we did not find anything wrong here, so let user try again
|
||||||
*readLen = 0;
|
*readLen = 0;
|
||||||
return STREAM_TOO_SHORT;
|
return STREAM_TOO_SHORT;
|
||||||
}
|
} else {
|
||||||
else {
|
*readLen = encodedIndex;
|
||||||
*readLen = ++encodedIndex;
|
return DECODING_ERROR;
|
||||||
return DECODING_ERROR;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
*readLen = ++encodedIndex;
|
|
||||||
*decodedLen = decodedIndex;
|
|
||||||
return RETURN_OK;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -13,7 +13,6 @@ target_sources(${LIB_FSFW_NAME}
|
|||||||
QueueFactory.cpp
|
QueueFactory.cpp
|
||||||
SemaphoreFactory.cpp
|
SemaphoreFactory.cpp
|
||||||
TaskFactory.cpp
|
TaskFactory.cpp
|
||||||
Timer.cpp
|
|
||||||
tcpipHelpers.cpp
|
tcpipHelpers.cpp
|
||||||
unixUtility.cpp
|
unixUtility.cpp
|
||||||
)
|
)
|
||||||
|
@@ -1,45 +0,0 @@
|
|||||||
#include "fsfw/osal/linux/Timer.h"
|
|
||||||
#include "fsfw/serviceinterface/ServiceInterfaceStream.h"
|
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
|
|
||||||
Timer::Timer() {
|
|
||||||
sigevent sigEvent;
|
|
||||||
sigEvent.sigev_notify = SIGEV_NONE;
|
|
||||||
sigEvent.sigev_signo = 0;
|
|
||||||
sigEvent.sigev_value.sival_ptr = &timerId;
|
|
||||||
int status = timer_create(CLOCK_MONOTONIC, &sigEvent, &timerId);
|
|
||||||
if(status!=0){
|
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
||||||
sif::error << "Timer creation failed with: " << status <<
|
|
||||||
" errno: " << errno << std::endl;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Timer::~Timer() {
|
|
||||||
timer_delete(timerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
int Timer::setTimer(uint32_t intervalMs) {
|
|
||||||
itimerspec timer;
|
|
||||||
timer.it_value.tv_sec = intervalMs / 1000;
|
|
||||||
timer.it_value.tv_nsec = (intervalMs * 1000000) % (1000000000);
|
|
||||||
timer.it_interval.tv_sec = 0;
|
|
||||||
timer.it_interval.tv_nsec = 0;
|
|
||||||
return timer_settime(timerId, 0, &timer, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int Timer::getTimer(uint32_t* remainingTimeMs){
|
|
||||||
itimerspec timer;
|
|
||||||
timer.it_value.tv_sec = 0;
|
|
||||||
timer.it_value.tv_nsec = 0;
|
|
||||||
timer.it_interval.tv_sec = 0;
|
|
||||||
timer.it_interval.tv_nsec = 0;
|
|
||||||
int status = timer_gettime(timerId, &timer);
|
|
||||||
|
|
||||||
*remainingTimeMs = timer.it_value.tv_sec * 1000 + timer.it_value.tv_nsec / 1000000;
|
|
||||||
|
|
||||||
return status;
|
|
||||||
}
|
|
@@ -1,45 +0,0 @@
|
|||||||
#ifndef FRAMEWORK_OSAL_LINUX_TIMER_H_
|
|
||||||
#define FRAMEWORK_OSAL_LINUX_TIMER_H_
|
|
||||||
|
|
||||||
#include <signal.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This class is a helper for the creation of a Clock Monotonic timer which does not trigger a signal
|
|
||||||
*/
|
|
||||||
class Timer {
|
|
||||||
public:
|
|
||||||
/**
|
|
||||||
* Creates the Timer sets the timerId Member
|
|
||||||
*/
|
|
||||||
Timer();
|
|
||||||
/**
|
|
||||||
* Deletes the timer
|
|
||||||
*
|
|
||||||
* Careful! According to POSIX documentation:
|
|
||||||
* The treatment of any pending signal generated by the deleted timer is unspecified.
|
|
||||||
*/
|
|
||||||
virtual ~Timer();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the timer given in timerId to the given interval
|
|
||||||
*
|
|
||||||
* @param intervalMs Interval in ms to be set
|
|
||||||
* @return 0 on Success 1 else
|
|
||||||
*/
|
|
||||||
int setTimer(uint32_t intervalMs);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the remaining time of the timer
|
|
||||||
*
|
|
||||||
* @param remainingTimeMs Pointer to integer value which is used to return the remaining time
|
|
||||||
* @return 0 on Success 1 else (see timer_getime documentation of posix function)
|
|
||||||
*/
|
|
||||||
int getTimer(uint32_t* remainingTimeMs);
|
|
||||||
|
|
||||||
private:
|
|
||||||
timer_t timerId;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* FRAMEWORK_OSAL_LINUX_TIMER_H_ */
|
|
@@ -72,10 +72,12 @@ enum: uint8_t {
|
|||||||
PUS_SERVICE_3, //PUS3
|
PUS_SERVICE_3, //PUS3
|
||||||
PUS_SERVICE_9, //PUS9
|
PUS_SERVICE_9, //PUS9
|
||||||
FILE_SYSTEM, //FILS
|
FILE_SYSTEM, //FILS
|
||||||
|
LINUX_OSAL, //UXOS
|
||||||
HAL_SPI, //HSPI
|
HAL_SPI, //HSPI
|
||||||
HAL_UART, //HURT
|
HAL_UART, //HURT
|
||||||
HAL_I2C, //HI2C
|
HAL_I2C, //HI2C
|
||||||
HAL_GPIO, //HGIO
|
HAL_GPIO, //HGIO
|
||||||
|
FIXED_SLOT_TASK_IF, //FTIF
|
||||||
MGM_LIS3MDL, //MGMLIS3
|
MGM_LIS3MDL, //MGMLIS3
|
||||||
MGM_RM3100, //MGMRM3100
|
MGM_RM3100, //MGMRM3100
|
||||||
FW_CLASS_ID_COUNT // [EXPORT] : [END]
|
FW_CLASS_ID_COUNT // [EXPORT] : [END]
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
#include "fsfw/tasks/FixedSlotSequence.h"
|
#include "fsfw/tasks/FixedSlotSequence.h"
|
||||||
|
#include "fsfw/tasks/FixedTimeslotTaskIF.h"
|
||||||
#include "fsfw/serviceinterface/ServiceInterface.h"
|
#include "fsfw/serviceinterface/ServiceInterface.h"
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
@@ -92,10 +93,9 @@ void FixedSlotSequence::addSlot(object_id_t componentId, uint32_t slotTimeMs,
|
|||||||
ReturnValue_t FixedSlotSequence::checkSequence() const {
|
ReturnValue_t FixedSlotSequence::checkSequence() const {
|
||||||
if(slotList.empty()) {
|
if(slotList.empty()) {
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
sif::error << "FixedSlotSequence::checkSequence:"
|
sif::warning << "FixedSlotSequence::checkSequence: Slot list is empty!" << std::endl;
|
||||||
<< " Slot list is empty!" << std::endl;
|
|
||||||
#endif
|
#endif
|
||||||
return HasReturnvaluesIF::RETURN_FAILED;
|
return FixedTimeslotTaskIF::SLOT_LIST_EMPTY;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(customCheckFunction != nullptr) {
|
if(customCheckFunction != nullptr) {
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
#define FSFW_TASKS_FIXEDSLOTSEQUENCE_H_
|
#define FSFW_TASKS_FIXEDSLOTSEQUENCE_H_
|
||||||
|
|
||||||
#include "FixedSequenceSlot.h"
|
#include "FixedSequenceSlot.h"
|
||||||
#include "../objectmanager/SystemObject.h"
|
#include "fsfw/objectmanager/SystemObject.h"
|
||||||
|
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
@@ -136,6 +136,7 @@ public:
|
|||||||
* @details
|
* @details
|
||||||
* Checks if timing is ok (must be ascending) and if all handlers were found.
|
* Checks if timing is ok (must be ascending) and if all handlers were found.
|
||||||
* @return
|
* @return
|
||||||
|
* - SLOT_LIST_EMPTY if the slot list is empty
|
||||||
*/
|
*/
|
||||||
ReturnValue_t checkSequence() const;
|
ReturnValue_t checkSequence() const;
|
||||||
|
|
||||||
@@ -147,6 +148,7 @@ public:
|
|||||||
* The general check will be continued for now if the custom check function
|
* The general check will be continued for now if the custom check function
|
||||||
* fails but a diagnostic debug output will be given.
|
* fails but a diagnostic debug output will be given.
|
||||||
* @param customCheckFunction
|
* @param customCheckFunction
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
void addCustomCheck(ReturnValue_t (*customCheckFunction)(const SlotList &));
|
void addCustomCheck(ReturnValue_t (*customCheckFunction)(const SlotList &));
|
||||||
|
|
||||||
|
@@ -2,7 +2,8 @@
|
|||||||
#define FRAMEWORK_TASKS_FIXEDTIMESLOTTASKIF_H_
|
#define FRAMEWORK_TASKS_FIXEDTIMESLOTTASKIF_H_
|
||||||
|
|
||||||
#include "PeriodicTaskIF.h"
|
#include "PeriodicTaskIF.h"
|
||||||
#include "../objectmanager/ObjectManagerIF.h"
|
#include "fsfw/objectmanager/ObjectManagerIF.h"
|
||||||
|
#include "fsfw/returnvalues/FwClassIds.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Following the same principle as the base class IF.
|
* @brief Following the same principle as the base class IF.
|
||||||
@@ -12,6 +13,8 @@ class FixedTimeslotTaskIF : public PeriodicTaskIF {
|
|||||||
public:
|
public:
|
||||||
virtual ~FixedTimeslotTaskIF() {}
|
virtual ~FixedTimeslotTaskIF() {}
|
||||||
|
|
||||||
|
static constexpr ReturnValue_t SLOT_LIST_EMPTY = HasReturnvaluesIF::makeReturnCode(
|
||||||
|
CLASS_ID::FIXED_SLOT_TASK_IF, 0);
|
||||||
/**
|
/**
|
||||||
* Add an object with a slot time and the execution step to the task.
|
* Add an object with a slot time and the execution step to the task.
|
||||||
* The execution step will be passed to the object (e.g. as an operation
|
* The execution step will be passed to the object (e.g. as an operation
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
#ifndef FRAMEWORK_TASKS_TYPEDEF_H_
|
#ifndef FSFW_TASKS_TYPEDEF_H_
|
||||||
#define FRAMEWORK_TASKS_TYPEDEF_H_
|
#define FSFW_TASKS_TYPEDEF_H_
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
typedef const char* TaskName;
|
typedef const char* TaskName;
|
||||||
typedef uint32_t TaskPriority;
|
typedef uint32_t TaskPriority;
|
||||||
@@ -7,4 +10,4 @@ typedef size_t TaskStackSize;
|
|||||||
typedef double TaskPeriod;
|
typedef double TaskPeriod;
|
||||||
typedef void (*TaskDeadlineMissedFunction)();
|
typedef void (*TaskDeadlineMissedFunction)();
|
||||||
|
|
||||||
#endif /* FRAMEWORK_TASKS_TYPEDEF_H_ */
|
#endif /* FSFW_TASKS_TYPEDEF_H_ */
|
||||||
|
@@ -6,16 +6,14 @@ Countdown::Countdown(uint32_t initialTimeout): timeout(initialTimeout) {
|
|||||||
Countdown::~Countdown() {
|
Countdown::~Countdown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
ReturnValue_t Countdown::setTimeout(uint32_t miliseconds) {
|
ReturnValue_t Countdown::setTimeout(uint32_t milliseconds) {
|
||||||
ReturnValue_t return_value = Clock::getUptime( &startTime );
|
ReturnValue_t returnValue = Clock::getUptime( &startTime );
|
||||||
timeout = miliseconds;
|
timeout = milliseconds;
|
||||||
return return_value;
|
return returnValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Countdown::hasTimedOut() const {
|
bool Countdown::hasTimedOut() const {
|
||||||
uint32_t current_time;
|
if ( uint32_t( this->getCurrentTime() - startTime) >= timeout) {
|
||||||
Clock::getUptime( ¤t_time );
|
|
||||||
if ( uint32_t(current_time - startTime) >= timeout) {
|
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
@@ -31,7 +29,23 @@ ReturnValue_t Countdown::resetTimer() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Countdown::timeOut() {
|
void Countdown::timeOut() {
|
||||||
uint32_t current_time;
|
startTime = this->getCurrentTime() - timeout;
|
||||||
Clock::getUptime( ¤t_time );
|
}
|
||||||
startTime= current_time - timeout;
|
|
||||||
|
uint32_t Countdown::getRemainingMillis() const {
|
||||||
|
// We fetch the time before the if-statement
|
||||||
|
// to be sure that the return is in
|
||||||
|
// range 0 <= number <= timeout
|
||||||
|
uint32_t currentTime = this->getCurrentTime();
|
||||||
|
if (this->hasTimedOut()){
|
||||||
|
return 0;
|
||||||
|
}else{
|
||||||
|
return (startTime + timeout) - currentTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t Countdown::getCurrentTime() const {
|
||||||
|
uint32_t currentTime;
|
||||||
|
Clock::getUptime( ¤tTime );
|
||||||
|
return currentTime;
|
||||||
}
|
}
|
||||||
|
@@ -4,28 +4,77 @@
|
|||||||
#include "Clock.h"
|
#include "Clock.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This file defines the Countdown class.
|
*
|
||||||
* @author baetz
|
* Countdown keeps track of a timespan.
|
||||||
|
*
|
||||||
|
* Countdown::resetTimer restarts the timer.
|
||||||
|
* Countdown::setTimeout sets a new countdown duration and resets.
|
||||||
|
*
|
||||||
|
* Can be checked with Countdown::hasTimedOut or
|
||||||
|
* Countdown::isBusy.
|
||||||
|
*
|
||||||
|
* Countdown::timeOut will force the timer to time out.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
class Countdown {
|
class Countdown {
|
||||||
public:
|
public:
|
||||||
uint32_t timeout;
|
/**
|
||||||
|
* Constructor which sets the countdown duration in milliseconds
|
||||||
|
*
|
||||||
|
* It does not start the countdown!
|
||||||
|
* Call resetTimer or setTimeout before usage!
|
||||||
|
* Otherwise a call to hasTimedOut might return True.
|
||||||
|
*
|
||||||
|
* @param initialTimeout Countdown duration in milliseconds
|
||||||
|
*/
|
||||||
Countdown(uint32_t initialTimeout = 0);
|
Countdown(uint32_t initialTimeout = 0);
|
||||||
~Countdown();
|
~Countdown();
|
||||||
ReturnValue_t setTimeout(uint32_t miliseconds);
|
/**
|
||||||
|
* Call to set a new countdown duration.
|
||||||
|
*
|
||||||
|
* Resets the countdown!
|
||||||
|
*
|
||||||
|
* @param milliseconds new countdown duration in milliseconds
|
||||||
|
* @return Returnvalue from Clock::getUptime
|
||||||
|
*/
|
||||||
|
ReturnValue_t setTimeout(uint32_t milliseconds);
|
||||||
|
/**
|
||||||
|
* Returns true if the countdown duration has passed.
|
||||||
|
*
|
||||||
|
* @return True if the countdown has passed
|
||||||
|
* False if it is still running
|
||||||
|
*/
|
||||||
bool hasTimedOut() const;
|
bool hasTimedOut() const;
|
||||||
|
/**
|
||||||
|
* Complementary to hasTimedOut.
|
||||||
|
*
|
||||||
|
* @return True if the countdown is till running
|
||||||
|
* False if it is still running
|
||||||
|
*/
|
||||||
bool isBusy() const;
|
bool isBusy() const;
|
||||||
|
/**
|
||||||
//!< Use last set timeout value and restart timer.
|
* Uses last set timeout value and restarts timer.
|
||||||
|
*/
|
||||||
ReturnValue_t resetTimer();
|
ReturnValue_t resetTimer();
|
||||||
|
/**
|
||||||
//!< Make hasTimedOut() return true
|
* Returns the remaining milliseconds (0 if timeout)
|
||||||
|
*/
|
||||||
|
uint32_t getRemainingMillis() const;
|
||||||
|
/**
|
||||||
|
* Makes hasTimedOut() return true
|
||||||
|
*/
|
||||||
void timeOut();
|
void timeOut();
|
||||||
|
/**
|
||||||
|
* Internal countdown duration in milliseconds
|
||||||
|
*/
|
||||||
|
uint32_t timeout;
|
||||||
private:
|
private:
|
||||||
|
/**
|
||||||
|
* Last time the timer was started (uptime)
|
||||||
|
*/
|
||||||
uint32_t startTime = 0;
|
uint32_t startTime = 0;
|
||||||
|
|
||||||
|
uint32_t getCurrentTime() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FSFW_TIMEMANAGER_COUNTDOWN_H_ */
|
#endif /* FSFW_TIMEMANAGER_COUNTDOWN_H_ */
|
||||||
|
@@ -19,7 +19,8 @@ public:
|
|||||||
/**
|
/**
|
||||||
* The constructor initializes the packet and sets all header information
|
* The constructor initializes the packet and sets all header information
|
||||||
* according to the passed parameters.
|
* according to the passed parameters.
|
||||||
* @param packetDataLength Sets the packet data length field and therefore specifies the size of the packet.
|
* @param packetDataLength Sets the packet data length field and therefore specifies
|
||||||
|
* the size of the packet.
|
||||||
* @param isTelecommand Sets the packet type field to either TC (true) or TM (false).
|
* @param isTelecommand Sets the packet type field to either TC (true) or TM (false).
|
||||||
* @param apid Sets the packet's APID field. The default value describes an idle packet.
|
* @param apid Sets the packet's APID field. The default value describes an idle packet.
|
||||||
* @param sequenceCount ets the packet's Source Sequence Count field.
|
* @param sequenceCount ets the packet's Source Sequence Count field.
|
||||||
|
@@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
SpacePacketBase::SpacePacketBase( const uint8_t* set_address ) {
|
SpacePacketBase::SpacePacketBase(const uint8_t* setAddress) {
|
||||||
this->data = (SpacePacketPointer*) set_address;
|
this->data = reinterpret_cast<SpacePacketPointer*>(const_cast<uint8_t*>(setAddress));
|
||||||
}
|
}
|
||||||
|
|
||||||
SpacePacketBase::~SpacePacketBase() {
|
SpacePacketBase::~SpacePacketBase() {
|
||||||
@@ -12,94 +12,112 @@ SpacePacketBase::~SpacePacketBase() {
|
|||||||
|
|
||||||
//CCSDS Methods:
|
//CCSDS Methods:
|
||||||
uint8_t SpacePacketBase::getPacketVersionNumber( void ) {
|
uint8_t SpacePacketBase::getPacketVersionNumber( void ) {
|
||||||
return (this->data->header.packet_id_h & 0b11100000) >> 5;
|
return (this->data->header.packet_id_h & 0b11100000) >> 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpacePacketBase::initSpacePacketHeader(bool isTelecommand,
|
ReturnValue_t SpacePacketBase::initSpacePacketHeader(bool isTelecommand,
|
||||||
bool hasSecondaryHeader, uint16_t apid, uint16_t sequenceCount) {
|
bool hasSecondaryHeader, uint16_t apid, uint16_t sequenceCount) {
|
||||||
//reset header to zero:
|
if(data == nullptr) {
|
||||||
memset(data,0, sizeof(this->data->header) );
|
#if FSFW_VERBOSE_LEVEL >= 1
|
||||||
//Set TC/TM bit.
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
data->header.packet_id_h = ((isTelecommand? 1 : 0)) << 4;
|
sif::warning << "SpacePacketBase::initSpacePacketHeader: Data pointer is invalid"
|
||||||
//Set secondaryHeader bit
|
<< std::endl;
|
||||||
data->header.packet_id_h |= ((hasSecondaryHeader? 1 : 0)) << 3;
|
#else
|
||||||
this->setAPID( apid );
|
sif::printWarning("SpacePacketBase::initSpacePacketHeader: Data pointer is invalid!\n");
|
||||||
//Always initialize as standalone packets.
|
#endif
|
||||||
data->header.sequence_control_h = 0b11000000;
|
#endif
|
||||||
setPacketSequenceCount(sequenceCount);
|
return HasReturnvaluesIF::RETURN_FAILED;
|
||||||
|
}
|
||||||
|
//reset header to zero:
|
||||||
|
memset(data, 0, sizeof(this->data->header) );
|
||||||
|
//Set TC/TM bit.
|
||||||
|
data->header.packet_id_h = ((isTelecommand? 1 : 0)) << 4;
|
||||||
|
//Set secondaryHeader bit
|
||||||
|
data->header.packet_id_h |= ((hasSecondaryHeader? 1 : 0)) << 3;
|
||||||
|
this->setAPID( apid );
|
||||||
|
//Always initialize as standalone packets.
|
||||||
|
data->header.sequence_control_h = 0b11000000;
|
||||||
|
setPacketSequenceCount(sequenceCount);
|
||||||
|
return HasReturnvaluesIF::RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SpacePacketBase::isTelecommand( void ) {
|
bool SpacePacketBase::isTelecommand( void ) {
|
||||||
return (this->data->header.packet_id_h & 0b00010000) >> 4;
|
return (this->data->header.packet_id_h & 0b00010000) >> 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SpacePacketBase::hasSecondaryHeader( void ) {
|
bool SpacePacketBase::hasSecondaryHeader( void ) {
|
||||||
return (this->data->header.packet_id_h & 0b00001000) >> 3;
|
return (this->data->header.packet_id_h & 0b00001000) >> 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t SpacePacketBase::getPacketId() {
|
uint16_t SpacePacketBase::getPacketId() {
|
||||||
return ( (this->data->header.packet_id_h) << 8 ) +
|
return ( (this->data->header.packet_id_h) << 8 ) +
|
||||||
this->data->header.packet_id_l;
|
this->data->header.packet_id_l;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t SpacePacketBase::getAPID( void ) const {
|
uint16_t SpacePacketBase::getAPID( void ) const {
|
||||||
return ( (this->data->header.packet_id_h & 0b00000111) << 8 ) +
|
return ( (this->data->header.packet_id_h & 0b00000111) << 8 ) +
|
||||||
this->data->header.packet_id_l;
|
this->data->header.packet_id_l;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpacePacketBase::setAPID( uint16_t new_apid ) {
|
void SpacePacketBase::setAPID( uint16_t new_apid ) {
|
||||||
//Use first three bits of new APID, but keep rest of packet id as it was (see specification).
|
// Use first three bits of new APID, but keep rest of packet id as it was (see specification).
|
||||||
this->data->header.packet_id_h = (this->data->header.packet_id_h & 0b11111000) | ( ( new_apid & 0x0700 ) >> 8 );
|
this->data->header.packet_id_h = (this->data->header.packet_id_h & 0b11111000) |
|
||||||
this->data->header.packet_id_l = ( new_apid & 0x00FF );
|
( ( new_apid & 0x0700 ) >> 8 );
|
||||||
|
this->data->header.packet_id_l = ( new_apid & 0x00FF );
|
||||||
|
}
|
||||||
|
|
||||||
|
void SpacePacketBase::setSequenceFlags( uint8_t sequenceflags ) {
|
||||||
|
this->data->header.sequence_control_h &= 0x3F;
|
||||||
|
this->data->header.sequence_control_h |= sequenceflags << 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t SpacePacketBase::getPacketSequenceControl( void ) {
|
uint16_t SpacePacketBase::getPacketSequenceControl( void ) {
|
||||||
return ( (this->data->header.sequence_control_h) << 8 )
|
return ( (this->data->header.sequence_control_h) << 8 )
|
||||||
+ this->data->header.sequence_control_l;
|
+ this->data->header.sequence_control_l;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t SpacePacketBase::getSequenceFlags( void ) {
|
uint8_t SpacePacketBase::getSequenceFlags( void ) {
|
||||||
return (this->data->header.sequence_control_h & 0b11000000) >> 6 ;
|
return (this->data->header.sequence_control_h & 0b11000000) >> 6 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t SpacePacketBase::getPacketSequenceCount( void ) const {
|
uint16_t SpacePacketBase::getPacketSequenceCount( void ) const {
|
||||||
return ( (this->data->header.sequence_control_h & 0b00111111) << 8 )
|
return ( (this->data->header.sequence_control_h & 0b00111111) << 8 )
|
||||||
+ this->data->header.sequence_control_l;
|
+ this->data->header.sequence_control_l;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpacePacketBase::setPacketSequenceCount( uint16_t new_count) {
|
void SpacePacketBase::setPacketSequenceCount( uint16_t new_count) {
|
||||||
this->data->header.sequence_control_h = ( this->data->header.sequence_control_h & 0b11000000 ) | ( ( (new_count%LIMIT_SEQUENCE_COUNT) & 0x3F00 ) >> 8 );
|
this->data->header.sequence_control_h = ( this->data->header.sequence_control_h & 0b11000000 ) |
|
||||||
this->data->header.sequence_control_l = ( (new_count%LIMIT_SEQUENCE_COUNT) & 0x00FF );
|
( ( (new_count%LIMIT_SEQUENCE_COUNT) & 0x3F00 ) >> 8 );
|
||||||
|
this->data->header.sequence_control_l = ( (new_count%LIMIT_SEQUENCE_COUNT) & 0x00FF );
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t SpacePacketBase::getPacketDataLength() const {
|
uint16_t SpacePacketBase::getPacketDataLength() const {
|
||||||
return ( (this->data->header.packet_length_h) << 8 )
|
return ( (this->data->header.packet_length_h) << 8 )
|
||||||
+ this->data->header.packet_length_l;
|
+ this->data->header.packet_length_l;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpacePacketBase::setPacketDataLength( uint16_t new_length) {
|
void SpacePacketBase::setPacketDataLength( uint16_t new_length) {
|
||||||
this->data->header.packet_length_h = ( ( new_length & 0xFF00 ) >> 8 );
|
this->data->header.packet_length_h = ( ( new_length & 0xFF00 ) >> 8 );
|
||||||
this->data->header.packet_length_l = ( new_length & 0x00FF );
|
this->data->header.packet_length_l = ( new_length & 0x00FF );
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t SpacePacketBase::getFullSize() {
|
size_t SpacePacketBase::getFullSize() {
|
||||||
//+1 is done because size in packet data length field is: size of data field -1
|
// +1 is done because size in packet data length field is: size of data field -1
|
||||||
return this->getPacketDataLength() + sizeof(this->data->header) + 1;
|
return this->getPacketDataLength() + sizeof(this->data->header) + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t* SpacePacketBase::getWholeData() {
|
uint8_t* SpacePacketBase::getWholeData() {
|
||||||
return (uint8_t*)this->data;
|
return (uint8_t*)this->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpacePacketBase::setData( const uint8_t* p_Data ) {
|
void SpacePacketBase::setData( const uint8_t* p_Data ) {
|
||||||
this->data = (SpacePacketPointer*)p_Data;
|
this->data = (SpacePacketPointer*)p_Data;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t SpacePacketBase::getApidAndSequenceCount() const {
|
uint32_t SpacePacketBase::getApidAndSequenceCount() const {
|
||||||
return (getAPID() << 16) + getPacketSequenceCount();
|
return (getAPID() << 16) + getPacketSequenceCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t* SpacePacketBase::getPacketData() {
|
uint8_t* SpacePacketBase::getPacketData() {
|
||||||
return &(data->packet_data);
|
return &(data->packet_data);
|
||||||
}
|
}
|
||||||
|
@@ -2,6 +2,8 @@
|
|||||||
#define FSFW_TMTCPACKET_SPACEPACKETBASE_H_
|
#define FSFW_TMTCPACKET_SPACEPACKETBASE_H_
|
||||||
|
|
||||||
#include "ccsds_header.h"
|
#include "ccsds_header.h"
|
||||||
|
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
|
||||||
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -20,8 +22,8 @@
|
|||||||
* @ingroup tmtcpackets
|
* @ingroup tmtcpackets
|
||||||
*/
|
*/
|
||||||
struct SpacePacketPointer {
|
struct SpacePacketPointer {
|
||||||
CCSDSPrimaryHeader header;
|
CCSDSPrimaryHeader header;
|
||||||
uint8_t packet_data;
|
uint8_t packet_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -37,143 +39,151 @@ struct SpacePacketPointer {
|
|||||||
*/
|
*/
|
||||||
class SpacePacketBase {
|
class SpacePacketBase {
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
* A pointer to a structure which defines the data structure of
|
* A pointer to a structure which defines the data structure of
|
||||||
* the packet header.
|
* the packet header.
|
||||||
* To be hardware-safe, all elements are of byte size.
|
* To be hardware-safe, all elements are of byte size.
|
||||||
*/
|
*/
|
||||||
SpacePacketPointer* data;
|
SpacePacketPointer* data;
|
||||||
public:
|
public:
|
||||||
static const uint16_t LIMIT_APID = 2048; //2^1
|
static const uint16_t LIMIT_APID = 2048; //2^1
|
||||||
static const uint16_t LIMIT_SEQUENCE_COUNT = 16384; // 2^14
|
static const uint16_t LIMIT_SEQUENCE_COUNT = 16384; // 2^14
|
||||||
static const uint16_t APID_IDLE_PACKET = 0x7FF;
|
static const uint16_t APID_IDLE_PACKET = 0x7FF;
|
||||||
static const uint8_t TELECOMMAND_PACKET = 1;
|
static const uint8_t TELECOMMAND_PACKET = 1;
|
||||||
static const uint8_t TELEMETRY_PACKET = 0;
|
static const uint8_t TELEMETRY_PACKET = 0;
|
||||||
/**
|
/**
|
||||||
* This definition defines the CRC size in byte.
|
* This definition defines the CRC size in byte.
|
||||||
*/
|
*/
|
||||||
static const uint8_t CRC_SIZE = 2;
|
static const uint8_t CRC_SIZE = 2;
|
||||||
/**
|
/**
|
||||||
* This is the minimum size of a SpacePacket.
|
* This is the minimum size of a SpacePacket.
|
||||||
*/
|
*/
|
||||||
static const uint16_t MINIMUM_SIZE = sizeof(CCSDSPrimaryHeader) + CRC_SIZE;
|
static const uint16_t MINIMUM_SIZE = sizeof(CCSDSPrimaryHeader) + CRC_SIZE;
|
||||||
/**
|
/**
|
||||||
* This is the default constructor.
|
* This is the default constructor.
|
||||||
* It sets its internal data pointer to the address passed.
|
* It sets its internal data pointer to the address passed.
|
||||||
* @param set_address The position where the packet data lies.
|
* @param set_address The position where the packet data lies.
|
||||||
*/
|
*/
|
||||||
SpacePacketBase( const uint8_t* set_address );
|
SpacePacketBase( const uint8_t* set_address );
|
||||||
/**
|
/**
|
||||||
* No data is allocated, so the destructor is empty.
|
* No data is allocated, so the destructor is empty.
|
||||||
*/
|
*/
|
||||||
virtual ~SpacePacketBase();
|
virtual ~SpacePacketBase();
|
||||||
|
|
||||||
//CCSDS Methods:
|
//CCSDS Methods
|
||||||
/**
|
|
||||||
* Getter for the packet version number field.
|
|
||||||
* @return Returns the highest three bit of the packet in one byte.
|
|
||||||
*/
|
|
||||||
uint8_t getPacketVersionNumber( void );
|
|
||||||
/**
|
|
||||||
* This method checks the type field in the header.
|
|
||||||
* This bit specifies, if the command is interpreted as Telecommand of
|
|
||||||
* as Telemetry. For a Telecommand, the bit is set.
|
|
||||||
* @return Returns true if the bit is set and false if not.
|
|
||||||
*/
|
|
||||||
bool isTelecommand( void );
|
|
||||||
|
|
||||||
void initSpacePacketHeader(bool isTelecommand, bool hasSecondaryHeader,
|
/**
|
||||||
uint16_t apid, uint16_t sequenceCount = 0);
|
* Getter for the packet version number field.
|
||||||
/**
|
* @return Returns the highest three bit of the packet in one byte.
|
||||||
* The CCSDS header provides a secondary header flag (the fifth-highest bit),
|
*/
|
||||||
* which is checked with this method.
|
uint8_t getPacketVersionNumber( void );
|
||||||
* @return Returns true if the bit is set and false if not.
|
/**
|
||||||
*/
|
* This method checks the type field in the header.
|
||||||
bool hasSecondaryHeader( void );
|
* This bit specifies, if the command is interpreted as Telecommand of
|
||||||
/**
|
* as Telemetry. For a Telecommand, the bit is set.
|
||||||
* Returns the complete first two bytes of the packet, which together form
|
* @return Returns true if the bit is set and false if not.
|
||||||
* the CCSDS packet id.
|
*/
|
||||||
* @return The CCSDS packet id.
|
bool isTelecommand( void );
|
||||||
*/
|
|
||||||
uint16_t getPacketId( void );
|
|
||||||
/**
|
|
||||||
* Returns the APID of a packet, which are the lowest 11 bit of the packet
|
|
||||||
* id.
|
|
||||||
* @return The CCSDS APID.
|
|
||||||
*/
|
|
||||||
uint16_t getAPID( void ) const;
|
|
||||||
/**
|
|
||||||
* Sets the APID of a packet, which are the lowest 11 bit of the packet
|
|
||||||
* id.
|
|
||||||
* @param The APID to set. The highest five bits of the parameter are
|
|
||||||
* ignored.
|
|
||||||
*/
|
|
||||||
void setAPID( uint16_t setAPID );
|
|
||||||
/**
|
|
||||||
* Returns the CCSDS packet sequence control field, which are the third and
|
|
||||||
* the fourth byte of the CCSDS primary header.
|
|
||||||
* @return The CCSDS packet sequence control field.
|
|
||||||
*/
|
|
||||||
uint16_t getPacketSequenceControl( void );
|
|
||||||
/**
|
|
||||||
* Returns the SequenceFlags, which are the highest two bit of the packet
|
|
||||||
* sequence control field.
|
|
||||||
* @return The CCSDS sequence flags.
|
|
||||||
*/
|
|
||||||
uint8_t getSequenceFlags( void );
|
|
||||||
/**
|
|
||||||
* Returns the packet sequence count, which are the lowest 14 bit of the
|
|
||||||
* packet sequence control field.
|
|
||||||
* @return The CCSDS sequence count.
|
|
||||||
*/
|
|
||||||
uint16_t getPacketSequenceCount( void ) const;
|
|
||||||
/**
|
|
||||||
* Sets the packet sequence count, which are the lowest 14 bit of the
|
|
||||||
* packet sequence control field.
|
|
||||||
* setCount is modulo-divided by \c LIMIT_SEQUENCE_COUNT to avoid overflows.
|
|
||||||
* @param setCount The value to set the count to.
|
|
||||||
*/
|
|
||||||
void setPacketSequenceCount( uint16_t setCount );
|
|
||||||
/**
|
|
||||||
* Returns the packet data length, which is the fifth and sixth byte of the
|
|
||||||
* CCSDS Primary Header. The packet data length is the size of every kind
|
|
||||||
* of data \b after the CCSDS Primary Header \b -1.
|
|
||||||
* @return
|
|
||||||
* The CCSDS packet data length. uint16_t is sufficient,
|
|
||||||
* because this is limit in CCSDS standard
|
|
||||||
*/
|
|
||||||
uint16_t getPacketDataLength(void) const;
|
|
||||||
/**
|
|
||||||
* Sets the packet data length, which is the fifth and sixth byte of the
|
|
||||||
* CCSDS Primary Header.
|
|
||||||
* @param setLength The value of the length to set. It must fit the true
|
|
||||||
* CCSDS packet data length . The packet data length is
|
|
||||||
* the size of every kind of data \b after the CCSDS
|
|
||||||
* Primary Header \b -1.
|
|
||||||
*/
|
|
||||||
void setPacketDataLength( uint16_t setLength );
|
|
||||||
|
|
||||||
//Helper methods:
|
ReturnValue_t initSpacePacketHeader(bool isTelecommand, bool hasSecondaryHeader,
|
||||||
/**
|
uint16_t apid, uint16_t sequenceCount = 0);
|
||||||
* This method returns a raw uint8_t pointer to the packet.
|
/**
|
||||||
* @return A \c uint8_t pointer to the first byte of the CCSDS primary header.
|
* The CCSDS header provides a secondary header flag (the fifth-highest bit),
|
||||||
*/
|
* which is checked with this method.
|
||||||
virtual uint8_t* getWholeData( void );
|
* @return Returns true if the bit is set and false if not.
|
||||||
|
*/
|
||||||
|
bool hasSecondaryHeader( void );
|
||||||
|
/**
|
||||||
|
* Returns the complete first two bytes of the packet, which together form
|
||||||
|
* the CCSDS packet id.
|
||||||
|
* @return The CCSDS packet id.
|
||||||
|
*/
|
||||||
|
uint16_t getPacketId( void );
|
||||||
|
/**
|
||||||
|
* Returns the APID of a packet, which are the lowest 11 bit of the packet
|
||||||
|
* id.
|
||||||
|
* @return The CCSDS APID.
|
||||||
|
*/
|
||||||
|
uint16_t getAPID( void ) const;
|
||||||
|
/**
|
||||||
|
* Sets the APID of a packet, which are the lowest 11 bit of the packet
|
||||||
|
* id.
|
||||||
|
* @param The APID to set. The highest five bits of the parameter are
|
||||||
|
* ignored.
|
||||||
|
*/
|
||||||
|
void setAPID( uint16_t setAPID );
|
||||||
|
|
||||||
uint8_t* getPacketData();
|
/**
|
||||||
/**
|
* Sets the sequence flags of a packet, which are bit 17 and 18 in the space packet header.
|
||||||
* With this method, the packet data pointer can be redirected to another
|
* @param The sequence flags to set
|
||||||
* location.
|
*/
|
||||||
* @param p_Data A pointer to another raw Space Packet.
|
void setSequenceFlags( uint8_t sequenceflags );
|
||||||
*/
|
|
||||||
virtual void setData( const uint8_t* p_Data );
|
|
||||||
/**
|
|
||||||
* This method returns the full raw packet size.
|
|
||||||
* @return The full size of the packet in bytes.
|
|
||||||
*/
|
|
||||||
size_t getFullSize();
|
|
||||||
|
|
||||||
uint32_t getApidAndSequenceCount() const;
|
/**
|
||||||
|
* Returns the CCSDS packet sequence control field, which are the third and
|
||||||
|
* the fourth byte of the CCSDS primary header.
|
||||||
|
* @return The CCSDS packet sequence control field.
|
||||||
|
*/
|
||||||
|
uint16_t getPacketSequenceControl( void );
|
||||||
|
/**
|
||||||
|
* Returns the SequenceFlags, which are the highest two bit of the packet
|
||||||
|
* sequence control field.
|
||||||
|
* @return The CCSDS sequence flags.
|
||||||
|
*/
|
||||||
|
uint8_t getSequenceFlags( void );
|
||||||
|
/**
|
||||||
|
* Returns the packet sequence count, which are the lowest 14 bit of the
|
||||||
|
* packet sequence control field.
|
||||||
|
* @return The CCSDS sequence count.
|
||||||
|
*/
|
||||||
|
uint16_t getPacketSequenceCount( void ) const;
|
||||||
|
/**
|
||||||
|
* Sets the packet sequence count, which are the lowest 14 bit of the
|
||||||
|
* packet sequence control field.
|
||||||
|
* setCount is modulo-divided by \c LIMIT_SEQUENCE_COUNT to avoid overflows.
|
||||||
|
* @param setCount The value to set the count to.
|
||||||
|
*/
|
||||||
|
void setPacketSequenceCount( uint16_t setCount );
|
||||||
|
/**
|
||||||
|
* Returns the packet data length, which is the fifth and sixth byte of the
|
||||||
|
* CCSDS Primary Header. The packet data length is the size of every kind
|
||||||
|
* of data \b after the CCSDS Primary Header \b -1.
|
||||||
|
* @return
|
||||||
|
* The CCSDS packet data length. uint16_t is sufficient,
|
||||||
|
* because this is limit in CCSDS standard
|
||||||
|
*/
|
||||||
|
uint16_t getPacketDataLength(void) const;
|
||||||
|
/**
|
||||||
|
* Sets the packet data length, which is the fifth and sixth byte of the
|
||||||
|
* CCSDS Primary Header.
|
||||||
|
* @param setLength The value of the length to set. It must fit the true
|
||||||
|
* CCSDS packet data length . The packet data length is
|
||||||
|
* the size of every kind of data \b after the CCSDS
|
||||||
|
* Primary Header \b -1.
|
||||||
|
*/
|
||||||
|
void setPacketDataLength( uint16_t setLength );
|
||||||
|
|
||||||
|
// Helper methods
|
||||||
|
/**
|
||||||
|
* This method returns a raw uint8_t pointer to the packet.
|
||||||
|
* @return A \c uint8_t pointer to the first byte of the CCSDS primary header.
|
||||||
|
*/
|
||||||
|
virtual uint8_t* getWholeData( void );
|
||||||
|
|
||||||
|
uint8_t* getPacketData();
|
||||||
|
/**
|
||||||
|
* With this method, the packet data pointer can be redirected to another
|
||||||
|
* location.
|
||||||
|
* @param p_Data A pointer to another raw Space Packet.
|
||||||
|
*/
|
||||||
|
virtual void setData( const uint8_t* p_Data );
|
||||||
|
/**
|
||||||
|
* This method returns the full raw packet size.
|
||||||
|
* @return The full size of the packet in bytes.
|
||||||
|
*/
|
||||||
|
size_t getFullSize();
|
||||||
|
|
||||||
|
uint32_t getApidAndSequenceCount() const;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
16
src/fsfw/tmtcpacket/pus/definitions.h
Normal file
16
src/fsfw/tmtcpacket/pus/definitions.h
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#ifndef FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_
|
||||||
|
#define FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
namespace pus {
|
||||||
|
|
||||||
|
//! Version numbers according to ECSS-E-ST-70-41C p.439
|
||||||
|
enum PusVersion: uint8_t {
|
||||||
|
PUS_A_VERSION = 1,
|
||||||
|
PUS_C_VERSION = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_ */
|
@@ -1,4 +1,4 @@
|
|||||||
#include "fsfw/tmtcpacket/pus/tc/TcPacketPus.h"
|
#include "TcPacketPus.h"
|
||||||
#include "fsfw/globalfunctions/CRC.h"
|
#include "fsfw/globalfunctions/CRC.h"
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
@@ -8,14 +8,13 @@ TcPacketPus::TcPacketPus(const uint8_t *setData): TcPacketBase(setData) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void TcPacketPus::initializeTcPacket(uint16_t apid, uint16_t sequenceCount,
|
void TcPacketPus::initializeTcPacket(uint16_t apid, uint16_t sequenceCount,
|
||||||
uint8_t ack, uint8_t service, uint8_t subservice, uint16_t sourceId) {
|
uint8_t ack, uint8_t service, uint8_t subservice, pus::PusVersion pusVersion,
|
||||||
|
uint16_t sourceId) {
|
||||||
initSpacePacketHeader(true, true, apid, sequenceCount);
|
initSpacePacketHeader(true, true, apid, sequenceCount);
|
||||||
std::memset(&tcData->dataField, 0, sizeof(tcData->dataField));
|
std::memset(&tcData->dataField, 0, sizeof(tcData->dataField));
|
||||||
setPacketDataLength(sizeof(PUSTcDataFieldHeader) + CRC_SIZE - 1);
|
setPacketDataLength(sizeof(PUSTcDataFieldHeader) + CRC_SIZE - 1);
|
||||||
// Data Field Header:
|
// Data Field Header. For PUS A, the first bit (CCSDS Secondary Header Flag) is zero
|
||||||
// Set CCSDS_secondary_header_flag to 0 and version number to 001
|
tcData->dataField.versionTypeAck = pusVersion << 4 | (ack & 0x0F);
|
||||||
tcData->dataField.versionTypeAck = 0b00010000;
|
|
||||||
tcData->dataField.versionTypeAck |= (ack & 0x0F);
|
|
||||||
tcData->dataField.serviceType = service;
|
tcData->dataField.serviceType = service;
|
||||||
tcData->dataField.serviceSubtype = subservice;
|
tcData->dataField.serviceSubtype = subservice;
|
||||||
#if FSFW_USE_PUS_C_TELECOMMANDS == 1
|
#if FSFW_USE_PUS_C_TELECOMMANDS == 1
|
||||||
|
@@ -2,6 +2,7 @@
|
|||||||
#define FSFW_TMTCPACKET_PUS_TCPACKETPUSA_H_
|
#define FSFW_TMTCPACKET_PUS_TCPACKETPUSA_H_
|
||||||
|
|
||||||
#include "fsfw/FSFW.h"
|
#include "fsfw/FSFW.h"
|
||||||
|
#include "../definitions.h"
|
||||||
#include "fsfw/tmtcpacket/ccsds_header.h"
|
#include "fsfw/tmtcpacket/ccsds_header.h"
|
||||||
#include "TcPacketBase.h"
|
#include "TcPacketBase.h"
|
||||||
|
|
||||||
@@ -75,7 +76,8 @@ protected:
|
|||||||
* @param subservice PUS Subservice
|
* @param subservice PUS Subservice
|
||||||
*/
|
*/
|
||||||
void initializeTcPacket(uint16_t apid, uint16_t sequenceCount, uint8_t ack,
|
void initializeTcPacket(uint16_t apid, uint16_t sequenceCount, uint8_t ack,
|
||||||
uint8_t service, uint8_t subservice, uint16_t sourceId = 0);
|
uint8_t service, uint8_t subservice, pus::PusVersion pusVersion,
|
||||||
|
uint16_t sourceId = 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A pointer to a structure which defines the data structure of
|
* A pointer to a structure which defines the data structure of
|
||||||
|
@@ -23,7 +23,12 @@ TcPacketStoredPus::TcPacketStoredPus(uint16_t apid, uint8_t service,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this->setData(pData);
|
this->setData(pData);
|
||||||
initializeTcPacket(apid, sequenceCount, ack, service, subservice);
|
#if FSFW_USE_PUS_C_TELECOMMANDS == 1
|
||||||
|
pus::PusVersion pusVersion = pus::PusVersion::PUS_C_VERSION;
|
||||||
|
#else
|
||||||
|
pus::PusVersion pusVersion = pus::PusVersion::PUS_A_VERSION;
|
||||||
|
#endif
|
||||||
|
initializeTcPacket(apid, sequenceCount, ack, service, subservice, pusVersion);
|
||||||
std::memcpy(&tcData->appData, data, size);
|
std::memcpy(&tcData->appData, data, size);
|
||||||
this->setPacketDataLength(
|
this->setPacketDataLength(
|
||||||
size + sizeof(PUSTcDataFieldHeader) + CRC_SIZE - 1);
|
size + sizeof(PUSTcDataFieldHeader) + CRC_SIZE - 1);
|
||||||
|
@@ -31,8 +31,6 @@ public:
|
|||||||
//! Maximum size of a TM Packet in this mission.
|
//! Maximum size of a TM Packet in this mission.
|
||||||
//! TODO: Make this dependant on a config variable.
|
//! TODO: Make this dependant on a config variable.
|
||||||
static const uint32_t MISSION_TM_PACKET_MAX_SIZE = 2048;
|
static const uint32_t MISSION_TM_PACKET_MAX_SIZE = 2048;
|
||||||
//! First four bits of first byte of secondary header
|
|
||||||
static const uint8_t VERSION_NUMBER_BYTE = 0b00010000;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the default constructor.
|
* This is the default constructor.
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
#include "fsfw/tmtcpacket/pus/tm/TmPacketPusA.h"
|
#include "../definitions.h"
|
||||||
#include "fsfw/tmtcpacket/pus/tm/TmPacketBase.h"
|
#include "TmPacketPusA.h"
|
||||||
|
#include "TmPacketBase.h"
|
||||||
|
|
||||||
#include "fsfw/globalfunctions/CRC.h"
|
#include "fsfw/globalfunctions/CRC.h"
|
||||||
#include "fsfw/globalfunctions/arrayprinter.h"
|
#include "fsfw/globalfunctions/arrayprinter.h"
|
||||||
@@ -62,12 +63,7 @@ void TmPacketPusA::initializeTmPacket(uint16_t apid, uint8_t service,
|
|||||||
//First, set to zero.
|
//First, set to zero.
|
||||||
memset(&tmData->data_field, 0, sizeof(tmData->data_field));
|
memset(&tmData->data_field, 0, sizeof(tmData->data_field));
|
||||||
|
|
||||||
// NOTE: In PUS-C, the PUS Version is 2 and specified for the first 4 bits.
|
tmData->data_field.version_type_ack = pus::PusVersion::PUS_A_VERSION << 4;
|
||||||
// The other 4 bits of the first byte are the spacecraft time reference
|
|
||||||
// status. To change to PUS-C, set 0b00100000.
|
|
||||||
// Set CCSDS_secondary header flag to 0, version number to 001 and ack
|
|
||||||
// to 0000
|
|
||||||
tmData->data_field.version_type_ack = 0b00010000;
|
|
||||||
tmData->data_field.service_type = service;
|
tmData->data_field.service_type = service;
|
||||||
tmData->data_field.service_subtype = subservice;
|
tmData->data_field.service_subtype = subservice;
|
||||||
tmData->data_field.subcounter = packetSubcounter;
|
tmData->data_field.subcounter = packetSubcounter;
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
#include "fsfw/tmtcpacket/pus/tm/TmPacketPusC.h"
|
#include "../definitions.h"
|
||||||
#include "fsfw/tmtcpacket/pus/tm/TmPacketBase.h"
|
#include "TmPacketPusC.h"
|
||||||
|
#include "TmPacketBase.h"
|
||||||
|
|
||||||
#include "fsfw/globalfunctions/CRC.h"
|
#include "fsfw/globalfunctions/CRC.h"
|
||||||
#include "fsfw/globalfunctions/arrayprinter.h"
|
#include "fsfw/globalfunctions/arrayprinter.h"
|
||||||
@@ -53,18 +54,22 @@ uint8_t* TmPacketPusC::getPacketTimeRaw() const{
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TmPacketPusC::initializeTmPacket(uint16_t apid, uint8_t service,
|
ReturnValue_t TmPacketPusC::initializeTmPacket(uint16_t apid, uint8_t service,
|
||||||
uint8_t subservice, uint16_t packetSubcounter, uint16_t destinationId,
|
uint8_t subservice, uint16_t packetSubcounter, uint16_t destinationId,
|
||||||
uint8_t timeRefField) {
|
uint8_t timeRefField) {
|
||||||
//Set primary header:
|
//Set primary header:
|
||||||
initSpacePacketHeader(false, true, apid);
|
ReturnValue_t result = initSpacePacketHeader(false, true, apid);
|
||||||
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
//Set data Field Header:
|
//Set data Field Header:
|
||||||
//First, set to zero.
|
//First, set to zero.
|
||||||
memset(&tmData->dataField, 0, sizeof(tmData->dataField));
|
memset(&tmData->dataField, 0, sizeof(tmData->dataField));
|
||||||
|
|
||||||
/* Only account for last 4 bytes for time reference field */
|
/* Only account for last 4 bytes for time reference field */
|
||||||
timeRefField &= 0b1111;
|
timeRefField &= 0b1111;
|
||||||
tmData->dataField.versionTimeReferenceField = VERSION_NUMBER_BYTE | timeRefField;
|
tmData->dataField.versionTimeReferenceField =
|
||||||
|
(pus::PusVersion::PUS_C_VERSION << 4) | timeRefField;
|
||||||
tmData->dataField.serviceType = service;
|
tmData->dataField.serviceType = service;
|
||||||
tmData->dataField.serviceSubtype = subservice;
|
tmData->dataField.serviceSubtype = subservice;
|
||||||
tmData->dataField.subcounterMsb = packetSubcounter << 8 & 0xff;
|
tmData->dataField.subcounterMsb = packetSubcounter << 8 & 0xff;
|
||||||
@@ -76,6 +81,7 @@ void TmPacketPusC::initializeTmPacket(uint16_t apid, uint8_t service,
|
|||||||
timeStamper->addTimeStamp(tmData->dataField.time,
|
timeStamper->addTimeStamp(tmData->dataField.time,
|
||||||
sizeof(tmData->dataField.time));
|
sizeof(tmData->dataField.time));
|
||||||
}
|
}
|
||||||
|
return HasReturnvaluesIF::RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TmPacketPusC::setSourceDataSize(uint16_t size) {
|
void TmPacketPusC::setSourceDataSize(uint16_t size) {
|
||||||
|
@@ -100,7 +100,7 @@ protected:
|
|||||||
* @param subservice PUS Subservice
|
* @param subservice PUS Subservice
|
||||||
* @param packetSubcounter Additional subcounter used.
|
* @param packetSubcounter Additional subcounter used.
|
||||||
*/
|
*/
|
||||||
void initializeTmPacket(uint16_t apid, uint8_t service, uint8_t subservice,
|
ReturnValue_t initializeTmPacket(uint16_t apid, uint8_t service, uint8_t subservice,
|
||||||
uint16_t packetSubcounter, uint16_t destinationId = 0, uint8_t timeRefField = 0);
|
uint16_t packetSubcounter, uint16_t destinationId = 0, uint8_t timeRefField = 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -91,4 +91,34 @@ void TmPacketStoredBase::checkAndReportLostTm() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TmPacketStoredBase::handleStoreFailure(const char *const packetType, ReturnValue_t result,
|
||||||
|
size_t sizeToReserve) {
|
||||||
|
checkAndReportLostTm();
|
||||||
|
#if FSFW_VERBOSE_LEVEL >= 1
|
||||||
|
switch(result) {
|
||||||
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
|
case(StorageManagerIF::DATA_STORAGE_FULL): {
|
||||||
|
sif::warning << "TmPacketStoredPus" << packetType << ": " <<
|
||||||
|
"Store full for packet with size" << sizeToReserve << std::endl;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case(StorageManagerIF::DATA_TOO_LARGE): {
|
||||||
|
sif::warning << "TmPacketStoredPus" << packetType << ": Data with size " <<
|
||||||
|
sizeToReserve << " too large" << std::endl;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
case(StorageManagerIF::DATA_STORAGE_FULL): {
|
||||||
|
sif::printWarning("TmPacketStoredPus%s: Store full for packet with "
|
||||||
|
"size %d\n", packetType, sizeToReserve);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case(StorageManagerIF::DATA_TOO_LARGE): {
|
||||||
|
sif::printWarning("TmPacketStoredPus%s: Data with size "
|
||||||
|
"%d too large\n", packetType, sizeToReserve);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -82,6 +82,9 @@ protected:
|
|||||||
bool checkAndSetStore();
|
bool checkAndSetStore();
|
||||||
|
|
||||||
void checkAndReportLostTm();
|
void checkAndReportLostTm();
|
||||||
|
|
||||||
|
void handleStoreFailure(const char* const packetType, ReturnValue_t result,
|
||||||
|
size_t sizeToReserve);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -5,69 +5,70 @@
|
|||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
TmPacketStoredPusA::TmPacketStoredPusA(store_address_t setAddress) :
|
TmPacketStoredPusA::TmPacketStoredPusA(store_address_t setAddress):
|
||||||
TmPacketStoredBase(setAddress), TmPacketPusA(nullptr){
|
TmPacketStoredBase(setAddress), TmPacketPusA(nullptr){
|
||||||
}
|
}
|
||||||
|
|
||||||
TmPacketStoredPusA::TmPacketStoredPusA(uint16_t apid, uint8_t service,
|
TmPacketStoredPusA::TmPacketStoredPusA(uint16_t apid, uint8_t service,
|
||||||
uint8_t subservice, uint8_t packetSubcounter, const uint8_t *data,
|
uint8_t subservice, uint8_t packetSubcounter, const uint8_t *data,
|
||||||
uint32_t size, const uint8_t *headerData, uint32_t headerSize) :
|
uint32_t size, const uint8_t *headerData, uint32_t headerSize):
|
||||||
TmPacketPusA(nullptr) {
|
TmPacketPusA(nullptr) {
|
||||||
storeAddress.raw = StorageManagerIF::INVALID_ADDRESS;
|
storeAddress.raw = StorageManagerIF::INVALID_ADDRESS;
|
||||||
if (not TmPacketStoredBase::checkAndSetStore()) {
|
if (not TmPacketStoredBase::checkAndSetStore()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
uint8_t *pData = nullptr;
|
uint8_t *pData = nullptr;
|
||||||
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
size_t sizeToReserve = getPacketMinimumSize() + size + headerSize;
|
||||||
(getPacketMinimumSize() + size + headerSize), &pData);
|
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
||||||
|
sizeToReserve, &pData);
|
||||||
|
|
||||||
if (returnValue != store->RETURN_OK) {
|
if (returnValue != store->RETURN_OK) {
|
||||||
TmPacketStoredBase::checkAndReportLostTm();
|
handleStoreFailure("A", returnValue, sizeToReserve);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setData(pData);
|
setData(pData);
|
||||||
initializeTmPacket(apid, service, subservice, packetSubcounter);
|
initializeTmPacket(apid, service, subservice, packetSubcounter);
|
||||||
memcpy(getSourceData(), headerData, headerSize);
|
memcpy(getSourceData(), headerData, headerSize);
|
||||||
memcpy(getSourceData() + headerSize, data, size);
|
memcpy(getSourceData() + headerSize, data, size);
|
||||||
setPacketDataLength(
|
setPacketDataLength(size + headerSize + sizeof(PUSTmDataFieldHeaderPusA) + CRC_SIZE - 1);
|
||||||
size + headerSize + sizeof(PUSTmDataFieldHeaderPusA) + CRC_SIZE - 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TmPacketStoredPusA::TmPacketStoredPusA(uint16_t apid, uint8_t service,
|
TmPacketStoredPusA::TmPacketStoredPusA(uint16_t apid, uint8_t service,
|
||||||
uint8_t subservice, uint8_t packetSubcounter, SerializeIF *content,
|
uint8_t subservice, uint8_t packetSubcounter, SerializeIF *content,
|
||||||
SerializeIF *header) :
|
SerializeIF *header) :
|
||||||
TmPacketPusA(nullptr) {
|
TmPacketPusA(nullptr) {
|
||||||
storeAddress.raw = StorageManagerIF::INVALID_ADDRESS;
|
storeAddress.raw = StorageManagerIF::INVALID_ADDRESS;
|
||||||
if (not TmPacketStoredBase::checkAndSetStore()) {
|
if (not TmPacketStoredBase::checkAndSetStore()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
size_t sourceDataSize = 0;
|
size_t sourceDataSize = 0;
|
||||||
if (content != NULL) {
|
if (content != nullptr) {
|
||||||
sourceDataSize += content->getSerializedSize();
|
sourceDataSize += content->getSerializedSize();
|
||||||
}
|
}
|
||||||
if (header != NULL) {
|
if (header != nullptr) {
|
||||||
sourceDataSize += header->getSerializedSize();
|
sourceDataSize += header->getSerializedSize();
|
||||||
}
|
}
|
||||||
uint8_t *p_data = NULL;
|
uint8_t *pData = nullptr;
|
||||||
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
size_t sizeToReserve = getPacketMinimumSize() + sourceDataSize;
|
||||||
(getPacketMinimumSize() + sourceDataSize), &p_data);
|
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
||||||
if (returnValue != store->RETURN_OK) {
|
sizeToReserve, &pData);
|
||||||
TmPacketStoredBase::checkAndReportLostTm();
|
if (returnValue != store->RETURN_OK) {
|
||||||
}
|
handleStoreFailure("A", returnValue, sizeToReserve);
|
||||||
setData(p_data);
|
return;
|
||||||
initializeTmPacket(apid, service, subservice, packetSubcounter);
|
}
|
||||||
uint8_t *putDataHere = getSourceData();
|
setData(pData);
|
||||||
size_t size = 0;
|
initializeTmPacket(apid, service, subservice, packetSubcounter);
|
||||||
if (header != NULL) {
|
uint8_t *putDataHere = getSourceData();
|
||||||
header->serialize(&putDataHere, &size, sourceDataSize,
|
size_t size = 0;
|
||||||
SerializeIF::Endianness::BIG);
|
if (header != nullptr) {
|
||||||
}
|
header->serialize(&putDataHere, &size, sourceDataSize,
|
||||||
if (content != NULL) {
|
SerializeIF::Endianness::BIG);
|
||||||
content->serialize(&putDataHere, &size, sourceDataSize,
|
}
|
||||||
SerializeIF::Endianness::BIG);
|
if (content != nullptr) {
|
||||||
}
|
content->serialize(&putDataHere, &size, sourceDataSize,
|
||||||
setPacketDataLength(
|
SerializeIF::Endianness::BIG);
|
||||||
sourceDataSize + sizeof(PUSTmDataFieldHeaderPusA) + CRC_SIZE - 1);
|
}
|
||||||
|
setPacketDataLength(sourceDataSize + sizeof(PUSTmDataFieldHeaderPusA) + CRC_SIZE - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t* TmPacketStoredPusA::getAllTmData() {
|
uint8_t* TmPacketStoredPusA::getAllTmData() {
|
||||||
|
@@ -15,46 +15,46 @@
|
|||||||
* packets in a store with the help of a storeAddress.
|
* packets in a store with the help of a storeAddress.
|
||||||
* @ingroup tmtcpackets
|
* @ingroup tmtcpackets
|
||||||
*/
|
*/
|
||||||
class TmPacketStoredPusA :
|
class TmPacketStoredPusA:
|
||||||
public TmPacketStoredBase,
|
public TmPacketStoredBase,
|
||||||
public TmPacketPusA {
|
public TmPacketPusA {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* This is a default constructor which does not set the data pointer.
|
* This is a default constructor which does not set the data pointer.
|
||||||
* However, it does try to set the packet store.
|
* However, it does try to set the packet store.
|
||||||
*/
|
*/
|
||||||
TmPacketStoredPusA( store_address_t setAddress );
|
TmPacketStoredPusA( store_address_t setAddress );
|
||||||
/**
|
/**
|
||||||
* With this constructor, new space is allocated in the packet store and
|
* With this constructor, new space is allocated in the packet store and
|
||||||
* a new PUS Telemetry Packet is created there.
|
* a new PUS Telemetry Packet is created there.
|
||||||
* Packet Application Data passed in data is copied into the packet.
|
* Packet Application Data passed in data is copied into the packet.
|
||||||
* The Application data is passed in two parts, first a header, then a
|
* The Application data is passed in two parts, first a header, then a
|
||||||
* data field. This allows building a Telemetry Packet from two separate
|
* data field. This allows building a Telemetry Packet from two separate
|
||||||
* data sources.
|
* data sources.
|
||||||
* @param apid Sets the packet's APID field.
|
* @param apid Sets the packet's APID field.
|
||||||
* @param service Sets the packet's Service ID field.
|
* @param service Sets the packet's Service ID field.
|
||||||
* This specifies the source service.
|
* This specifies the source service.
|
||||||
* @param subservice Sets the packet's Service Subtype field.
|
* @param subservice Sets the packet's Service Subtype field.
|
||||||
* This specifies the source sub-service.
|
* This specifies the source sub-service.
|
||||||
* @param packet_counter Sets the Packet counter field of this packet
|
* @param packet_counter Sets the Packet counter field of this packet
|
||||||
* @param data The payload data to be copied to the
|
* @param data The payload data to be copied to the
|
||||||
* Application Data Field
|
* Application Data Field
|
||||||
* @param size The amount of data to be copied.
|
* @param size The amount of data to be copied.
|
||||||
* @param headerData The header Data of the Application field,
|
* @param headerData The header Data of the Application field,
|
||||||
* will be copied in front of data
|
* will be copied in front of data
|
||||||
* @param headerSize The size of the headerDataF
|
* @param headerSize The size of the headerDataF
|
||||||
*/
|
*/
|
||||||
TmPacketStoredPusA( uint16_t apid, uint8_t service, uint8_t subservice,
|
TmPacketStoredPusA( uint16_t apid, uint8_t service, uint8_t subservice,
|
||||||
uint8_t packet_counter = 0, const uint8_t* data = nullptr,
|
uint8_t packet_counter = 0, const uint8_t* data = nullptr,
|
||||||
uint32_t size = 0, const uint8_t* headerData = nullptr,
|
uint32_t size = 0, const uint8_t* headerData = nullptr,
|
||||||
uint32_t headerSize = 0);
|
uint32_t headerSize = 0);
|
||||||
/**
|
/**
|
||||||
* Another ctor to directly pass structured content and header data to the
|
* Another ctor to directly pass structured content and header data to the
|
||||||
* packet to avoid additional buffers.
|
* packet to avoid additional buffers.
|
||||||
*/
|
*/
|
||||||
TmPacketStoredPusA( uint16_t apid, uint8_t service, uint8_t subservice,
|
TmPacketStoredPusA( uint16_t apid, uint8_t service, uint8_t subservice,
|
||||||
uint8_t packet_counter, SerializeIF* content,
|
uint8_t packet_counter, SerializeIF* content,
|
||||||
SerializeIF* header = nullptr);
|
SerializeIF* header = nullptr);
|
||||||
|
|
||||||
uint8_t* getAllTmData() override;
|
uint8_t* getAllTmData() override;
|
||||||
void setDataPointer(const uint8_t* newPointer) override;
|
void setDataPointer(const uint8_t* newPointer) override;
|
||||||
|
@@ -19,19 +19,19 @@ TmPacketStoredPusC::TmPacketStoredPusC(uint16_t apid, uint8_t service,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
uint8_t *pData = nullptr;
|
uint8_t *pData = nullptr;
|
||||||
|
size_t sizeToReserve = getPacketMinimumSize() + size + headerSize;
|
||||||
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
||||||
(getPacketMinimumSize() + size + headerSize), &pData);
|
sizeToReserve, &pData);
|
||||||
|
|
||||||
if (returnValue != store->RETURN_OK) {
|
if (returnValue != store->RETURN_OK) {
|
||||||
TmPacketStoredBase::checkAndReportLostTm();
|
handleStoreFailure("C", returnValue, sizeToReserve);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setData(pData);
|
setData(pData);
|
||||||
initializeTmPacket(apid, service, subservice, packetSubcounter, destinationId, timeRefField);
|
initializeTmPacket(apid, service, subservice, packetSubcounter, destinationId, timeRefField);
|
||||||
memcpy(getSourceData(), headerData, headerSize);
|
memcpy(getSourceData(), headerData, headerSize);
|
||||||
memcpy(getSourceData() + headerSize, data, size);
|
memcpy(getSourceData() + headerSize, data, size);
|
||||||
setPacketDataLength(
|
setPacketDataLength(size + headerSize + sizeof(PUSTmDataFieldHeaderPusC) + CRC_SIZE - 1);
|
||||||
size + headerSize + sizeof(PUSTmDataFieldHeaderPusC) + CRC_SIZE - 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TmPacketStoredPusC::TmPacketStoredPusC(uint16_t apid, uint8_t service,
|
TmPacketStoredPusC::TmPacketStoredPusC(uint16_t apid, uint8_t service,
|
||||||
@@ -43,27 +43,28 @@ TmPacketStoredPusC::TmPacketStoredPusC(uint16_t apid, uint8_t service,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
size_t sourceDataSize = 0;
|
size_t sourceDataSize = 0;
|
||||||
if (content != NULL) {
|
if (content != nullptr) {
|
||||||
sourceDataSize += content->getSerializedSize();
|
sourceDataSize += content->getSerializedSize();
|
||||||
}
|
}
|
||||||
if (header != NULL) {
|
if (header != nullptr) {
|
||||||
sourceDataSize += header->getSerializedSize();
|
sourceDataSize += header->getSerializedSize();
|
||||||
}
|
}
|
||||||
uint8_t *p_data = NULL;
|
uint8_t *pData = nullptr;
|
||||||
ReturnValue_t returnValue = store->getFreeElement(&storeAddress,
|
size_t sizeToReserve = getPacketMinimumSize() + sourceDataSize;
|
||||||
(getPacketMinimumSize() + sourceDataSize), &p_data);
|
ReturnValue_t returnValue = store->getFreeElement(&storeAddress, sizeToReserve, &pData);
|
||||||
if (returnValue != store->RETURN_OK) {
|
if (returnValue != store->RETURN_OK) {
|
||||||
TmPacketStoredBase::checkAndReportLostTm();
|
handleStoreFailure("C", returnValue, sizeToReserve);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
setData(p_data);
|
setData(pData);
|
||||||
initializeTmPacket(apid, service, subservice, packetSubcounter, destinationId, timeRefField);
|
initializeTmPacket(apid, service, subservice, packetSubcounter, destinationId, timeRefField);
|
||||||
uint8_t *putDataHere = getSourceData();
|
uint8_t *putDataHere = getSourceData();
|
||||||
size_t size = 0;
|
size_t size = 0;
|
||||||
if (header != NULL) {
|
if (header != nullptr) {
|
||||||
header->serialize(&putDataHere, &size, sourceDataSize,
|
header->serialize(&putDataHere, &size, sourceDataSize,
|
||||||
SerializeIF::Endianness::BIG);
|
SerializeIF::Endianness::BIG);
|
||||||
}
|
}
|
||||||
if (content != NULL) {
|
if (content != nullptr) {
|
||||||
content->serialize(&putDataHere, &size, sourceDataSize,
|
content->serialize(&putDataHere, &size, sourceDataSize,
|
||||||
SerializeIF::Endianness::BIG);
|
SerializeIF::Endianness::BIG);
|
||||||
}
|
}
|
||||||
|
@@ -19,7 +19,7 @@ class TmTcBridge : public AcceptsTelemetryIF,
|
|||||||
public:
|
public:
|
||||||
static constexpr uint8_t TMTC_RECEPTION_QUEUE_DEPTH = 20;
|
static constexpr uint8_t TMTC_RECEPTION_QUEUE_DEPTH = 20;
|
||||||
static constexpr uint8_t LIMIT_STORED_DATA_SENT_PER_CYCLE = 15;
|
static constexpr uint8_t LIMIT_STORED_DATA_SENT_PER_CYCLE = 15;
|
||||||
static constexpr uint8_t LIMIT_DOWNLINK_PACKETS_STORED = 20;
|
static constexpr uint8_t LIMIT_DOWNLINK_PACKETS_STORED = 200;
|
||||||
|
|
||||||
static constexpr uint8_t DEFAULT_STORED_DATA_SENT_PER_CYCLE = 5;
|
static constexpr uint8_t DEFAULT_STORED_DATA_SENT_PER_CYCLE = 5;
|
||||||
static constexpr uint8_t DEFAULT_DOWNLINK_PACKETS_STORED = 10;
|
static constexpr uint8_t DEFAULT_DOWNLINK_PACKETS_STORED = 10;
|
||||||
|
@@ -18,4 +18,5 @@ add_subdirectory(serialize)
|
|||||||
add_subdirectory(datapoollocal)
|
add_subdirectory(datapoollocal)
|
||||||
add_subdirectory(storagemanager)
|
add_subdirectory(storagemanager)
|
||||||
add_subdirectory(globalfunctions)
|
add_subdirectory(globalfunctions)
|
||||||
|
add_subdirectory(timemanager)
|
||||||
add_subdirectory(tmtcpacket)
|
add_subdirectory(tmtcpacket)
|
||||||
|
@@ -103,7 +103,7 @@ TEST_CASE("DleEncoder" , "[DleEncoder]") {
|
|||||||
for(size_t faultyDestSize = 0; faultyDestSize < expectedVec.size(); faultyDestSize ++) {
|
for(size_t faultyDestSize = 0; faultyDestSize < expectedVec.size(); faultyDestSize ++) {
|
||||||
result = dleEncoder.encode(vecToEncode.data(), vecToEncode.size(),
|
result = dleEncoder.encode(vecToEncode.data(), vecToEncode.size(),
|
||||||
buffer.data(), faultyDestSize, &encodedLen);
|
buffer.data(), faultyDestSize, &encodedLen);
|
||||||
REQUIRE(result == DleEncoder::STREAM_TOO_SHORT);
|
REQUIRE(result == static_cast<int>(DleEncoder::STREAM_TOO_SHORT));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -218,5 +218,10 @@ TEST_CASE("DleEncoder" , "[DleEncoder]") {
|
|||||||
REQUIRE(result == static_cast<int>(DleEncoder::DECODING_ERROR));
|
REQUIRE(result == static_cast<int>(DleEncoder::DECODING_ERROR));
|
||||||
|
|
||||||
dleEncoder.setEscapeMode(true);
|
dleEncoder.setEscapeMode(true);
|
||||||
|
testArray1EncodedFaulty = TEST_ARRAY_1_ENCODED_ESCAPED;
|
||||||
|
testArray1EncodedFaulty[5] = 0;
|
||||||
|
result = dleEncoder.decode(testArray1EncodedFaulty.data(), testArray1EncodedFaulty.size(),
|
||||||
|
&readLen, buffer.data(), buffer.size(), &encodedLen);
|
||||||
|
REQUIRE(result == static_cast<int>(DleEncoder::DECODING_ERROR));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3
tests/src/fsfw_tests/unit/timemanager/CMakeLists.txt
Normal file
3
tests/src/fsfw_tests/unit/timemanager/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
target_sources(${TARGET_NAME} PRIVATE
|
||||||
|
TestCountdown.cpp
|
||||||
|
)
|
27
tests/src/fsfw_tests/unit/timemanager/TestCountdown.cpp
Normal file
27
tests/src/fsfw_tests/unit/timemanager/TestCountdown.cpp
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#include "fsfw_tests/unit/CatchDefinitions.h"
|
||||||
|
#include <fsfw/timemanager/Countdown.h>
|
||||||
|
#include <catch2/catch_test_macros.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
TEST_CASE( "Countdown Tests", "[TestCountdown]") {
|
||||||
|
INFO("Countdown Tests");
|
||||||
|
Countdown count(20);
|
||||||
|
REQUIRE(count.timeout == 20);
|
||||||
|
REQUIRE(count.setTimeout(100) == static_cast<uint16_t>(HasReturnvaluesIF::RETURN_OK));
|
||||||
|
REQUIRE(count.timeout == 100);
|
||||||
|
REQUIRE(count.setTimeout(150) == static_cast<uint16_t>(HasReturnvaluesIF::RETURN_OK));
|
||||||
|
REQUIRE(count.isBusy());
|
||||||
|
REQUIRE(not count.hasTimedOut());
|
||||||
|
uint32_t number = count.getRemainingMillis();
|
||||||
|
REQUIRE(number > 0);
|
||||||
|
bool blocked = false;
|
||||||
|
while(not count.hasTimedOut()){
|
||||||
|
blocked = true;
|
||||||
|
};
|
||||||
|
REQUIRE(blocked);
|
||||||
|
number = count.getRemainingMillis();
|
||||||
|
REQUIRE(number==0);
|
||||||
|
count.resetTimer();
|
||||||
|
REQUIRE(not count.hasTimedOut());
|
||||||
|
REQUIRE(count.isBusy());
|
||||||
|
}
|
Reference in New Issue
Block a user