2021-10-30 13:50:00 +00:00
|
|
|
// Copyright Terence J. Boldt (c)2020-2021
|
|
|
|
// Use of this source code is governed by an MIT
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// This file is contains the handler for retrieving the ProDOS timestamp
|
|
|
|
// based on the current time
|
2021-05-30 11:18:39 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2021-10-11 11:52:24 +00:00
|
|
|
"github.com/tjboldt/ProDOS-Utilities/prodos"
|
2021-05-30 11:18:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func GetTimeCommand() {
|
|
|
|
fmt.Printf("Sending date/time...\n")
|
2021-10-11 11:52:24 +00:00
|
|
|
prodosTime := prodos.DateTimeToProDOS(time.Now())
|
2021-05-30 11:18:39 +00:00
|
|
|
|
2021-10-11 11:52:24 +00:00
|
|
|
for i := 0; i < len(prodosTime); i++ {
|
2021-10-30 11:03:18 +00:00
|
|
|
comm.WriteByte(prodosTime[i])
|
2021-10-11 11:52:24 +00:00
|
|
|
}
|
2021-05-30 11:18:39 +00:00
|
|
|
|
|
|
|
fmt.Printf("Send time complete\n")
|
|
|
|
}
|