No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.0
License Proprietary
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/leggedrobotics/tcan.git
VCS Type git
VCS Version master
Last Updated 2023-05-04
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

J1939 CAN devices

Additional Links

No additional links.

Maintainers

  • Simon Kerscher

Authors

No additional authors.

tcan_can_j1919

Package structure

This package contains

  • classes to hlep with decoding J1939 messages
  • messages, deriving from J1939PgnParser, as defined in the J1939 Digital Annex (RSL members can search on GDrive for J1939DA_201907.xls to find a copy, otherwise obtain a copy from https://www.sae.org/standards/content/j1939da_201907/)
  • devices combining multiple messages, as they were purchased. These should be used in your code and can be added to tcan_can::CanManagers

Messages

Messages inherit from J1939PgnParser, and provide a minimal implementation, as defined in the J1939 Digital Annex.

To get a copy,

  • RSL members can search for J1939DA_201907.xls on GDrive
  • the standard can be purchased at https://www.sae.org/standards/content/j1939da_201907/

Messages should return their values in the unit defined in the standard. Units should be documented near the variable.

Devices

Devices inherit from DeviceJ1939, and can be included in your tcan_can::Canmanager. They provide a collection of messages, as they are available on a device that was purchased.

Getters on devices should preferably return in SI units, unless you have a strong reason to prefer something else. Getters should provide documentation on the units used.

Example classes for developers

If you add your messages, follow these guidelines

include/tcan_can:j1939/messages/ExampleMsg.hpp

// Find the following information in the digital annex, and adapt code accordingly
// MsgName
// PGN
// resolution & offset for each field
// offset

#pragma once

#include "tcan_can_j1939/J1939PgnParser.hpp"

namespace tcan_can_j1939 {
namespace messages {
struct ExampleMsg : public J1939PgnParser {
    ExampleMsg : J1939PgnParser(PGN) {}

    bool parse(const tcan_can::CanMsg& msg) {       
        field0_ = scaledMessageFromRaw(msg.readuint16(0), resolution, offset);      // Adapt according to message definition
        // Provide other fields as necessary
        return true;
    }

    double field0_{}; // some crazy unit, as specified in the Digital Annex
};
}  // namespace messages
}  // namespace tcan_can_j1939

include/tcan_can_j1939/unit_conversions.hpp

// ... other conversions

inline double normalFromCrazy(double crazy) {
    return crazy * x + y;
}

// ...other conversions

include/tcan_can_j1939/devices/ExampleDevice.hpp

#pragma once

#include "tcan_can_j1939/DeviceJ1939.hpp"
#include "tcan_can/unit_conversions.hpp"        // if needed
#include "tcan_can_j1939/messages/ExampleMsg.hpp"
#include "tcan_can_j1939/messages/OtherMessage.hpp"

namespace tcan_can_j1939 {
namespace devices {

class ExampleDevice : public DeviceJ1939 {
   public:
    template <typename... Args>
    Imu(Args&&... args) : DeviceJ1939(std::forward<Args>(args)...) {
        addParser(exampleMsg_);
        addParser(otherMsg_);

    }
    ~Imu() override = default;

    double getField0() const { return normalFromCrazy(exampleMsg_.field0_); } // normal unit
    // Add other msgs as required

   private:
    messages::ExampleMsg exampleMsg_;
    messages::OtherMsg otherMsg_;

};

}  // namespace devices
}  // namespace tcan_can_j1939

src/Devices.cpp

// Includes to other devices
#include "tcan_can_j1939/devices/ExampleDevice.hpp"
// Includes to other devices

// Leave empty, this file only exists to check for errors in the device and message definitions during compilation of this package

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

Name
gtest

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged tcan_can_j1939 at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.