projects
/
ses.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a3ed4c
)
_output_handler()
author
yu.dongliang
<18588496441@163.com>
Sat, 14 Oct 2023 06:14:38 +0000
(14:14 +0800)
committer
yu.dongliang
<18588496441@163.com>
Sat, 14 Oct 2023 06:14:38 +0000
(14:14 +0800)
ses_step_output.c
patch
|
blob
|
blame
|
history
diff --git
a/ses_step_output.c
b/ses_step_output.c
index 4448353d28cda1f4d03b8b5b7ffc24df30fff0ef..82470fdbd76f4e809fe2f736a8971622f26e4186 100644
(file)
--- a/
ses_step_output.c
+++ b/
ses_step_output.c
@@
-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;
}