blob: 7ed5f53d36aed69e2ad7d547cf4127921c0b546e [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::cw310;
/// 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(&cw310::ClearBitstream {})
}
}