1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-14 06:42:54 +08:00
This commit is contained in:
Konstantin Pavlov 2023-05-23 11:12:22 +03:00
parent b81fda635d
commit 0475ea0398
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
// INFO ------------------------------------------------------------------------ // INFO ------------------------------------------------------------------------
// Button debounce v1 // Button debounce v1
// //
// - sampling inputs using configurable divided clock (ithis is the // - sampling inputs using configurable divided clock (this is the
// simplest form of low-pass filter) // simplest form of low-pass filter)
// - switching output only when both samples have equal level // - switching output only when both samples have equal level
// (this gives some form of hysteresis in case we sample unstable data) // (this gives some form of hysteresis in case we sample unstable data)

View File

@ -7,7 +7,7 @@
// INFO ------------------------------------------------------------------------ // INFO ------------------------------------------------------------------------
// Button debounce v2, SystemVerilog version // Button debounce v2, SystemVerilog version
// //
// - sampling inputs using configurable divided clock (ithis is the // - sampling inputs using configurable divided clock (this is the
// simplest form of low-pass filter) // simplest form of low-pass filter)
// //
// - in contrast with debounce_v1.v this implementation is switching output only // - in contrast with debounce_v1.v this implementation is switching output only

View File

@ -7,7 +7,7 @@
// INFO ------------------------------------------------------------------------ // INFO ------------------------------------------------------------------------
// Button debounce v2 // Button debounce v2
// //
// - sampling inputs using configurable divided clock (ithis is the // - sampling inputs using configurable divided clock (this is the
// simplest form of low-pass filter) // simplest form of low-pass filter)
// //
// - in contrast with debounce_v1.v this implementation is switching output only // - in contrast with debounce_v1.v this implementation is switching output only