Skip to content

Commit

Permalink
Merge pull request #36 from ckormanyos/repair_typos
Browse files Browse the repository at this point in the history
Repair various trivial typos
  • Loading branch information
ckormanyos authored Jan 13, 2024
2 parents 4312034 + c0d251e commit fb2fc4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ VPATH := $(sort $(dir $(FILES_PRJ)) $(PATH_OBJ))


##############################################################################80
# compile/link
# compile/link rules
##############################################################################80

$(PATH_BIN)/refapp.ihx : $(FILES_OBJ)
Expand Down
4 changes: 2 additions & 2 deletions src/app/app_lcd_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ void app_lcd_util_puts(const char* p_str)
}
}

void app_lcd_util_row(const char row) ATTRIBUTE_NAKED
void app_lcd_util_row(const uint8_t row) ATTRIBUTE_NAKED
{
(void) row;

__asm__("ld (#0x844B), a\n");
__asm__("ret\n");
}

void app_lcd_util_col(const char col) ATTRIBUTE_NAKED
void app_lcd_util_col(const uint8_t col) ATTRIBUTE_NAKED
{
(void) col;

Expand Down
10 changes: 5 additions & 5 deletions src/app/app_lcd_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// Distributed under The Unlicense
//

#ifndef APP_LED_UTIL_2024_01_07_H
#define APP_LED_UTIL_2024_01_07_H
#ifndef APP_LCD_UTIL_2024_01_07_H
#define APP_LCD_UTIL_2024_01_07_H

#include <stdbool.h>
#include <stdint.h>
Expand All @@ -26,9 +26,9 @@

void app_lcd_util_puts(const char* p_str);

void app_lcd_util_row(const char row) ATTRIBUTE_NAKED;
void app_lcd_util_col(const char col) ATTRIBUTE_NAKED;
void app_lcd_util_row(const uint8_t row) ATTRIBUTE_NAKED;
void app_lcd_util_col(const uint8_t col) ATTRIBUTE_NAKED;

void app_lcd_util_init(void) ATTRIBUTE_NAKED;

#endif // APP_LED_UTIL_2024_01_07_H
#endif // APP_LCD_UTIL_2024_01_07_H

0 comments on commit fb2fc4c

Please sign in to comment.