From bcb9bf1be8a854f9a9a5b2025ed9ee03b084ea44 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 8 Mar 2017 23:48:34 +0100 Subject: Change all old struct name to the new class. Change-Id: I8aa4430117c401182ef458a06a2aeb08957db1bb Signed-off-by: Romain Forlot --- src/can/can-message.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/can/can-message.hpp') diff --git a/src/can/can-message.hpp b/src/can/can-message.hpp index fc85ed9..0e46cc8 100644 --- a/src/can/can-message.hpp +++ b/src/can/can-message.hpp @@ -87,8 +87,8 @@ class can_message_definition_t uint32_t id_; /*!< id_ - The ID of the message.*/ can_message_format format_; /*!< format_ - the format of the message's ID.*/ FrequencyClock clock_; /*!< clock_ - an optional frequency clock to control the output of this - * message, if sent raw, or simply to mark the max frequency for custom - * handlers to retrieve.*/ + * message, if sent raw, or simply to mark the max frequency for custom + * handlers to retrieve.*/ bool force_send_changed_; /*!< force_send_changed_ - If true, regardless of the frequency, it will send CAN * message if it has changed when using raw passthrough.*/ std::vector last_value_; /*!< last_value_ - The last received value of the message. Defaults to undefined. @@ -125,7 +125,7 @@ class can_message_set_t * * Returns a pointer to an array of all configurations. */ -CanMessageSet* getMessageSets(); +can_message_set_t* getMessageSets(); /** Public: Return the length of the array returned by getMessageSets() */ int getMessageSetCount(); @@ -133,7 +133,7 @@ int getMessageSetCount(); /* Public: Return an array of all CAN messages to be processed in the active * configuration. */ -CanMessageDefinition* getMessages(); +can_message_definition_t* getMessages(); /* Public: Return the length of the array returned by getMessages(). */ int getMessageCount(); \ No newline at end of file -- cgit 1.2.3-korg