Updated radio and display driver stubs

This commit is contained in:
Silvano Seva 2024-04-13 11:01:10 +02:00
parent d43dd57031
commit 81f9257888
2 changed files with 10 additions and 5 deletions

View File

@ -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;

View File

@ -47,6 +47,16 @@ bool radio_checkRxDigitalSquelch()
return false;
}
void radio_enableAfOutput()
{
}
void radio_disableAfOutput()
{
}
void radio_enableRx()
{