From 7b4cdb21643729abc3021674c59ec6d3d83319bc Mon Sep 17 00:00:00 2001 From: Daniel Garcia Date: Thu, 15 Jan 2015 10:47:53 -0800 Subject: Fix issue #120 - add timings for the UCS1904. --- chipsets.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'chipsets.h') diff --git a/chipsets.h b/chipsets.h index 581a756c..ed98c835 100644 --- a/chipsets.h +++ b/chipsets.h @@ -468,6 +468,9 @@ class UCS1903Controller400Khz : public ClocklessController class UCS1903BController800Khz : public ClocklessController {}; +template +class UCS1904Controller800Khz : public ClocklessController {}; + template class TM1809Controller800Khz : public ClocklessController {}; @@ -502,14 +505,21 @@ class GW6205Controller800Khz : public ClocklessController class UCS1903Controller400Khz : public ClocklessController {}; #if NO_TIME(500, 1500, 500) -#warning "Not enough clock cycles available for the UCS103@400khz" +#warning "Not enough clock cycles available for the UCS1903@400khz" #endif // UCS1903B - 400ns, 450ns, 450ns template class UCS1903BController800Khz : public ClocklessController {}; #if NO_TIME(400, 450, 450) -#warning "Not enough clock cycles available for the UCS103B@800khz" +#warning "Not enough clock cycles available for the UCS1903B@800khz" +#endif + +// UCS1904 - 400ns, 400ns, 450ns +template +class UCS1904Controller800Khz : public ClocklessController {}; +#if NO_TIME(400, 400, 450) +#warning "Not enough clock cycles available for the UCS1904@800khz" #endif // TM1809 - 350ns, 350ns, 550ns -- cgit v1.2.3