File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1180,7 +1180,7 @@ def otbn_vertical(ctx: typer.Context,
1180
1180
1181
1181
# Print the params
1182
1182
print (
1183
- f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]} MHz'
1183
+ f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]/ 1000000 } MHz'
1184
1184
)
1185
1185
print (
1186
1186
f'Scope setup with sampling rate { ctx .obj .ot .scope .clock .adc_freq } S/s'
@@ -1436,7 +1436,7 @@ def ecdsa_simple(ctx: typer.Context,
1436
1436
ctx .obj .ot .scope .adc .decimate = ctx .obj .cfg ["capture" ]["decimate" ]
1437
1437
# Print the params
1438
1438
print (
1439
- f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]} MHz'
1439
+ f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]/ 1000000 } MHz'
1440
1440
)
1441
1441
print (
1442
1442
f'Scope setup with sampling rate { ctx .obj .ot .scope .clock .adc_freq } S/s'
@@ -1646,7 +1646,7 @@ def ecdsa_stream(ctx: typer.Context,
1646
1646
if "decimate" in ctx .obj .cfg ["capture" ]:
1647
1647
ctx .obj .ot .scope .adc .decimate = ctx .obj .cfg ["capture" ]["decimate" ]
1648
1648
print (
1649
- f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]} MHz'
1649
+ f'Target setup with clock frequency { ctx .obj .cfg ["device" ]["pll_frequency" ]/ 1000000 } MHz'
1650
1650
)
1651
1651
print (
1652
1652
f'Scope setup with sampling rate { ctx .obj .ot .scope .clock .adc_freq } S/s'
You can’t perform that action at this time.
0 commit comments