Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Magee <mjmagee991@gmail.com>
  • Loading branch information
ActuallyTaylor and mjmagee991 authored Jan 27, 2024
1 parent 9482bc9 commit 9aa3b5e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/HUDL/HUDL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ class HUDL : public CANDevice {
void process();

/**
* +The internal LCD used for for the HUDL to display.
* The internal LCD used for for the HUDL to display.
*/
DEV::LCD lcd;

private:
/**
* The corner of the display that will content will be displayed in.
* The corner of the display that the content will be displayed in.
*/
enum Corner {
TOP_LEFT,
Expand Down Expand Up @@ -121,7 +121,7 @@ class HUDL : public CANDevice {
int16_t actualPosition = 0;

/**
* A static function that retrieves the column number for a specified corner. This is used
* Retrieves the column number for a specified corner. This is used
* to start drawing at a specific x column when we want to display in one of the corners.
*
* @param corner the corner to retrieve a column number for.
Expand Down Expand Up @@ -155,12 +155,12 @@ class HUDL : public CANDevice {
void dataForCorner(Corner corner, const char* text);

/**
* The size of the CAN object dictionary.
* The size of the CANopen object dictionary.
*/
static constexpr uint16_t OBJECT_DICTIONARY_SIZE = 46;

/**
* The CAN object dictionary.
* The CANopen object dictionary.
*/
CO_OBJ_T objectDictionary[OBJECT_DICTIONARY_SIZE + 1] = {
MANDATORY_IDENTIFICATION_ENTRIES_1000_1014,
Expand Down

0 comments on commit 9aa3b5e

Please sign in to comment.