Build epoch in info, flash-status command, cmake version embedding

This commit is contained in:
Ian Gulliver
2026-04-12 09:02:31 +09:00
parent 21c7900444
commit a41ee70a3c
9 changed files with 85 additions and 5 deletions

View File

@@ -132,6 +132,10 @@ func (c *Client) Reboot() error {
return err
}
func (c *Client) FlashStatus() (*ResponseFlashStatus, error) {
return first(roundTrip[ResponseFlashStatus](c, &RequestFlashStatus{}))
}
func (c *Client) ListTests() (*ResponseListTests, error) {
return first(roundTrip[ResponseListTests](c, &RequestListTests{}))
}