summaryrefslogtreecommitdiff
path: root/uart
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2017-04-09 22:25:25 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2017-04-09 22:42:51 +0200
commit65b9dbd7eb2fa751b171a3dbdf203be18a71995e (patch)
treee9690153549b9fcd1efefb96783b086d9f76e57e /uart
parent69073c8d96b6512dac975eb9e38ed9a07ff655a6 (diff)
downloadsigrok-dumps-65b9dbd7eb2fa751b171a3dbdf203be18a71995e.tar.gz
sigrok-dumps-65b9dbd7eb2fa751b171a3dbdf203be18a71995e.zip
Add a Microchip 24LC64 dump (Rocktech BM102).
Diffstat (limited to 'uart')
0 files changed, 0 insertions, 0 deletions
s='logsubject'>Only do second sum if it can make a differenceEric Anderson 2010-12-26Auto-choose at runtime to do second sum in lcs_upper_boundEric Anderson This has no impact for non-DO_SECOND_SUM, but puts DO_SECOND_SUM less than a percent behind. 2010-12-26Simple movement of return calculation in lcs_upper_boundEric Anderson This increased performance of the non-DO_SECOND_SUM code a _lot_ for something so small. 2010-12-26Only add one to lcs_upper_bound or don't do the second sum.Eric Anderson The DO_SECOND_SUM define has reduced false positives, but without it has a reasonable amount less work. Thus, you must empirically test to find which has the best boost. Right now, DO_SECOND_SUM is faster. 2010-12-26Add lcs_upper_bound check before lcs_32_rough for added speedEric Anderson