Skip to content

Commit

Permalink
Working liveseek
Browse files Browse the repository at this point in the history
  • Loading branch information
LolloDev5123 committed Jan 12, 2024
1 parent c92d410 commit 3652356
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app/ceccommon.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@


#include "ceccommon.h"
#include "ui/helper.h"
#include "ui/ui.h"

typedef struct
{
Expand Down
2 changes: 1 addition & 1 deletion ui/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ bool UI_NoChannelName(char *channelName) {
return channelName[0] < 32 || channelName[0] > 127;
}

#ifdef ENABLE_MESSENGER
#if defined(ENABLE_MESSENGER) || defined(ENABLE_LIVESEEK_MHZ_KEYPAD)

void UI_DrawPixelBuffer(uint8_t (*buffer)[128], uint8_t x, uint8_t y, bool black)
{
Expand Down
2 changes: 1 addition & 1 deletion ui/helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void UI_DisplayFrequency(const char *pDigits, uint8_t X, uint8_t Y,
bool bDisplayLeadingZero, bool bFlag);
void UI_DisplaySmallDigits(uint8_t Size, const char *pString, uint8_t X,
uint8_t Y);
#if defined(ENABLE_MESSENGER) || defined(ENABLE_LIVESEEK_MHZ_KEYPAD)
#if defined(ENABLE_MESSENGER) || defined(ENABLE_LIVESEEK_MHZ_KEYPAD)
void UI_DrawLineBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
void UI_DrawDottedLineBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black, int dotSpacing);
void UI_DrawRectangleBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
Expand Down

0 comments on commit 3652356

Please sign in to comment.