BenScar
What does this do again?
Hello all,
I've touched on a good few things in my travels and wondered if I could bring together a few of them to make a real time clock add on.
Thinking something along the lines of a Linux driver (learning C++ at the moment, so that's only a year or so off
) that when "asked" for the time asked, it would send a message over the serial port (OK, not the fastest but I'm just thinking out loud here). The hardware would consist of a little PICT (or similiar programmable chip) that sits and waits for a command to come down the serial port. If it sees "TIME:CURRENT" (or something uniquie) it just dumps its date/time store back to the serial for the driver to pick up and relay to the requesting app.
The rest of the hardware would consist of a low current timer (ticking at, oh I don't know, 100th of a second) feeding into the PICT chip where is would count up the seconds/minutes/hours.
It would of course need to set first, IE given a date/time over the serial, so that would also have to be part of the driver. Something like "TIME:SET:ddd mmm yyyy HH:MM:SS". The PICT chip would then translate this into how ever it was stored (probably in a set of registers, guessing now).
The part of the PICT that's doing the counting would need the rules for counting up but the rules themselves aren't to hard and it would always be GMT. Adjustments for Daylight Saving/British Summer Time would have to be thought about some where else or perhaps there are nice simple rules for that as well.
Now, here's the part I'm posting for... Is there anyone out there with PICT or similiar experience who can tell me I'm talking tosh or perhaps, just perhaps, I might have listened in a lecture or two and picked something up?
Is this something people would want?! For things like using the 2x as a PDA (which I wouldn't but I like to make things!) or even an alarm clock..
Another question, showing my lack of Linux experience here, is there a "/dev/input/mice" type thing for the system clock? Something like "/dev/input/clock" which when read gives you the date/time ?
I thank you for your attention!
Ben
I've touched on a good few things in my travels and wondered if I could bring together a few of them to make a real time clock add on.
Thinking something along the lines of a Linux driver (learning C++ at the moment, so that's only a year or so off
The rest of the hardware would consist of a low current timer (ticking at, oh I don't know, 100th of a second) feeding into the PICT chip where is would count up the seconds/minutes/hours.
It would of course need to set first, IE given a date/time over the serial, so that would also have to be part of the driver. Something like "TIME:SET:ddd mmm yyyy HH:MM:SS". The PICT chip would then translate this into how ever it was stored (probably in a set of registers, guessing now).
The part of the PICT that's doing the counting would need the rules for counting up but the rules themselves aren't to hard and it would always be GMT. Adjustments for Daylight Saving/British Summer Time would have to be thought about some where else or perhaps there are nice simple rules for that as well.
Now, here's the part I'm posting for... Is there anyone out there with PICT or similiar experience who can tell me I'm talking tosh or perhaps, just perhaps, I might have listened in a lecture or two and picked something up?
Is this something people would want?! For things like using the 2x as a PDA (which I wouldn't but I like to make things!) or even an alarm clock..
Another question, showing my lack of Linux experience here, is there a "/dev/input/mice" type thing for the system clock? Something like "/dev/input/clock" which when read gives you the date/time ?
I thank you for your attention!
Ben