summaryrefslogtreecommitdiffstatshomepage
path: root/nl_examples/ne555_astable.c
diff options
context:
space:
mode:
Diffstat (limited to 'nl_examples/ne555_astable.c')
-rw-r--r--nl_examples/ne555_astable.c61
1 files changed, 0 insertions, 61 deletions
diff --git a/nl_examples/ne555_astable.c b/nl_examples/ne555_astable.c
deleted file mode 100644
index b782f9c6f3e..00000000000
--- a/nl_examples/ne555_astable.c
+++ /dev/null
@@ -1,61 +0,0 @@
-// license:GPL-2.0+
-// copyright-holders:Couriersud
-
-//! [ne555 example]
-/*
- * ne555_astable.c
- *
- */
-
-#include "netlist/devices/net_lib.h"
-
-NETLIST_START(ne555_astable)
-
- /*
- * Astable ne555
- *
- */
-
- /*!
- *
- * abc | def
- * ghj | ddd
- * iop | xyz
- *
- *
- */
- /* Standard stuff */
-
- SOLVER(Solver, 48000)
-
- ANALOG_INPUT(V5, 5) // 5V
-
- /* Wiring up the ne555 */
-
- // astable NE555, 1.13 ms period
-
- RES(RA, 5000)
- RES(RB, 3000)
- CAP(C, 0.15e-6)
- NE555(555)
-
- NET_C(GND, 555.GND)
- NET_C(V5, 555.VCC)
- NET_C(V5, 555.RESET)
-
- NET_C(RA.1, 555.VCC)
- NET_C(RA.2, 555.DISCH)
-
- NET_C(RB.1, 555.DISCH)
- NET_C(RB.2, 555.TRIG)
-
- NET_C(RB.2, 555.THRESH)
-
- NET_C(555.TRIG, C.1)
- NET_C(C.2, GND)
-
- LOG(log2, C.1)
- LOG(log3, 555.OUT)
-
-NETLIST_END()
-//! [ne555 example]