From 39f997f7d43a9627e917e8526ec341079a88dd6b Mon Sep 17 00:00:00 2001 From: TT Date: Sun, 23 Feb 2020 00:16:54 +0900 Subject: [PATCH] fix: default scale factor --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index c9c7e83..d0bc1f3 100644 --- a/main.c +++ b/main.c @@ -706,10 +706,10 @@ properties_t current_props = { ._frequency1 = 900000000, // end = 900MHz ._sweep_points = POINTS_COUNT, ._trace = {/*enable, type, channel, reserved, scale, refpos*/ - { 1, TRC_LOGMAG, 0, 0, 1.0, 9.0 }, - { 1, TRC_LOGMAG, 1, 0, 1.0, 9.0 }, + { 1, TRC_LOGMAG, 0, 0, 10.0, 9.0 }, + { 1, TRC_LOGMAG, 1, 0, 10.0, 9.0 }, { 1, TRC_SMITH, 0, 0, 1.0, 0.0 }, - { 1, TRC_PHASE, 1, 0, 1.0, 5.0 } + { 1, TRC_PHASE, 1, 0, 90.0, 5.0 } }, ._markers = { { 1, 30, 0 }, { 0, 40, 0 }, { 0, 60, 0 }, { 0, 80, 0 }