blob: 36a559e20d6a9da4eba3da743653c4fb0ecf7902 [file]
// Licensed under the Apache-2.0 license
// SPDX-License-Identifier: Apache-2.0
#![no_std]
#![no_main]
use target_common::{declare_target, TargetInterface};
use {console_backend as _, entry as _};
pub struct Target {}
impl TargetInterface for Target {
const NAME: &'static str = "Earlgrey GPIO Smoke Test";
fn main() -> ! {
codegen::start();
loop {}
}
}
declare_target!(Target);