aboutsummaryrefslogtreecommitdiffstats
path: root/examples/raspberrypi-gpio.awlpro
blob: 3f348c3647004cd6dc5f4e814d747b343db98341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Awlsim project file generated by awlsim-0.69.0-pre -->
<awlsim_project date_create="2016-03-16 00:00:00.000000"
                date_modify="2019-01-15 21:40:21.266275"
                format_version="1">
	<!-- CPU core configuration -->
	<cpu>
		<!-- CPU core feature specification -->
		<specs call_stack_size="256"
		       nr_accus="2"
		       nr_counters="256"
		       nr_flags="2048"
		       nr_inputs="128"
		       nr_localbytes="1024"
		       nr_outputs="128"
		       nr_timers="256"
		       parenthesis_stack_size="7" />

		<!-- CPU core configuration -->
		<config clock_memory_byte="16"
		        cycle_time_limit_us="1000000"
		        ext_insns_enable="0"
		        mnemonics="2"
		        ob_startinfo_enable="0"
		        run_time_limit_us="-1" />
	</cpu>

	<!-- AWL/STL language configuration -->
	<language_awl>
		<!-- AWL/STL source code -->
		<source enabled="1"
		        name="OB 1"
		        type="0"><![CDATA[
ORGANIZATION_BLOCK "OB_CYCLE"
	TITLE		= Main cycle
	AUTHOR		: Michael Buesch <m@bues.ch>
	// LICENSE	: GPLv2+
BEGIN
	
	// Run the main FUP block.
	CALL "FB_main", "DB_main"
	
	BE
END_ORGANIZATION_BLOCK

]]></source>

		<!-- AWL/STL source code -->
		<source enabled="1"
		        name="Light chaser"
		        type="0"><![CDATA[
FUNCTION "FC_lightchaser" : VOID
	TITLE		= Light chaser
	AUTHOR		: Michael Buesch <m@bues.ch>
	// LICENSE	: GPLv2+

	VAR_INPUT
		PERIOD	: S5TIME;	// Timer period
		T	: TIMER;	// Timer cell
		MINVAL	: DWORD;	// Minimal #REG value
		MAXVAL	: DWORD;	// Maximal #REG value
	END_VAR
	VAR_IN_OUT
		REG	: DWORD;	// Shift register
		STATE	: BOOL;		// Timer state
		DIR	: BOOL;		// Shift direction
	END_VAR
BEGIN
	// Self re-arming timer
	U	#STATE
	L	#PERIOD
	SV	#T
	UN	#T
	=	#STATE

	// Select sweep direction
	L	#MINVAL
	L	#REG
	==D			// #MINVAL reached?
	S	#DIR		// reverse direction
	L	#MAXVAL
	==D			// #MAXVAL reached?
	R	#DIR		// reverse direction

	// Shift #REG, if required
	L	#REG
	UD	L#-1
	L	#MINVAL		// Initial #REG value
	SPZ	_001		// #REG is uninitialized?
	TAK
	U	#STATE		// Next state?
	SPBN	_001
	U	#DIR		// Left or right?
	SPBN	_000
	RLD	2		// Next state (left)
_000:	RRD	1		// Next state (right)
_001:	T	#REG

	BE
END_FUNCTION

]]></source>
	</language_awl>

	<!-- FUP/FBD language configuration -->
	<language_fup>
		<!-- FUP/FBD source code -->
		<source enabled="1"
		        name="Main state machine"
		        type="1"><![CDATA[
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Awlsim FUP/FBD source generated by awlsim-0.69.0-pre -->
<FUP version="0" zoom="1.0">
	<blockdecl name='"FB_main"' type="FB">
		<instance_dbs>
			<db name='"DB_main"' />
		</instance_dbs>
	</blockdecl>
	<interface allow_initvalue="1"
	           allow_inouts="1"
	           allow_inputs="1"
	           allow_outputs="1"
	           allow_retval="0"
	           allow_stats="1"
	           allow_temps="1">
		<stats>
			<field comment="Timer state" name="timer_state" type="BOOL" uuid="f11d899f-8935-432b-9ec9-ced1f84d9c48" />
			<field comment="Light chaser register" name="lc_data" type="DWORD" uuid="afc6af01-1a9d-45d4-ac2a-e043395eead2" />
		</stats>
		<temps>
			<field comment="Light chaser mode active" name="lc_active" type="BOOL" uuid="3b57a8cc-b8fe-4c22-bdbc-03cf03afa44a" />
			<field comment="Light chaser state" name="lc_state" type="BOOL" uuid="1ab7ea92-59d7-4b8d-98ca-0385a780154e" />
			<field comment="Light chaser direction" name="lc_dir" type="BOOL" uuid="64030f49-554e-4d6f-ab2a-182278f44383" />
		</temps>
	</interface>
	<grids>
		<grid height="56" uuid="d6bef60f-d0e8-4469-9d5e-4abd0a7ff04f" width="12">
			<optimizers all="1" enabled="1" type="awl" />
			<wires>
				<wire id="0" uuid="70063dca-1e7b-49c9-82ee-204a2143d2e5" />
				<wire id="1" uuid="18d76357-d9d2-4861-b096-86a63e417d05" />
				<wire id="2" uuid="d45b63f3-fb06-4d36-8c8c-2567894e3274" />
				<wire id="3" uuid="c5d272d1-e73c-4b1d-819e-d674fedfafea" />
				<wire id="4" uuid="269b61b6-0468-4e5c-9eae-7ce9e0fd2846" />
				<wire id="5" uuid="ffb9d059-c1ee-4ec6-a87f-9d58551370ec" />
				<wire id="6" uuid="96e8fc82-0b51-4182-aa2a-4abdf8b08a4e" />
				<wire id="7" uuid="76dd8234-481f-485e-b23d-96707ee60e4e" />
				<wire id="8" uuid="7f6e5077-676b-45b0-8fae-1d4b1e717f91" />
				<wire id="9" uuid="0a3a7623-f6b6-4310-b7ae-a19f2946a756" />
				<wire id="10" uuid="3d54d081-0f07-461e-9de7-5ce55090ed52" />
				<wire id="11" uuid="6d419c50-5690-49d6-a96a-bb24bdb18b8c" />
				<wire id="12" uuid="07b29338-fa98-4a20-a5af-353d5e5fe7e8" />
				<wire id="13" uuid="deb3e7c5-28ff-4887-aed9-b79a7c332277" />
				<wire id="14" uuid="2db0689d-e66e-41b2-bf4a-9201a62beb7c" />
				<wire id="15" uuid="e59c6073-1266-40a2-abd7-32b7590c339b" />
				<wire id="16" uuid="4346c5ef-e8b0-49b9-9596-e9e105c02d9e" />
				<wire id="17" uuid="0d88d306-25b7-4b9a-8692-8e5763fe4245" />
				<wire id="18" uuid="004e1a53-73f7-47d3-8762-d92eb8393a66" />
				<wire id="19" uuid="bafab982-4222-494d-a325-b86238bd2d1a" />
				<wire id="20" uuid="e9911f2a-c7b7-4a61-8664-ea0bf1aa42f8" />
				<wire id="21" uuid="99a26e39-8662-4465-9479-cb6a30457e73" />
				<wire id="22" uuid="bf7c0a12-fc29-4552-88b5-03ee76d803a4" />
				<wire id="23" uuid="5e27b2c4-c798-4fb8-a668-55c4cff18c69" />
				<wire id="24" uuid="471a20f4-c2fc-4c5c-8644-8d7bcfe6c9a3" />
				<wire id="25" uuid="e3c3d0d1-8386-4277-94f1-5423dcc9921d" />
				<wire id="26" uuid="888ec66a-e2eb-41e2-8ef3-ace4d1a2403f" />
				<wire id="27" uuid="7cb3714f-3efb-40cf-bf96-fb7578e0be1c" />
				<wire id="28" uuid="a71faefc-952e-46c4-bb26-3c389b77507a" />
				<wire id="29" uuid="57739b9a-1302-4f22-b9aa-1f28b47194ca" />
				<wire id="30" uuid="4eecab3e-4a4c-4911-8802-c44940cff241" />
				<wire id="31" uuid="c99fd34d-2461-4978-828a-f30fadc4b9d5" />
				<wire id="32" uuid="8ca53205-56c0-484b-85a6-f5eeb8cdb3ea" />
				<wire id="33" uuid="dafc6f11-a591-4bcd-a2e8-0ac5bc6a5daa" />
				<wire id="34" uuid="5e12a8b5-6034-4676-b22f-bddd64ffbde3" />
			</wires>
			<elements>
				<element content="#lc_data" subtype="load" type="operand" uuid="b3c056b0-97fe-4eb5-9c5d-3228d9ccdf30" x="1" y="51">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="04e39272-d8cf-4224-9df6-487c08aadb88" wire="25" />
					</connections>
				</element>
				<element content='"AB_raspi_GPIO"' subtype="assign" type="operand" uuid="23b2aab6-b144-411c-8094-49061192942a" x="3" y="50">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="96833969-dcbc-4a6a-9cde-6512a0e6c80a" wire="26" />
					</connections>
				</element>
				<element subtype="le-int" type="compare" uuid="db185ef0-f712-43ce-a87d-0dc35e73c742" x="2" y="39">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="0368d095-5bc1-48e1-8c16-3af6bff89cdb" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="8643446c-a972-4c44-987f-26b2a041ebb2" wire="0" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="12363cef-c029-4093-a5d6-d820d0be0c3c" wire="1" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="52e2aec6-e83c-4642-948c-d9b6f5bf999f" wire="6" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="27494954-f724-4904-8269-99dd193ba15c" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="a24f4032-f70d-4e1a-9b9c-9433ef9f1df5" x="1" y="40">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="a7b1e435-4d0c-4b4d-bfcd-1e87b6fbdde5" wire="0" />
					</connections>
				</element>
				<element content="15" subtype="load" type="operand" uuid="fe3c84ad-6647-4f6f-ba42-29d76a21174f" x="1" y="41">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="313bbb25-533c-49cf-9d05-c1c4c0b19b56" wire="1" />
					</connections>
				</element>
				<element subtype="ge-int" type="compare" uuid="c2a4f07f-3753-4aaf-a603-727e46a2eca8" x="2" y="14">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="50df9195-0dad-49a2-b493-aad235162208" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="a7bcf407-cda1-45ca-a6ad-0aea55f54002" wire="2" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="cdd88d0d-55a0-4f7b-9dc4-b0150dfc959b" wire="3" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="8d59db60-45c4-4a7e-9c94-d7935c13711f" wire="31" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="5c07db81-7d08-4930-ac33-5b0883693212" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="c63df485-42ee-4590-9ac6-38f585a12781" x="1" y="15">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="b3c5f39b-02ec-4123-abc3-c7c0a8effc39" wire="2" />
					</connections>
				</element>
				<element content="20" subtype="load" type="operand" uuid="24e3d6da-f817-4aa7-8461-6800b835b3ba" x="1" y="16">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="023b53bd-7b27-414c-a57f-a7e9d7684a47" wire="3" />
					</connections>
				</element>
				<element subtype="r" type="boolean" uuid="2ed06903-cf1e-43bb-af7c-32d26d7e7bbe" x="5" y="36">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="R" uuid="4e73be45-e5e9-4559-ad2a-38948d007d27" wire="7" />
						<connection dir_in="0" dir_out="1" pos="0" text="Q" uuid="b1b19b74-efb8-4594-a289-67768381a861" wire="-1" />
					</connections>
					<subelements>
						<element content="Z 0" subtype="embedded" type="operand" uuid="8576138b-93e7-4a8c-a82a-5f6937efac95" x="0" y="0" />
					</subelements>
				</element>
				<element subtype="eq-int" type="compare" uuid="fceb6aea-a3c5-43fc-b53d-14a940d53ae1" x="2" y="23">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="4e2fc543-f409-4506-8b04-270b1ccb386c" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="71d66e5b-86f5-4e5e-8d36-b51ebec990b3" wire="4" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="08ff9443-5d93-4c28-a77e-c38d9b2c7427" wire="5" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="96a1ee16-dca1-4576-8a38-6dd2e2c82cb9" wire="19" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="989945b1-a85f-4516-b4c9-bfa365268b9c" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="1ff00434-191e-4b63-8a9f-2f38d7b43be2" x="1" y="24">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="bfd0d4cf-eda4-471a-beb5-10b241b5d5ea" wire="4" />
					</connections>
				</element>
				<element content="17" subtype="load" type="operand" uuid="22cbddf5-44bf-4c98-848e-bccc3027f549" x="1" y="25">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="1df3e3d4-0f86-424f-897c-e218e5060c44" wire="5" />
					</connections>
				</element>
				<element subtype="or" type="boolean" uuid="83b9a38a-7131-4075-8e9a-fb84f452396b" x="5" y="39">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="ecba13fe-0f98-4abb-9cfd-9343d8183999" wire="7" />
						<connection dir_in="1" dir_out="0" pos="1" uuid="fbfc60cd-646a-4c4f-b40c-4b944c2baed8" wire="6" />
						<connection dir_in="0" dir_out="1" pos="0" text="Q" uuid="f8c42ad9-d60c-4ae1-a7a0-29a6e49405ed" wire="24" />
					</connections>
				</element>
				<element content='"E_simple_mode"' subtype="load" type="operand" uuid="e2812ea0-34df-4cd5-a82d-812618caa44c" x="3" y="37">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="6b406f71-8d4a-4242-8e54-0429b5bb4af0" wire="7" />
					</connections>
				</element>
				<element subtype="eq-int" type="compare" uuid="7d77c21c-c195-41fd-a0b7-a3945fe4b96a" x="2" y="32">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="25bd3b64-2cbc-48a7-b0f7-8c1d4bea2189" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="2d8a40ba-41b1-4caf-b33f-95023cb21946" wire="8" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="d02316a4-cced-48d5-b796-920cc283ad59" wire="9" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="de589487-262d-46b9-a82a-499699054ec0" wire="16" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="ffff1862-c26c-4bf5-8684-6d5d3f9b0ca7" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="078095a9-47cc-4feb-8eef-c04b63b337f9" x="1" y="33">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="6a114d3b-1a18-4f68-9d1f-307dc89e6acc" wire="8" />
					</connections>
				</element>
				<element content="16" subtype="load" type="operand" uuid="06bf160f-e686-44a4-b999-827ca66d3126" x="1" y="34">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="faeea0d0-86a7-472a-b2c6-2b5f2451b328" wire="9" />
					</connections>
				</element>
				<element type="move" uuid="5e8140f1-88c8-4b19-9f7c-9111cbadb3f8" x="7" y="32">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="9d7c66f1-8384-4904-b02a-3b16d5c57dd3" wire="18" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="6b335f78-9306-47b1-bd62-fe6146d77c60" wire="10" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="6fb19131-81f9-4699-87e0-9048de00c32f" wire="11" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="4107d1da-05c5-4a9a-a9e4-f0b7c744df17" wire="-1" />
					</connections>
				</element>
				<element content="B#16#55" subtype="load" type="operand" uuid="62085205-52b5-4a39-9c09-4a958156d383" x="6" y="34">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="149e95d3-08e5-4162-ab65-70d18a55ace1" wire="10" />
					</connections>
				</element>
				<element content='"AB_raspi_GPIO"' subtype="assign" type="operand" uuid="62e81189-1bc0-40f3-b8ea-26bf115c0309" x="8" y="33">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="2e67f82a-ae8a-4acc-b79a-bcb865ebf3f2" wire="11" />
					</connections>
				</element>
				<element type="move" uuid="89d6e171-7a22-4b54-8dbc-b751bd4b7c4b" x="7" y="23">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="70e128b4-3e50-4343-a2c7-f014aa87c130" wire="20" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN" uuid="5a9e34b7-937d-4f8e-9351-e9e22065f49f" wire="12" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="23be8f92-bb6f-4c82-abe5-8d7b27fc8aa1" wire="13" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="deafab0a-6b09-4251-90b0-7a8429957f0e" wire="-1" />
					</connections>
				</element>
				<element content="B#16#AA" subtype="load" type="operand" uuid="4a823847-2a15-4271-8154-385b720dc9b4" x="6" y="25">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="dcbce199-ae8b-46e1-b3ea-1dce969c0332" wire="12" />
					</connections>
				</element>
				<element content='"AB_raspi_GPIO"' subtype="assign" type="operand" uuid="e0e9a9f5-e566-477b-99ee-8d5fc58f814a" x="8" y="24">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="04715f1f-bee5-462e-b886-d0f3be433b1b" wire="13" />
					</connections>
				</element>
				<element subtype="or" type="boolean" uuid="ed867334-6964-4564-adc9-853eac31900a" x="4" y="32">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="624d15fd-037f-4f7f-9731-487c98d2fccf" wire="17" />
						<connection dir_in="1" dir_out="0" pos="1" uuid="4333f1ba-a02b-40f8-95ba-4a07f7aa22c2" wire="16" />
						<connection dir_in="0" dir_out="1" pos="0" text="Q" uuid="53c35105-0c43-4ece-9dad-2c6af745d76f" wire="18" />
					</connections>
				</element>
				<element subtype="eq-int" type="compare" uuid="85955975-3428-4eb0-b227-ccf3d8a33600" x="2" y="28">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="ed5911d1-896e-4079-ba5c-9d27b16c2e02" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="58d49fe7-cd12-4d9e-b157-bcdde20e7189" wire="14" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="4ead19c6-cea8-4bc5-a1b0-37e89e9cf08d" wire="15" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="406e2fa4-b657-43cb-9705-0bd7baa27ecd" wire="17" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="ed2bf5a9-ce19-47f7-8d76-8151fa46e167" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="ccf29c34-8e96-4730-8cde-1d9cb697b14d" x="1" y="29">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="faa1e454-6b2a-4306-b407-f25c19dd74df" wire="14" />
					</connections>
				</element>
				<element content="18" subtype="load" type="operand" uuid="30388b6d-dc1d-413a-8a23-86b450eeef43" x="1" y="30">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="d152f5a7-c44f-46d0-ae41-4a85b694fdee" wire="15" />
					</connections>
				</element>
				<element subtype="or" type="boolean" uuid="eee87d65-8cc2-41a0-8b3b-d667c8d2a753" x="4" y="23">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="0e157776-cb9a-4934-928c-a596cc2a057b" wire="23" />
						<connection dir_in="1" dir_out="0" pos="1" uuid="2f8dda28-429a-4342-b071-696a16103c3b" wire="19" />
						<connection dir_in="0" dir_out="1" pos="0" text="Q" uuid="6f5bb152-8080-4388-9c75-6324832232a2" wire="20" />
					</connections>
				</element>
				<element subtype="eq-int" type="compare" uuid="e2191492-7bf3-498c-808c-4b0fb8b45ec9" x="2" y="19">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="2cfc82ae-499b-4d8c-aa89-aaf347ed7969" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="IN0" uuid="b45aa338-3dfa-4b88-9974-45cbabfb1657" wire="21" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN1" uuid="f1080008-a07d-4d33-8a37-da5b874106cc" wire="22" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="9bf72cc7-efd0-4d31-b93c-ae3eb4585b51" wire="23" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="f49baef3-627d-4300-81b3-647fe702f312" wire="-1" />
					</connections>
				</element>
				<element content="Z 0" subtype="load" type="operand" uuid="cc1cf043-0a45-43b0-a6c1-5e69dde64533" x="1" y="20">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="1c24dd3d-7041-4757-81ff-71811a1f7e68" wire="21" />
					</connections>
				</element>
				<element content="19" subtype="load" type="operand" uuid="5a8f0517-1f0c-4ecf-922a-487c546a7a7c" x="1" y="21">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="11bf87a2-b8bf-4a80-b65e-f37c10bc6908" wire="22" />
					</connections>
				</element>
				<element content="#lc_active" subtype="assign" type="operand" uuid="5d38c9a7-966d-4227-b101-cc2b09d05d9c" x="7" y="40">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="473372fb-2a79-4eba-9696-4ad3fe6eea7b" wire="24" />
					</connections>
				</element>
				<element content='&#9;U&#9;#lc_active&#13;&#10;&#9;SPBN&#9;ncha&#13;&#10;&#9;CALL "FC_lightchaser" (&#13;&#10;&#9;&#9;PERIOD&#9;:= S5T#100ms,&#13;&#10;&#9;&#9;T&#9;:= T 1,&#13;&#10;&#9;&#9;MINVAL&#9;:= DW#16#01000000,&#13;&#10;&#9;&#9;MAXVAL&#9;:= DW#16#80000000,&#13;&#10;&#9;&#9;REG&#9;:= #lc_data,&#13;&#10;&#9;&#9;STATE&#9;:= #lc_state,&#13;&#10;&#9;&#9;DIR&#9;:= #lc_dir,&#13;&#10;&#9;)&#13;&#10;ncha:&#9;NOP 0&#13;&#10;' type="awl" uuid="1a3b3c89-75fc-4685-a9af-d7c7d678ce5c" x="2" y="44" />
				<element content="24" subtype="load" type="operand" uuid="d8599d95-448b-4283-89ef-de72caf5786f" x="1" y="50">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="24a394d2-88b6-4b5f-b400-6f88592d4baf" wire="27" />
					</connections>
				</element>
				<element content="#lc_active" subtype="load" type="operand" uuid="1f5cae6f-8c94-42a5-bf14-c04f49fca58c" x="1" y="49">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="860fe2fc-0d81-44ae-a2ec-8319403ada4b" wire="28" />
					</connections>
				</element>
				<element subtype="srd" type="shift" uuid="8b3ed70a-554a-4e03-8e6e-0110eb4f9c39" x="2" y="49">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="d93f6d6f-0f0c-45c9-b5c4-f745195bb595" wire="28" />
						<connection dir_in="1" dir_out="0" pos="1" text="N" uuid="256a0b01-30a5-41db-8377-4eabf98a95cd" wire="27" />
						<connection dir_in="1" dir_out="0" pos="2" text="IN" uuid="e76edb00-40d3-4b58-86d9-b1b016061273" wire="25" />
						<connection dir_in="0" dir_out="1" pos="0" text="OUT0" uuid="fd321600-f0f5-4051-98ba-388778923c6f" wire="26" />
						<connection dir_in="0" dir_out="1" pos="1" text="ENO" uuid="f5b6eb39-7d30-4a9a-9076-a5a072898e07" wire="-1" />
					</connections>
				</element>
				<element subtype="and" type="boolean" uuid="b8c38391-aa17-4436-8f8d-68c68824dab1" x="3" y="6">
					<connections>
						<connection dir_in="1" dir_out="0" inverted="1" pos="0" uuid="7bda20b3-d564-4468-868f-7d1d15825b0d" wire="34" />
						<connection dir_in="0" dir_out="1" pos="0" text="Q" uuid="b49fd501-f574-4e84-958a-4a769599464a" wire="29" />
					</connections>
				</element>
				<element content="#timer_state" subtype="assign" type="operand" uuid="25b52182-5667-4359-9430-6bc914a47df4" x="4" y="6">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" uuid="5c2be997-ecf3-4b1f-ab50-4660499214a3" wire="29" />
					</connections>
				</element>
				<element content="#timer_state" subtype="load" type="operand" uuid="1c9b7fdc-1c45-4825-9591-140a331962d2" x="3" y="12">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="34bb6b24-85ec-423c-ba43-7237d62d83b6" wire="30" />
					</connections>
				</element>
				<element subtype="cu" type="counter" uuid="8abc1934-1bb4-4c8d-8187-b660e4db3ded" x="4" y="9">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="18c9d429-f481-4e3d-ba22-4ff4bd5390a7" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="CU" uuid="ab4c6981-36c8-490c-8dec-ae83dc436538" wire="30" />
						<connection dir_in="1" dir_out="0" pos="2" text="S" uuid="3e59f183-9ffb-4d00-a32b-ceb18bd9d305" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="3" text="PV" uuid="4b8441bc-f7ee-403a-b91d-369995499927" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="4" text="R" uuid="3e59bdb6-d109-436e-98d3-3a408c2140c7" wire="31" />
						<connection dir_in="0" dir_out="1" pos="0" text="CV" uuid="bc4ae6d3-5ae2-4da0-bd9b-bcd06a229130" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="1" text="CVB" uuid="944dde70-0dce-467d-9b3f-57e5e2432771" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="2" text="Q" uuid="2c8a3ec5-6e29-4841-8454-207e4c2309d7" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="3" text="ENO" uuid="cd8c4400-e022-466c-8865-e778d1285c3f" wire="-1" />
					</connections>
					<subelements>
						<element content="Z 0" subtype="embedded" type="operand" uuid="533e433b-f586-4af4-9532-ecc97b4b684d" x="0" y="0" />
					</subelements>
				</element>
				<element subtype="sv" type="timer" uuid="783a2f61-7ca2-4a52-b265-623dca8f5fe1" x="2" y="2">
					<connections>
						<connection dir_in="1" dir_out="0" pos="0" text="EN" uuid="945d6ac2-b1fb-435e-9efe-164d726b1cd0" wire="-1" />
						<connection dir_in="1" dir_out="0" pos="1" text="S" uuid="15ae73cc-59af-44a4-bd8a-be193168db4e" wire="32" />
						<connection dir_in="1" dir_out="0" pos="2" text="TV" uuid="4b5b6b31-15a7-4d05-bc8c-192e06c2134a" wire="33" />
						<connection dir_in="1" dir_out="0" pos="3" text="R" uuid="5ddf3173-dc20-47d7-aa63-a3f81315a8f5" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="0" text="BIN" uuid="c89ed55b-a2d4-422c-8864-a25cb45b9ede" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="1" text="BCD" uuid="46def617-7399-49c0-80b4-3d311ca094ae" wire="-1" />
						<connection dir_in="0" dir_out="1" pos="2" text="Q" uuid="a3a8f6e4-22dc-4e36-a9a2-d1089e9d8cf9" wire="34" />
						<connection dir_in="0" dir_out="1" pos="3" text="ENO" uuid="7905288e-b5a7-44cd-b531-38fb3fd8be14" wire="-1" />
					</connections>
					<subelements>
						<element content="T 0" subtype="embedded" type="operand" uuid="9b87005d-2c79-4071-9104-45a5fa73327c" x="0" y="0" />
					</subelements>
				</element>
				<element content="#timer_state" subtype="load" type="operand" uuid="2d6bf5af-416d-4f44-bd20-dead6a7cdaea" x="1" y="5">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="617a1282-06d8-4fa5-b1d1-4263ba3ad979" wire="32" />
					</connections>
				</element>
				<element content="S5T#500ms" subtype="load" type="operand" uuid="ee60f192-4575-42e4-b2fc-56d2681fe213" x="1" y="6">
					<connections>
						<connection dir_in="0" dir_out="1" pos="0" uuid="7114c7c5-c360-4de3-9c2c-c1a96f128f7a" wire="33" />
					</connections>
				</element>
				<element content="self-rearming timer" type="comment" uuid="7bb10f62-d562-46db-a30d-600b7eb19f8c" x="1" y="1" />
				<element content="state counter" type="comment" uuid="fa8fbeef-e4bc-459e-897b-ac39dd98c047" x="3" y="9" />
			</elements>
		</grid>
	</grids>
</FUP>
]]></source>
	</language_fup>

	<!-- Symbol table configuration -->
	<symbols>
		<!-- symbol table source code -->
		<source enabled="1"
		        name="Blocks"
		        type="3"><![CDATA[
126,OB_CYCLE                OB 1        OB 1
126,FB_main                 FB 1        FB 1
126,DB_main                 DB 1        FB 1
126,FC_lightchaser          FC 1        FC 1

]]></source>

		<!-- symbol table source code -->
		<source enabled="1"
		        name="Memory"
		        type="3"><![CDATA[
126,MB_clockmem             MB 16       BYTE
126,M_clockmem_0.1s         M 16.0      BOOL
126,M_clockmem_0.2s         M 16.1      BOOL
126,M_clockmem_0.4s         M 16.2      BOOL
126,M_clockmem_0.5s         M 16.3      BOOL
126,M_clockmem_0.8s         M 16.4      BOOL
126,M_clockmem_1.0s         M 16.5      BOOL
126,M_clockmem_1.6s         M 16.6      BOOL
126,M_clockmem_2.0s         M 16.7      BOOL

]]></source>

		<!-- symbol table source code -->
		<source enabled="1"
		        name="Inputs"
		        type="3"><![CDATA[
126,E_simple_mode           E 0.0       BOOL

]]></source>

		<!-- symbol table source code -->
		<source enabled="1"
		        name="Outputs"
		        type="3"><![CDATA[
126,AB_raspi_GPIO           AB 0        BYTE

]]></source>
	</symbols>

	<!-- Core server link configuration -->
	<core_link>
		<!-- Locally spawned core server -->
		<spawn_local enable="0"
		             interpreters="$DEFAULT"
		             port_range_begin="4183"
		             port_range_end="8278" />

		<!-- Remote server connection -->
		<connect host="pilc"
		         port="4151"
		         timeout_ms="10000" />

		<!-- Transport tunnel -->
		<tunnel local_port="-1"
		        type="1">
			<ssh executable="ssh"
			     port="22"
			     user="pi" />
		</tunnel>
	</core_link>

	<!-- Hardware modules configuration -->
	<hardware>
		<!-- Loaded hardware module -->
		<module name="rpigpio">
			<params>
				<param name="I0.0"
				       value="BCM6" />
				<param name="I0.1"
				       value="BCM13" />
				<param name="I0.2"
				       value="BCM19" />
				<param name="I0.3"
				       value="BCM26" />
				<param name="I0.4"
				       value="BCM21" />
				<param name="I0.5"
				       value="BCM20" />
				<param name="I0.6"
				       value="BCM16" />
				<param name="I0.7"
				       value="BCM12" />
				<param name="Q0.0"
				       value="BCM4" />
				<param name="Q0.1"
				       value="BCM17" />
				<param name="Q0.2"
				       value="BCM27" />
				<param name="Q0.3"
				       value="BCM22" />
				<param name="Q0.4"
				       value="BCM10" />
				<param name="Q0.5"
				       value="BCM9" />
				<param name="Q0.6"
				       value="BCM11" />
				<param name="Q0.7"
				       value="BCM5" />
				<param name="inputAddressBase"
				       value="0" />
				<param name="outputAddressBase"
				       value="0" />
			</params>
		</module>
	</hardware>

	<!-- Graphical user interface configuration -->
	<gui>
		<!-- AWL editor settings -->
		<editor autoindent="1"
		        paste_autoindent="1"
		        validation="1" />
	</gui>
</awlsim_project>
bues.ch cgit interface