blob: 36b99a3487233bb47e4a586a325c638e75bf5b9b [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
use anyhow::Result;
use serde_annotate::Annotate;
use std::any::Any;
use structopt::StructOpt;
use opentitanlib::app::command::CommandDispatch;
use opentitanlib::app::TransportWrapper;
use opentitanlib::transport::common::fpga;
/// Clear the bitstream of the FPGA
#[derive(Debug, StructOpt)]
pub struct ClearBitstream {}
impl CommandDispatch for ClearBitstream {
fn run(
&self,
_context: &dyn Any,
transport: &TransportWrapper,
) -> Result<Option<Box<dyn Annotate>>> {
transport.dispatch(&fpga::ClearBitstream)
}
}