hosted: Implemented support for the new target clock tristating on BMP

This commit is contained in:
dragonmux 2022-08-10 00:28:23 +01:00 committed by Piotr Esden-Tempski
parent 450581cc0a
commit cf07861405
1 changed files with 12 additions and 0 deletions

View File

@ -483,6 +483,18 @@ void platform_buffer_flush(void)
} }
} }
void platform_target_clk_output_enable(const bool enable)
{
switch (info.bmp_type) {
case BMP_TYPE_BMP:
remote_target_clk_output_enable(enable);
break;
default:
break;
}
}
static void ap_decode_access(uint16_t addr, uint8_t RnW) static void ap_decode_access(uint16_t addr, uint8_t RnW)
{ {
if (RnW) if (RnW)