2020-12-14 08:42:48 +01:00
|
|
|
#include "CspComIF.h"
|
2020-12-29 13:59:31 +01:00
|
|
|
#include "cookies/CspCookie.h"
|
|
|
|
|
2020-12-14 08:42:48 +01:00
|
|
|
#include <fsfw/serviceinterface/ServiceInterfaceStream.h>
|
|
|
|
#include <csp/drivers/can_socketcan.h>
|
|
|
|
#include <fsfw/serialize/SerializeAdapter.h>
|
|
|
|
|
|
|
|
CspComIF::CspComIF(object_id_t objectId) :
|
|
|
|
SystemObject(objectId) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
CspComIF::~CspComIF() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::initializeInterface(CookieIF *cookie) {
|
|
|
|
if(cookie == nullptr) {
|
|
|
|
return NULLPOINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
CspCookie* cspCookie = dynamic_cast<CspCookie*>(cookie);
|
|
|
|
if(cspCookie == nullptr) {
|
|
|
|
return NULLPOINTER;
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:35:03 +01:00
|
|
|
/* Perform CAN and CSP initialization only once */
|
|
|
|
if(cspDeviceMap.empty()){
|
|
|
|
/* Define the memory to allocate for the CSP stack */
|
|
|
|
int buf_count = 10;
|
|
|
|
int buf_size = 300;
|
|
|
|
/* Init CSP and CSP buffer system */
|
|
|
|
if (csp_init(cspClientAddress) != CSP_ERR_NONE
|
|
|
|
|| csp_buffer_init(buf_count, buf_size) != CSP_ERR_NONE) {
|
|
|
|
sif::error << "Failed to init CSP\r\n" << std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
int promisc = 0; // Set filter mode on
|
|
|
|
csp_iface_t *csp_if_ptr = &csp_if;
|
|
|
|
csp_if_ptr = csp_can_socketcan_init(canInterface, bitrate, promisc);
|
|
|
|
|
|
|
|
/* Set default route and start router */
|
|
|
|
uint8_t address = CSP_DEFAULT_ROUTE;
|
|
|
|
uint8_t netmask = 0;
|
|
|
|
uint8_t mac = CSP_NODE_MAC;
|
|
|
|
int result = csp_rtable_set(address, netmask, csp_if_ptr, mac);
|
|
|
|
if(result != CSP_ERR_NONE){
|
|
|
|
sif::error << "Failed to add can interface to router table"
|
|
|
|
<< std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
2020-12-14 08:42:48 +01:00
|
|
|
|
2020-12-20 17:35:03 +01:00
|
|
|
/* Start the route task */
|
|
|
|
unsigned int task_stack_size = 500;
|
|
|
|
unsigned int priority = 0;
|
|
|
|
result = csp_route_start_task(task_stack_size, priority);
|
|
|
|
if(result != CSP_ERR_NONE){
|
|
|
|
sif::error << "Failed to start csp route task" << std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
2020-12-14 08:42:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t cspAddress = cspCookie->getCspAddress();
|
|
|
|
uint16_t maxReplyLength = cspCookie->getMaxReplyLength();
|
2020-12-14 09:46:59 +01:00
|
|
|
if(cspDeviceMap.find(cspAddress) == cspDeviceMap.end()){
|
2020-12-14 08:42:48 +01:00
|
|
|
/* Insert device information in CSP map */
|
|
|
|
cspDeviceMap.emplace(cspAddress, vectorBuffer(maxReplyLength));
|
|
|
|
}
|
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::sendMessage(CookieIF *cookie,
|
|
|
|
const uint8_t * sendData, size_t sendLen) {
|
|
|
|
int result;
|
|
|
|
if(cookie == NULL){
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
CspCookie* cspCookie = dynamic_cast<CspCookie*> (cookie);
|
|
|
|
if(cspCookie == NULL){
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract csp port and bytes to query from command buffer */
|
|
|
|
uint8_t cspPort;
|
|
|
|
uint16_t querySize;
|
2020-12-20 13:31:44 +01:00
|
|
|
result = getPortAndQuerySize(&sendData, &sendLen, &cspPort, &querySize);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
2020-12-14 08:42:48 +01:00
|
|
|
uint8_t cspAddress = cspCookie->getCspAddress();
|
2020-12-17 13:26:00 +01:00
|
|
|
switch(cspPort) {
|
|
|
|
case(Ports::CSP_PING): {
|
2020-12-20 13:31:44 +01:00
|
|
|
initiatePingRequest(cspAddress, querySize);
|
2020-12-17 13:26:00 +01:00
|
|
|
break;
|
2020-12-14 08:42:48 +01:00
|
|
|
}
|
2020-12-17 13:26:00 +01:00
|
|
|
case(Ports::CSP_REBOOT): {
|
|
|
|
csp_reboot(cspAddress);
|
|
|
|
break;
|
2020-12-14 08:42:48 +01:00
|
|
|
}
|
2020-12-17 13:26:00 +01:00
|
|
|
case(Ports::P60_PORT_GNDWDT_RESET):
|
|
|
|
case(Ports::P60_PORT_RPARAM): {
|
2020-12-14 08:42:48 +01:00
|
|
|
/* No CSP fixed port was selected. Send data to the specified port and
|
|
|
|
* wait for querySize number of bytes */
|
|
|
|
result = cspTransfer(cspAddress, cspPort, sendData, sendLen,
|
|
|
|
querySize);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
2020-12-17 13:26:00 +01:00
|
|
|
replySize = querySize;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
sif::error << "CspComIF: Invalid port specified" << std::endl;
|
|
|
|
break;
|
2020-12-14 08:42:48 +01:00
|
|
|
}
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::getSendSuccess(CookieIF *cookie) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::requestReceiveMessage(CookieIF *cookie,
|
|
|
|
size_t requestLen) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::readReceivedMessage(CookieIF *cookie,
|
|
|
|
uint8_t** buffer, size_t* size) {
|
|
|
|
if(cookie == NULL){
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
CspCookie* cspCookie = dynamic_cast<CspCookie*> (cookie);
|
|
|
|
if(cspCookie == NULL){
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t cspAddress = cspCookie->getCspAddress();
|
|
|
|
|
|
|
|
*buffer = cspDeviceMap[cspAddress].data();
|
2020-12-17 13:26:00 +01:00
|
|
|
*size = replySize;
|
2020-12-14 08:42:48 +01:00
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t CspComIF::cspTransfer(uint8_t cspAddress, uint8_t cspPort,
|
|
|
|
const uint8_t* cmdBuffer, int cmdBufferLen, uint16_t querySize) {
|
|
|
|
|
2020-12-20 13:31:44 +01:00
|
|
|
uint32_t timeout_ms = 500;
|
2020-12-14 09:46:59 +01:00
|
|
|
vectorBufferIter iter = cspDeviceMap.find(cspAddress);
|
|
|
|
if(iter == cspDeviceMap.end()){
|
|
|
|
sif::error << "CSP device with address " << cspAddress << " no found in"
|
|
|
|
<< " device map" << std::endl;
|
|
|
|
}
|
|
|
|
uint8_t* replyBuffer = iter->second.data();
|
2020-12-14 08:42:48 +01:00
|
|
|
uint8_t tmpCmdBuffer[cmdBufferLen];
|
|
|
|
memcpy(tmpCmdBuffer, cmdBuffer, cmdBufferLen);
|
|
|
|
|
|
|
|
csp_conn_t * conn = csp_connect(CSP_PRIO_HIGH, cspAddress, cspPort, 0,
|
|
|
|
CSP_O_NONE);
|
|
|
|
|
2020-12-16 10:56:32 +01:00
|
|
|
int result = csp_transaction_persistent(conn, timeout_ms,
|
2020-12-14 08:42:48 +01:00
|
|
|
tmpCmdBuffer, cmdBufferLen, replyBuffer, querySize);
|
2020-12-16 10:56:32 +01:00
|
|
|
if(querySize != 0){
|
|
|
|
if(result != querySize){
|
|
|
|
sif::error << "CSP transfer failed to receive all requested bytes "
|
|
|
|
<< std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(result != 1){
|
|
|
|
sif::error << "CSP transfer failed" << std::endl;
|
2020-12-16 15:17:10 +01:00
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
2020-12-16 10:56:32 +01:00
|
|
|
}
|
2020-12-14 08:42:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
csp_close(conn);
|
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
2020-12-20 13:31:44 +01:00
|
|
|
|
|
|
|
ReturnValue_t CspComIF::getPortAndQuerySize(const uint8_t** sendData,
|
|
|
|
size_t* sendLen, uint8_t* cspPort, uint16_t* querySize) {
|
|
|
|
ReturnValue_t result = SerializeAdapter::deSerialize(cspPort, sendData,
|
|
|
|
sendLen, SerializeIF::Endianness::BIG);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
|
|
sif::error << "CspComIF: Failed to deserialize CSP port from command "
|
|
|
|
<< "buffer" << std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
SerializeAdapter::deSerialize(querySize, sendData, sendLen,
|
|
|
|
SerializeIF::Endianness::BIG);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
|
|
sif::error << "CspComIF: Failed to deserialize querySize from command "
|
|
|
|
<< "buffer" << std::endl;
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CspComIF::initiatePingRequest(uint8_t cspAddress, uint16_t querySize){
|
|
|
|
uint32_t timeout_ms = 500;
|
|
|
|
uint32_t replyTime = csp_ping(cspAddress, timeout_ms, querySize,
|
|
|
|
CSP_O_NONE);
|
|
|
|
sif::info << "Ping address: " << cspAddress << ", reply after "
|
|
|
|
<< replyTime << " ms" << std::endl;
|
|
|
|
/* Store reply time in reply buffer * */
|
|
|
|
uint8_t* replyBuffer = cspDeviceMap[cspAddress].data();
|
|
|
|
memcpy(replyBuffer, &replyTime, sizeof(replyTime));
|
|
|
|
replySize = sizeof(replyTime);
|
|
|
|
}
|