_output_handler()
authoryu.dongliang <18588496441@163.com>
Sat, 14 Oct 2023 06:14:38 +0000 (14:14 +0800)
committeryu.dongliang <18588496441@163.com>
Sat, 14 Oct 2023 06:14:38 +0000 (14:14 +0800)
ses_step_output.c

index 4448353d28cda1f4d03b8b5b7ffc24df30fff0ef..82470fdbd76f4e809fe2f736a8971622f26e4186 100644 (file)
@@ -2,6 +2,17 @@
 
 static int _output_handler(ScfEfunction* f, int64_t ns, int64_t count, ses_ctx_t* ctx)
 {
+       ScfEline* el;
+
+       size_t i;
+
+       for (i = 0; i < f->n_elines; i++) {
+               el =        f->elines[i];
+
+               if (SCF_EDA_PIN_OUT & el->flags)
+                       scf_logw("IN el: %ld, V: %lg\n", el->id, el->v);
+       }
+
        return 0;
 }