Skip to content

Commit

Permalink
Updated radio and display driver stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
silseva committed Jun 17, 2024
1 parent d43dd57 commit 81f9257
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 0 additions & 5 deletions platform/drivers/stubs/display_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ void display_render(void *fb)
(void) fb;
}

void *display_getFrameBuffer()
{
return (void *) (frameBuffer);
}

void display_setContrast(uint8_t contrast)
{
(void) contrast;
Expand Down
10 changes: 10 additions & 0 deletions platform/drivers/stubs/radio_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ bool radio_checkRxDigitalSquelch()
return false;
}

void radio_enableAfOutput()
{

}

void radio_disableAfOutput()
{

}

void radio_enableRx()
{

Expand Down

0 comments on commit 81f9257

Please sign in to comment.