From 999ec40e793f13eaba97a1d6ce84e623fe875c87 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 13 Mar 2018 00:11:25 +0800 Subject: [PATCH] bootloader: print gateware ident --- artiq/firmware/bootloader/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artiq/firmware/bootloader/main.rs b/artiq/firmware/bootloader/main.rs index c1ae1d8bc..7173ef86d 100644 --- a/artiq/firmware/bootloader/main.rs +++ b/artiq/firmware/bootloader/main.rs @@ -87,6 +87,8 @@ fn startup() -> bool { return false } + println!("Gateware ident {}", board::ident::read(&mut [0; 64])); + println!("Initializing SDRAM..."); if unsafe { board::sdram::init(Some(&mut Console)) } {