URL
https://opencores.org/ocsvn/rtcclock/rtcclock/trunk
Subversion Repositories rtcclock
[/] [rtcclock/] [trunk/] [README.md] - Rev 9
Compare with Previous | Blame | View Log
# Real Time Clock CoreEvery FPGA project needs to start with a very simple core. Then, working fromsimplicity, more and more complex cores can be built until an eventualapplication comes from all the tiny details.This real time clock began with one such simple core. All of the pieces tothis clock are simple. Nothing is inherently complex. However, placing thisclock into a larger FPGA structure requires a Wishbone bus, and being ableto command and control an FPGA over a wishbone bus is an achievement in andof itself. Further, the clock produces outputs that can be used to strobean interrupt line. Reading and processing that interrupt line requiresa whole 'nother bit of logic and the ability to capture, recognize, andrespond to interrupts. Hence, once you get a simple clock working, you havea lot working.Included in this repository are several basic cores which can beused for this purpose:- rtcclock: the original RTC Clock module. This was originally built for a Basys-3 board, and so it also has outputs suitable for commanding LEDs and a seven segment display.- rtclight: Just the basic RTC, with no LEDs or seven segment display output wires.- rtcgps: A real-time clock which can be used together with a cleaned-up GPS PPS, to keep the clock accurate at a subsecond level to the top of the second. Further work is required to get the clock to the correct second, but this will hold it to the correct subsecond interval.
