Fixed BSL version reporting.

This commit is contained in:
Daniel Beer 2010-03-13 15:44:51 +13:00
parent 67b041ef7a
commit 306a29a0fe
1 changed files with 1 additions and 1 deletions

2
bsl.c
View File

@ -331,6 +331,6 @@ const struct device *bsl_open(const char *device)
}
print_devid((reply_buf[4] << 8) | reply_buf[5]);
printf("BSL version is %d.%02d\n", reply_buf[16], reply_buf[17]);
printf("BSL version is %x.%02x\n", reply_buf[14], reply_buf[15]);
return &bsl_device;
}