Updated radio and display driver stubs
This commit is contained in:
parent
d43dd57031
commit
81f9257888
|
|
@ -44,11 +44,6 @@ void display_render(void *fb)
|
||||||
(void) fb;
|
(void) fb;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *display_getFrameBuffer()
|
|
||||||
{
|
|
||||||
return (void *) (frameBuffer);
|
|
||||||
}
|
|
||||||
|
|
||||||
void display_setContrast(uint8_t contrast)
|
void display_setContrast(uint8_t contrast)
|
||||||
{
|
{
|
||||||
(void) contrast;
|
(void) contrast;
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,16 @@ bool radio_checkRxDigitalSquelch()
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void radio_enableAfOutput()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void radio_disableAfOutput()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
void radio_enableRx()
|
void radio_enableRx()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue