Skip to content

Communication Infrastructure#82

Open
mcgaryp wants to merge 13 commits into
mainfrom
can
Open

Communication Infrastructure#82
mcgaryp wants to merge 13 commits into
mainfrom
can

Conversation

@mcgaryp

@mcgaryp mcgaryp commented Apr 2, 2026

Copy link
Copy Markdown
Contributor

No description provided.

@mcgaryp mcgaryp requested a review from a team as a code owner April 2, 2026 22:17
@Hibyehello

Copy link
Copy Markdown
Contributor

Potentially move the umbrella headers into an include folder

@Hibyehello Hibyehello left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're at a good starting point, but I'll do a more thorough read through

Comment thread include/core/task/controller.h Outdated
/**
* @brief Array to store task identifiers.
*/
T* task_identifiers;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
T* task_identifiers;
T** task_identifiers;

We need it to be an array

Comment thread lib/can/service.h Outdated
/**
* @brief Dispatcher for routing received frames to handlers. This is a reference to the singleton instance of the dispatcher, allowing the service to register handlers or dispatch received frames as needed.
*/
Dispatcher& dispatcher = Dispatcher::get_instance();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Dispatcher& dispatcher = Dispatcher::get_instance();
Dispatcher* dispatcher;

Let's just construct with the dispatcher instance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants