From faebcf42c6e7a6afe2a9df647c9b7e4c80d40141 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 31 Dec 1999 19:00:42 -0500 Subject: use narrower fixed PW on high PRF units like AVM-6-B --- flash.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flash.c b/flash.c index 6379d3b..b7bf76b 100644 --- a/flash.c +++ b/flash.c @@ -932,6 +932,12 @@ void fixFlash(FlashStruct *mem) ++fix_initial_constants; } } + + // for AVM-6-B in particular + if ((mem->max_freq[i] >= 5e6) && (mem->fix_pw_dac_val[i] < dac_max/4)) { + mem->fix_pw_dac_val[i] = dac_max/4; + ++fix_initial_constants; + } } if (fix_initial_constants) { -- cgit